-
Notifications
You must be signed in to change notification settings - Fork 91
/
text_offsets.asm
2993 lines (2992 loc) · 213 KB
/
text_offsets.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
const_def 1
TextOffsets::
dwb $0000, $00 ; 0x0000
textpointer HandText ; 0x0001
textpointer CheckText ; 0x0002
textpointer AttackText ; 0x0003
textpointer PKMNPowerText ; 0x0004
textpointer DoneText ; 0x0005
textpointer TypeText ; 0x0006
textpointer RetreatText ; 0x0007
textpointer WeaknessText ; 0x0008
textpointer ResistanceText ; 0x0009
textpointer PKMNPWRText ; 0x000a
textpointer UnusedText000b ; 0x000b
textpointer LengthText ; 0x000c
textpointer WeightText ; 0x000d
textpointer PokemonText ; 0x000e
textpointer MetresText ; 0x000f
textpointer LbsText ; 0x0010
textpointer PromostarRarityText ; 0x0011
textpointer CircleRarityText ; 0x0012
textpointer DiamondRarityText ; 0x0013
textpointer StarRarityText ; 0x0014
textpointer AllCardsOwnedText ; 0x0015
textpointer TotalNumberOfCardsText ; 0x0016
textpointer TypesOfCardsText ; 0x0017
textpointer GrassPokemonText ; 0x0018
textpointer FirePokemonText ; 0x0019
textpointer WaterPokemonText ; 0x001a
textpointer LightningPokemonText ; 0x001b
textpointer FightingPokemonText ; 0x001c
textpointer PsychicPokemonText ; 0x001d
textpointer ColorlessPokemonText ; 0x001e
textpointer TrainerCardText ; 0x001f
textpointer EnergyCardText ; 0x0020
textpointer DeckPrinterText ; 0x0021
textpointer UnusedText0022 ; 0x0022
textpointer NoPokemonOnTheBenchText ; 0x0023
textpointer UnableDueToSleepText ; 0x0024
textpointer UnableDueToParalysisText ; 0x0025
textpointer Received10DamageDueToPoisonText ; 0x0026
textpointer Received20DamageDueToPoisonText ; 0x0027
textpointer IsStillAsleepText ; 0x0028
textpointer IsCuredOfSleepText ; 0x0029
textpointer IsCuredOfParalysisText ; 0x002a
textpointer BetweenTurnsText ; 0x002b
textpointer UnableToUseItText ; 0x002c
textpointer NoEnergyCardsText ; 0x002d
textpointer IsThisOKText ; 0x002e
textpointer YesOrNoText ; 0x002f
textpointer DiscardName ; 0x0030
textpointer IncompleteText ; 0x0031
textpointer UnusedText0032 ; 0x0032
textpointer UsedText ; 0x0033
textpointer UnusedText0034 ; 0x0034
textpointer PokemonsAttackText ; 0x0035
textpointer ResistanceLessDamageText ; 0x0036
textpointer WeaknessMoreDamageText ; 0x0037
textpointer WeaknessMoreDamage2Text ; 0x0038
textpointer ResistanceNoDamageText ; 0x0039
textpointer AttackDamageText ; 0x003a
textpointer NoDamageText ; 0x003b
textpointer NoSelectableAttackText ; 0x003c
textpointer UnableToRetreatText ; 0x003d
textpointer MayOnlyAttachOneEnergyCardText ; 0x003e
textpointer UseThisPokemonPowerText ; 0x003f
textpointer PokemonPowerSelectNotRequiredText ; 0x0040
textpointer DiscardDescription ; 0x0041
textpointer WillDrawNPrizesText ; 0x0042
textpointer DrewNPrizesText ; 0x0043
textpointer DuelistPlacedACardText ; 0x0044
textpointer UnableToSelectText ; 0x0045
textpointer ColorListText ; 0x0046
textpointer GrassSymbolText ; 0x0047
textpointer FireSymbolText ; 0x0048
textpointer WaterSymbolText ; 0x0049
textpointer LightningSymbolText ; 0x004a
textpointer FightingSymbolText ; 0x004b
textpointer PsychicSymbolText ; 0x004c
textpointer BenchText ; 0x004d
textpointer KnockOutText ; 0x004e
textpointer DamageToSelfDueToConfusionText ; 0x004f
textpointer ChooseEnergyCardToDiscardText ; 0x0050
textpointer ChooseNextActivePokemonText ; 0x0051
textpointer PressStartWhenReadyText ; 0x0052
textpointer YouPlayFirstText ; 0x0053
textpointer YouPlaySecondText ; 0x0054
textpointer TransmissionErrorText ; 0x0055
textpointer ChooseTheCardYouWishToExamineText ; 0x0056
textpointer TransmittingDataText ; 0x0057
textpointer WaitingHandExamineText ; 0x0058
textpointer SelectingBenchPokemonHandExamineBackText ; 0x0059
textpointer RetreatedToTheBenchText ; 0x005a
textpointer RetreatWasUnsuccessfulText ; 0x005b
textpointer WillUseThePokemonPowerText ; 0x005c
textpointer FinishedTurnWithoutAttackingText ; 0x005d
textpointer DuelistTurnText ; 0x005e
textpointer AttachedEnergyToPokemonText ; 0x005f
textpointer PokemonEvolvedIntoPokemonText ; 0x0060
textpointer PlacedOnTheBenchText ; 0x0061
textpointer PlacedInTheArenaText ; 0x0062
textpointer ShufflesTheDeckText ; 0x0063
textpointer ThisIsJustPracticeDoNotShuffleText ; 0x0064
textpointer EachPlayerShuffleOpponentsDeckText ; 0x0065
textpointer EachPlayerDraw7CardsText ; 0x0066
textpointer Drew7CardsText ; 0x0067
textpointer DeckHasXCardsText ; 0x0068
textpointer ChooseBasicPkmnToPlaceInArenaText ; 0x0069
textpointer ThereAreNoBasicPokemonInHand ; 0x006a
textpointer NeitherPlayerHasBasicPkmnText ; 0x006b
textpointer ReturnCardsToDeckAndDrawAgainText ; 0x006c
textpointer ChooseUpTo5BasicPkmnToPlaceOnBenchText ; 0x006d
textpointer PleaseChooseAnActivePokemonText ; 0x006e
textpointer ChooseYourBenchPokemonText ; 0x006f
textpointer YouDrewText ; 0x0070
textpointer YouCannotSelectThisCardText ; 0x0071
textpointer PlacingThePrizesText ; 0x0072
textpointer PleasePlacePrizesText ; 0x0073
textpointer IfHeadsDuelistPlaysFirstText ; 0x0074
textpointer CoinTossToDecideWhoPlaysFirstText ; 0x0075
textpointer DecisionText ; 0x0076
textpointer DuelWasADrawText ; 0x0077
textpointer WonDuelText ; 0x0078
textpointer LostDuelText ; 0x0079
textpointer StartSuddenDeathMatchText ; 0x007a
textpointer PrizesLeftActivePokemonCardsInDeckText ; 0x007b
textpointer NoneText ; 0x007c
textpointer YesText ; 0x007d
textpointer CardsText ; 0x007e
textpointer TookAllThePrizesText ; 0x007f
textpointer ThereAreNoPokemonInPlayAreaText ; 0x0080
textpointer WasKnockedOutText ; 0x0081
textpointer HavePokemonPowerText ; 0x0082
textpointer UnableToUsePkmnPowerDueToToxicGasText ; 0x0083
textpointer PlayCheck1Text ; 0x0084
textpointer PlayCheck2Text ; 0x0085
textpointer SelectCheckText ; 0x0086
textpointer UnusedText0087 ; 0x0087
textpointer DuelistIsThinkingText ; 0x0088
textpointer ClearOpponentNameText ; 0x0089
textpointer SelectComputerOpponentText ; 0x008a
textpointer NumberOfPrizesText ; 0x008b
textpointer UnusedText008c ; 0x008c
textpointer UnusedText008d ; 0x008d
textpointer UnusedText008e ; 0x008e
textpointer UnusedText008f ; 0x008f
textpointer UnusedText0090 ; 0x0090
textpointer UnusedText0091 ; 0x0091
textpointer Player2Text ; 0x0092
textpointer UnusedText0093 ; 0x0093
textpointer UnusedText0094 ; 0x0094
textpointer UnusedText0095 ; 0x0095
textpointer UnusedText0096 ; 0x0096
textpointer UnusedText0097 ; 0x0097
textpointer UnusedText0098 ; 0x0098
textpointer UnusedText0099 ; 0x0099
textpointer UnusedText009a ; 0x009a
textpointer UnusedText009b ; 0x009b
textpointer UnusedText009c ; 0x009c
textpointer UnusedText009d ; 0x009d
textpointer UnusedText009e ; 0x009e
textpointer UnusedText009f ; 0x009f
textpointer UnusedText00a0 ; 0x00a0
textpointer UnusedText00a1 ; 0x00a1
textpointer ResetBackUpRamText ; 0x00a2
textpointer YourDataWasDestroyedSomehowText ; 0x00a3
textpointer NoCardsInHandText ; 0x00a4
textpointer TheDiscardPileHasNoCardsText ; 0x00a5
textpointer PlayerDiscardPileText ; 0x00a6
textpointer DuelistHandText ; 0x00a7
textpointer DuelistPlayAreaText ; 0x00a8
textpointer DuelistDeckText ; 0x00a9
textpointer PleaseSelectHandText ; 0x00aa
textpointer PleaseSelectCardText ; 0x00ab
textpointer NoPokemonWithDamageCountersText ; 0x00ac
textpointer NoDamageCountersText ; 0x00ad
textpointer NoEnergyAttachedToOpponentsActiveText ; 0x00ae
textpointer ThereAreNoEnergyCardsInDiscardPileText ; 0x00af
textpointer ThereAreNoBasicEnergyCardsInDiscardPileText ; 0x00b0
textpointer NoCardsLeftInTheDeckText ; 0x00b1
textpointer NoSpaceOnTheBenchText ; 0x00b2
textpointer NoPokemonCapableOfEvolvingText ; 0x00b3
textpointer CantEvolvePokemonInSameTurnItsPlacedText ; 0x00b4
textpointer NotAffectedByPoisonSleepParalysisOrConfusionText ; 0x00b5
textpointer NotEnoughCardsInHandText ; 0x00b6
textpointer EffectNoPokemonOnTheBenchText ; 0x00b7
textpointer ThereAreNoPokemonInDiscardPileText ; 0x00b8
textpointer ConditionsForEvolvingToStage2NotFulfilledText ; 0x00b9
textpointer ThereAreNoCardsInHandThatYouCanChangeText ; 0x00ba
textpointer ThereAreNoCardsInTheDiscardPileText ; 0x00bb
textpointer ThereAreNoStage1PokemonText ; 0x00bc
textpointer NoEnergyCardsAttachedToPokemonInYourPlayAreaText ; 0x00bd
textpointer NoEnergyCardsAttachedToPokemonInOppPlayAreaText ; 0x00be
textpointer EnergyCardsRequiredToRetreatText ; 0x00bf
textpointer NotEnoughEnergyCardsText ; 0x00c0
textpointer NotEnoughFireEnergyText ; 0x00c1
textpointer NotEnoughPsychicEnergyText ; 0x00c2
textpointer NotEnoughWaterEnergyText ; 0x00c3
textpointer ThereAreNoTrainerCardsInDiscardPileText ; 0x00c4
textpointer NoAttackMayBeChoosenText ; 0x00c5
textpointer YouDidNotReceiveAnAttackToMirrorMoveText ; 0x00c6
textpointer ThisAttackCannotBeUsedTwiceText ; 0x00c7
textpointer NoWeaknessText ; 0x00c8
textpointer NoResistanceText ; 0x00c9
textpointer OnlyOncePerTurnText ; 0x00ca
textpointer CannotUseDueToStatusText ; 0x00cb
textpointer CannotBeUsedInTurnWhichWasPlayedText ; 0x00cc
textpointer ThereIsNoEnergyCardAttachedText ; 0x00cd
textpointer NoGrassEnergyText ; 0x00ce
textpointer CannotUseSinceTheresOnly1PkmnText ; 0x00cf
textpointer CannotUseBecauseItWillBeKnockedOutText ; 0x00d0
textpointer CanOnlyBeUsedOnTheBenchText ; 0x00d1
textpointer ThereAreNoPokemonOnBenchText ; 0x00d2
textpointer OpponentIsNotAsleepText ; 0x00d3
textpointer UnableDueToToxicGasText ; 0x00d4
textpointer UnusedText00d5 ; 0x00d5
textpointer BackUpIsBrokenText ; 0x00d6
textpointer PrinterIsNotConnectedText ; 0x00d7
textpointer BatteriesHaveLostTheirChargeText ; 0x00d8
textpointer PrinterPaperIsJammedText ; 0x00d9
textpointer CheckCableOrPrinterSwitchText ; 0x00da
textpointer PrinterPacketErrorText ; 0x00db
textpointer PrintingWasInterruptedText ; 0x00dc
textpointer CardPopCannotBePlayedWithTheGameBoyText ; 0x00dd
textpointer SandAttackCheckText ; 0x00de
textpointer SmokescreenCheckText ; 0x00df
textpointer ParalysisCheckText ; 0x00e0
textpointer SleepCheckText ; 0x00e1
textpointer PoisonCheckText ; 0x00e2
textpointer ConfusionCheckText ; 0x00e3
textpointer VenomPowderCheckText ; 0x00e4
textpointer IfTailsYourPokemonBecomesConfusedText ; 0x00e5
textpointer DamageCheckIfTailsNoDamageText ; 0x00e6
textpointer IfHeadsDraw1CardFromDeckText ; 0x00e7
textpointer FlipUntilFailAppears10DamageForEachHeadsText ; 0x00e8
textpointer IfHeadPlus10IfTails10ToYourselfText ; 0x00e9
textpointer DamageToOppBenchIfHeadsDamageToYoursIfTailsText ; 0x00ea
textpointer IfHeadsChangeOpponentsActivePokemonText ; 0x00eb
textpointer IfHeadsHealIsSuccessfulText ; 0x00ec
textpointer IfTailsDamageToYourselfTooText ; 0x00ed
textpointer SuccessCheckIfHeadsAttackIsSuccessfulText ; 0x00ee
textpointer TrainerCardSuccessCheckText ; 0x00ef
textpointer CardCheckIfHeads8CardsIfTails1CardText ; 0x00f0
textpointer IfHeadsNoDamageNextTurnText ; 0x00f1
textpointer UnusedText00f2 ; 0x00f2
textpointer DamageCheckIfHeadsPlusDamageText ; 0x00f3
textpointer DamageCheckIfHeadsXDamageText ; 0x00f4
textpointer AcidCheckText ; 0x00f5
textpointer TransparencyCheckText ; 0x00f6
textpointer ConfusionCheckDamageText ; 0x00f7
textpointer ConfusionCheckRetreatText ; 0x00f8
textpointer PokemonsSleepCheckText ; 0x00f9
textpointer PoisonedIfHeadsConfusedIfTailsText ; 0x00fa
textpointer IfHeadsDoNotReceiveDamageOrEffectText ; 0x00fb
textpointer IfHeadsOpponentCannotAttackText ; 0x00fc
textpointer AttackUnsuccessfulText ; 0x00fd
textpointer UnableToRetreatDueToAcidText ; 0x00fe
textpointer UnableToUseTrainerDueToHeadacheText ; 0x00ff
textpointer UnableToAttackDueToTailWagText ; 0x0100
textpointer UnableToAttackDueToLeerText ; 0x0101
textpointer UnableToAttackDueToBoneAttackText ; 0x0102
textpointer UnableToUseAttackDueToAmnesiaText ; 0x0103
textpointer KnockedOutDueToDestinyBondText ; 0x0104
textpointer ReceivesDamageDueToStrikesBackText ; 0x0105
textpointer UnableToEvolveDueToPrehistoricPowerText ; 0x0106
textpointer NoDamageOrEffectDueToFlyText ; 0x0107
textpointer NoDamageOrEffectDueToBarrierText ; 0x0108
textpointer NoDamageOrEffectDueToAgilityText ; 0x0109
textpointer UnableToUseAttackDueToNShieldText ; 0x010a
textpointer NoDamageOrEffectDueToNShieldText ; 0x010b
textpointer NoDamageOrEffectDueToTransparencyText ; 0x010c
textpointer MetamorphsToText ; 0x010d
textpointer SelectPkmnOnBenchToSwitchWithActiveText ; 0x010e
textpointer SelectPokemonToPlaceInTheArenaText ; 0x010f
textpointer DuelistIsSelectingPokemonToPlaceInArenaText ; 0x0110
textpointer ChooseWeaknessYouWishToChangeText ; 0x0111
textpointer ChooseResistanceYouWishToChangeText ; 0x0112
textpointer ChoosePokemonWishToColorChangeText ; 0x0113
textpointer ChangedTheWeaknessOfPokemonToColorText ; 0x0114
textpointer ChangedTheResistanceOfPokemonToColorText ; 0x0115
textpointer ChangedTheColorOfText ; 0x0116
textpointer Draw1CardFromTheDeckText ; 0x0117
textpointer DrawCardsFromTheDeckText ; 0x0118
textpointer CannotDrawCardBecauseNoCardsInDeckText ; 0x0119
textpointer ChoosePkmnInTheBenchToGiveDamageText ; 0x011a
textpointer ChooseUpTo3PkmnOnBenchToGiveDamageText ; 0x011b
textpointer Choose1BasicEnergyCardFromDeckText ; 0x011c
textpointer ChoosePokemonToAttachEnergyCardText ; 0x011d
textpointer UnusedText011e ; 0x011e
textpointer ChooseAndDiscard2FireEnergyCardsText ; 0x011f
textpointer DiscardOppDeckAsManyFireEnergyCardsText ; 0x0120
textpointer ChooseAndDiscard2EnergyCardsText ; 0x0121
textpointer ChooseAKrabbyFromDeckText ; 0x0122
textpointer ChooseDiscardEnergyCardFromOpponentText ; 0x0123
textpointer ChooseAttackOpponentWillNotBeAbleToUseText ; 0x0124
textpointer ChooseBasicFightingPokemonFromDeckText ; 0x0125
textpointer ChooseAnOddishFromDeckText ; 0x0126
textpointer ChooseAnOddishText ; 0x0127
textpointer ChooseAKrabbyText ; 0x0128
textpointer ChooseBasicEnergyCardText ; 0x0129
textpointer ChooseNidoranFromDeckText ; 0x012a
textpointer ChooseNidoranText ; 0x012b
textpointer ChooseBasicFightingPokemonText ; 0x012c
textpointer ProcedureForEnergyTransferText ; 0x012d
textpointer ChooseABellsproutFromDeckText ; 0x012e
textpointer ChooseABellsproutText ; 0x012f
textpointer ChoosePkmnToRemoveDamageCounterText ; 0x0130
textpointer ProcedureForCurseText ; 0x0131
textpointer Choose2EnergyCardsFromDiscardPileToAttachText ; 0x0132
textpointer Choose2EnergyCardsFromDiscardPileForHandText ; 0x0133
textpointer ChooseAnEnergyCardText ; 0x0134
textpointer ProcedureForProphecyText ; 0x0135
textpointer ChooseTheOrderOfTheCardsText ; 0x0136
textpointer ProcedureForDamageSwapText ; 0x0137
textpointer ProcedureForDevolutionBeamText ; 0x0138
textpointer ProcedureForStrangeBehaviorText ; 0x0139
textpointer ChooseOppAttackToBeUsedWithMetronomeText ; 0x013a
textpointer ThereIsNoInTheDeckText ; 0x013b
textpointer WouldYouLikeToCheckTheDeckText ; 0x013c
textpointer PleaseSelectTheDeckText ; 0x013d
textpointer PleaseSelectThePlayAreaText ; 0x013e
textpointer NidoranMNidoranFText ; 0x013f
textpointer OddishText ; 0x0140
textpointer BellsproutText ; 0x0141
textpointer KrabbyText ; 0x0142
textpointer FightingPokemonDeckText ; 0x0143
textpointer BasicEnergyText ; 0x0144
textpointer PeekWasUsedToLookInYourHandText ; 0x0145
textpointer CardPeekWasUsedOnText ; 0x0146
textpointer PokemonAndAllAttachedCardsReturnedToHandText ; 0x0147
textpointer WasChosenForTheEffectOfAmnesiaText ; 0x0148
textpointer BasicPokemonWasPlacedOnEachBenchText ; 0x0149
textpointer WasUnsuccessfulText ; 0x014a
textpointer ThereWasNoEffectFromTxRam2Text ; 0x014b
textpointer TheEnergyCardFromPlayAreaWasMovedText ; 0x014c
textpointer DrewFireEnergyFromTheHandText ; 0x014d
textpointer ThePkmnCardsInHandAndDeckWereShuffledText ; 0x014e
textpointer UnusedText014f ; 0x014f
textpointer ChoosePokemonToRemoveDamageCounterFromText ; 0x0150
textpointer ChooseCardToDiscardFromHandText ; 0x0151
textpointer ChoosePokemonToRemoveEnergyFromText ; 0x0152
textpointer Choose2BasicEnergyCardsFromDiscardPileText ; 0x0153
textpointer UnusedText0154 ; 0x0154
textpointer Choose2CardsFromHandToDiscardText ; 0x0155
textpointer Choose2HandCardsFromHandToReturnToDeckText ; 0x0156
textpointer ChooseCardToPlaceInHandText ; 0x0157
textpointer ChoosePokemonToAttachDefenderToText ; 0x0158
textpointer UnusedText0159 ; 0x0159
textpointer ChoosePokemonToReturnToTheDeckText ; 0x015a
textpointer ChoosePokemonToPlaceInPlayText ; 0x015b
textpointer ChooseBasicPokemonToEvolveText ; 0x015c
textpointer ChoosePokemonToScoopUpText ; 0x015d
textpointer ChooseCardFromYourHandToSwitchText ; 0x015e
textpointer ChooseCardToSwitchText ; 0x015f
textpointer ChooseBasicOrEvolutionPokemonCardFromDeckText ; 0x0160
textpointer ChoosePokemonCardText ; 0x0161
textpointer RearrangeThe5CardsAtTopOfDeckText ; 0x0162
textpointer PleaseCheckTheOpponentsHandText ; 0x0163
textpointer EvolutionCardText ; 0x0164
textpointer CardWasChosenText ; 0x0165
textpointer ChooseBasicPokemonToPlaceOnBenchText ; 0x0166
textpointer ChooseEvolutionCardAndPressAButtonToDevolveText ; 0x0167
textpointer ChoosePokemonInYourAreaThenPokemonInYourOppText ; 0x0168
textpointer ChooseUpTo4FromDiscardPileText ; 0x0169
textpointer ChooseAPokemonToSwitchWithActivePokemonText ; 0x016a
textpointer PokemonAndAllAttachedCardsWereReturnedToDeckText ; 0x016b
textpointer PokemonWasReturnedFromArenaToHandText ; 0x016c
textpointer PokemonWasReturnedFromBenchToHandText ; 0x016d
textpointer PokemonWasReturnedToDeckText ; 0x016e
textpointer WasPlacedInTheHandText ; 0x016f
textpointer TheCardYouReceivedText ; 0x0170
textpointer YouReceivedTheseCardsText ; 0x0171
textpointer ChooseTheCardToPutBackText ; 0x0172
textpointer ChooseTheCardToDiscardText ; 0x0173
textpointer DiscardedCardsFromDeckText ; 0x0174
textpointer UnusedText0175 ; 0x0175
textpointer NoneCameText ; 0x0176
textpointer CameToTheBenchText ; 0x0177
textpointer DuelistHasNoCardsInHandText ; 0x0178
textpointer PokemonHealedDamageText ; 0x0179
textpointer PokemonDevolvedToText ; 0x017a
textpointer ThereWasNoFireEnergyText ; 0x017b
textpointer YouCanSelectMoreCardsQuitText ; 0x017c
textpointer ThereWasNoEffectText ; 0x017d
textpointer ThereWasNoEffectFromToxicText ; 0x017e
textpointer ThereWasNoEffectFromPoisonText ; 0x017f
textpointer ThereWasNoEffectFromSleepText ; 0x0180
textpointer ThereWasNoEffectFromParalysisText ; 0x0181
textpointer ThereWasNoEffectFromConfusionText ; 0x0182
textpointer ThereWasNoEffectFromPoisonConfusionText ; 0x0183
textpointer ExchangedCardsInDuelistsHandText ; 0x0184
textpointer UnusedText0185 ; 0x0185
textpointer PrizesCardsText ; 0x0186
textpointer ChooseTheNumberOfPrizesText ; 0x0187
textpointer PleaseWaitDecidingNumberOfPrizesText ; 0x0188
textpointer BeginAPrizeDuelWithText ; 0x0189
textpointer AreYouBothReadyToCardPopText ; 0x018a
textpointer ThePopWasntSuccessfulText ; 0x018b
textpointer CannotCardPopWithFriendPreviouslyPoppedWithText ; 0x018c
textpointer PositionGameBoyColorsAndPressAButtonText ; 0x018d
textpointer ReceivedThroughCardPopText ; 0x018e
textpointer ReceivedCardText ; 0x018f
textpointer ReceivedPromotionalCardText ; 0x0190
textpointer ReceivedLegendaryCardText ; 0x0191
textpointer ReceivedPromotionalFlyingPikachuText ; 0x0192
textpointer ReceivedPromotionalSurfingPikachuText ; 0x0193
textpointer UnusedText0194 ; 0x0194
textpointer NowPrintingPleaseWaitText ; 0x0195
textpointer BoosterPackText ; 0x0196
textpointer WouldYouLikeToTryAgainText ; 0x0197
textpointer UnusedText0198 ; 0x0198
textpointer UnusedText0199 ; 0x0199
textpointer SendingACardText ; 0x019a
textpointer ReceivingACardText ; 0x019b
textpointer SendingADeckConfigurationText ; 0x019c
textpointer ReceivingDeckConfigurationText ; 0x019d
textpointer CardTransferWasntSuccessful1Text ; 0x019e
textpointer CardTransferWasntSuccessful2Text ; 0x019f
textpointer DeckConfigurationTransferWasntSuccessful1Text ; 0x01a0
textpointer DeckConfigurationTransferWasntSuccessful2Text ; 0x01a1
textpointer NowPrintingText ; 0x01a2
textpointer DrMasonText ; 0x01a3
textpointer DrawSevenCardsPracticeDuelText ; 0x01a4
textpointer ChooseGoldeenPracticeDuelText ; 0x01a5
textpointer PutPokemonOnBenchPracticeDuelText ; 0x01a6
textpointer ChooseStaryuPracticeDuelText ; 0x01a7
textpointer PressBToFinishPracticeDuelText ; 0x01a8
textpointer Turn1Instr1PracticeDuelText ; 0x01a9
textpointer Turn1Instr2PracticeDuelText ; 0x01aa
textpointer Turn1Instr3PracticeDuelText ; 0x01ab
textpointer Turn2Instr1PracticeDuelText ; 0x01ac
textpointer Turn2Instr2PracticeDuelText ; 0x01ad
textpointer Turn2Instr3PracticeDuelText ; 0x01ae
textpointer Turn3Instr1PracticeDuelText ; 0x01af
textpointer Turn3Instr2PracticeDuelText ; 0x01b0
textpointer Turn3Instr3PracticeDuelText ; 0x01b1
textpointer Turn4Instr1PracticeDuelText ; 0x01b2
textpointer Turn4Instr2PracticeDuelText ; 0x01b3
textpointer Turn4Instr3PracticeDuelText ; 0x01b4
textpointer Turn5Instr1PracticeDuelText ; 0x01b5
textpointer Turn5Instr2PracticeDuelText ; 0x01b6
textpointer Turn6Instr1PracticeDuelText ; 0x01b7
textpointer Turn6Instr2PracticeDuelText ; 0x01b8
textpointer Turn6Instr3PracticeDuelText ; 0x01b9
textpointer Turn7Instr1PracticeDuelText ; 0x01ba
textpointer Turn7Instr2PracticeDuelText ; 0x01bb
textpointer Turn8Instr1PracticeDuelText ; 0x01bc
textpointer Turn8Instr2PracticeDuelText ; 0x01bd
textpointer SamTurn4Instr1PracticeDuelText ; 0x01be
textpointer SamTurn4Instr2PracticeDuelText ; 0x01bf
textpointer Turn1DrMason1PracticeDuelText ; 0x01c0
textpointer Turn1DrMason2PracticeDuelText ; 0x01c1
textpointer Turn1DrMason3PracticeDuelText ; 0x01c2
textpointer Turn2DrMason1PracticeDuelText ; 0x01c3
textpointer Turn2DrMason2PracticeDuelText ; 0x01c4
textpointer Turn2DrMason3PracticeDuelText ; 0x01c5
textpointer Turn3DrMason1PracticeDuelText ; 0x01c6
textpointer Turn3DrMason2PracticeDuelText ; 0x01c7
textpointer Turn3DrMason3PracticeDuelText ; 0x01c8
textpointer Turn4DrMason1PracticeDuelText ; 0x01c9
textpointer Turn4DrMason2PracticeDuelText ; 0x01ca
textpointer Turn4DrMason3PracticeDuelText ; 0x01cb
textpointer Turn5DrMason1PracticeDuelText ; 0x01cc
textpointer Turn5DrMason2PracticeDuelText ; 0x01cd
textpointer Turn6DrMason1PracticeDuelText ; 0x01ce
textpointer Turn6DrMason2PracticeDuelText ; 0x01cf
textpointer Turn6DrMason3PracticeDuelText ; 0x01d0
textpointer Turn7DrMason1PracticeDuelText ; 0x01d1
textpointer Turn7DrMason2PracticeDuelText ; 0x01d2
textpointer Turn8DrMason1PracticeDuelText ; 0x01d3
textpointer Turn8DrMason2PracticeDuelText ; 0x01d4
textpointer SamTurn4DrMason1PracticeDuelText ; 0x01d5
textpointer SamTurn4DrMason2PracticeDuelText ; 0x01d6
textpointer SelectStaryuPracticeDuelText ; 0x01d7
textpointer LetsPlayTheGamePracticeDuelText ; 0x01d8
textpointer NeedPracticeAgainPracticeDuelText ; 0x01d9
textpointer FollowMyGuidancePracticeDuelText ; 0x01da
textpointer PlayersTurnPracticeDuelText ; 0x01db
textpointer ReplaceDueToKnockoutPracticeDuelText ; 0x01dc
textpointer UnusedText01dd ; 0x01dd
textpointer PracticePlayerDeckName ; 0x01de
textpointer SamsPracticeDeckName ; 0x01df
textpointer CharmanderAndFriendsDeckName ; 0x01e0
textpointer CharmanderExtraDeckName ; 0x01e1
textpointer SquirtleAndFriendsDeckName ; 0x01e2
textpointer SquirtleExtraDeckName ; 0x01e3
textpointer BulbasaurAndFriendsDeckName ; 0x01e4
textpointer BulbasaurExtraDeckName ; 0x01e5
textpointer FirstStrikeDeckName ; 0x01e6
textpointer RockCrusherDeckName ; 0x01e7
textpointer GoGoRainDanceDeckName ; 0x01e8
textpointer ZappingSelfdestructDeckName ; 0x01e9
textpointer FlowerPowerDeckName ; 0x01ea
textpointer StrangePsyshockDeckName ; 0x01eb
textpointer WondersofScienceDeckName ; 0x01ec
textpointer FireChargeDeckName ; 0x01ed
textpointer LegendaryMoltresDeckName ; 0x01ee
textpointer LegendaryZapdosDeckName ; 0x01ef
textpointer LegendaryArticunoDeckName ; 0x01f0
textpointer LegendaryDragoniteDeckName ; 0x01f1
textpointer ImRonaldDeckName ; 0x01f2
textpointer PowerfulRonaldDeckName ; 0x01f3
textpointer InvincibleRonaldDeckName ; 0x01f4
textpointer LegendaryRonaldDeckName ; 0x01f5
textpointer WaterfrontPokemonDeckName ; 0x01f6
textpointer LonelyFriendsDeckName ; 0x01f7
textpointer SoundoftheWavesDeckName ; 0x01f8
textpointer AngerDeckName ; 0x01f9
textpointer FlamethrowerDeckName ; 0x01fa
textpointer ReshuffleDeckName ; 0x01fb
textpointer ExcavationDeckName ; 0x01fc
textpointer BlisteringPokemonDeckName ; 0x01fd
textpointer HardPokemonDeckName ; 0x01fe
textpointer EtceteraDeckName ; 0x01ff
textpointer FlowerGardenDeckName ; 0x0200
textpointer KaleidoscopeDeckName ; 0x0201
textpointer MusclesforBrainsDeckName ; 0x0202
textpointer HeatedBattleDeckName ; 0x0203
textpointer LovetoBattleDeckName ; 0x0204
textpointer PikachuDeckName ; 0x0205
textpointer BoomBoomSelfdestructDeckName ; 0x0206
textpointer PowerGeneratorDeckName ; 0x0207
textpointer GhostDeckName ; 0x0208
textpointer NapTimeDeckName ; 0x0209
textpointer StrangePowerDeckName ; 0x020a
textpointer FlyinPokemonDeckName ; 0x020b
textpointer LovelyNidoranDeckName ; 0x020c
textpointer PoisonDeckName ; 0x020d
textpointer ImakuniDeckName ; 0x020e
textpointer LightningAndFireDeckName ; 0x020f
textpointer WaterAndFightingDeckName ; 0x0210
textpointer GrassAndPsychicDeckName ; 0x0211
textpointer RetreatCostText ; 0x0212
textpointer UnusedText0213 ; 0x0213
textpointer UnusedText0214 ; 0x0214
textpointer FeetText ; 0x0215
textpointer InchesText ; 0x0216
textpointer YourDiscardPileText ; 0x0217
textpointer OpponentsDiscardPileText ; 0x0218
textpointer DeckText ; 0x0219
textpointer UnusedText021a ; 0x021a
textpointer UnusedText021b ; 0x021b
textpointer UnusedText021c ; 0x021c
textpointer EndText ; 0x021d
textpointer WhatIsYourNameText ; 0x021e
textpointer UnusedText021f ; 0x021f
textpointer UnusedText0220 ; 0x0220
textpointer PlayerNameKeyboardText ; 0x0221
textpointer DeckNameKeyboardText ; 0x0222
textpointer NewDeckText ; 0x0223
textpointer PleaseSelectDeckText ; 0x0224
textpointer ModifyDeckText ; 0x0225
textpointer ChangeNameText ; 0x0226
textpointer SelectDeckText ; 0x0227
textpointer CancelText ; 0x0228
textpointer UnusedText0229 ; 0x0229
textpointer ChosenAsDuelingDeckText ; 0x022a
textpointer Deck1Text ; 0x022b
textpointer Deck2Text ; 0x022c
textpointer Deck3Text ; 0x022d
textpointer Deck4Text ; 0x022e
textpointer ThereIsNoDeckHereText ; 0x022f
textpointer ConfirmText ; 0x0230
textpointer DismantleText ; 0x0231
textpointer ModifyText ; 0x0232
textpointer SaveText ; 0x0233
textpointer NameText ; 0x0234
textpointer ThereIsOnly1DeckSoCannotBeDismantledText ; 0x0235
textpointer ThereAreNoBasicPokemonInThisDeckText ; 0x0236
textpointer YouMustIncludeABasicPokemonInTheDeckText ; 0x0237
textpointer ThisIsntA60CardDeckText ; 0x0238
textpointer TheDeckMustInclude60CardsText ; 0x0239
textpointer ReturnToOriginalConfigurationText ; 0x023a
textpointer SaveThisDeckText ; 0x023b
textpointer QuitModifyingTheDeckText ; 0x023c
textpointer DismantleThisDeckText ; 0x023d
textpointer NoCardsChosenText ; 0x023e
textpointer YourPokemonText ; 0x023f
textpointer YourDiscardPileText2 ; 0x0240
textpointer YourHandText ; 0x0241
textpointer UnusedText0242 ; 0x0242
textpointer OpponentsPokemonText ; 0x0243
textpointer OpponentsDiscardPileText2 ; 0x0244
textpointer OpponentsHandText ; 0x0245
textpointer UnusedText0246 ; 0x0246
textpointer DuelistsPlayAreaText ; 0x0247
textpointer YourPlayAreaText ; 0x0248
textpointer OppPlayAreaText ; 0x0249
textpointer InPlayAreaText ; 0x024a
textpointer GlossaryText ; 0x024b
textpointer WhichCardWouldYouLikeToSeeText ; 0x024c
textpointer PleaseChooseAPrizeText ; 0x024d
textpointer HandText_2 ; 0x024e
textpointer DuelistHandText_2 ; 0x024f
textpointer DuelistDiscardPileText ; 0x0250
textpointer EmptyLineText ; 0x0251
textpointer BoosterPackTitleText ; 0x0252
textpointer Item1ColosseumText ; 0x0253
textpointer Item2EvolutionText ; 0x0254
textpointer Item3MysteryText ; 0x0255
textpointer Item4LaboratoryText ; 0x0256
textpointer Item5PromotionalCardText ; 0x0257
textpointer ViewWhichCardFileText ; 0x0258
textpointer EmptyPromotionalCardText ; 0x0259
textpointer SCardsText ; 0x025a
textpointer EmptyDeckNameText ; 0x025b
textpointer DeckSaveMachineText ; 0x025c
textpointer SaveADeckText ; 0x025d
textpointer DeleteADeckText ; 0x025e
textpointer BuildADeckText ; 0x025f
textpointer ChooseADeckToSaveText ; 0x0260
textpointer UnusedText0261 ; 0x0261
textpointer UnusedText0262 ; 0x0262
textpointer SavedTheConfigurationForText ; 0x0263
textpointer NoDeckIsSavedText ; 0x0264
textpointer UnusedText0265 ; 0x0265
textpointer DoYouReallyWishToDeleteText ; 0x0266
textpointer DeletedTheConfigurationForText ; 0x0267
textpointer YouMayOnlyCarry4DecksText ; 0x0268
textpointer ChooseADeckToDismantleText ; 0x0269
textpointer DismantledDeckText ; 0x026a
textpointer UnusedText026b ; 0x026b
textpointer ThisDeckCanOnlyBeBuiltIfYouDismantleText ; 0x026c
textpointer YouDoNotOwnAllCardsNeededToBuildThisDeckText ; 0x026d
textpointer BuiltDeckText ; 0x026e
textpointer TheseCardsAreNeededToBuildThisDeckText ; 0x026f
textpointer DismantleTheseDecksText ; 0x0270
textpointer DismantledTheDeckText ; 0x0271
textpointer OKIfFileDeletedText ; 0x0272
textpointer ReadTheInstructionsText ; 0x0273
textpointer PrintThisCardYesNoText ; 0x0274
textpointer PleaseChooseDeckConfigurationToPrintText ; 0x0275
textpointer PrintThisDeckText ; 0x0276
textpointer PrintTheCardListText ; 0x0277
textpointer PrintMenuItemsText ; 0x0278
textpointer WhatWouldYouLikeToPrintText ; 0x0279
textpointer PleaseSetTheContrastText ; 0x027a
textpointer PleaseMakeSureToTurnGameBoyPrinterOffText ; 0x027b
textpointer ProceduresForSendingCardsText ; 0x027c
textpointer CardSendingProceduresText ; 0x027d
textpointer PleaseReadTheProceduresForSendingCardsText ; 0x027e
textpointer SendText ; 0x027f
textpointer CardReceivedText ; 0x0280
textpointer CardToSendText ; 0x0281
textpointer SendTheseCardsText ; 0x0282
textpointer ReceivedTheseCardsFromText ; 0x0283
textpointer PleaseChooseADeckConfigurationToSendText ; 0x0284
textpointer PleaseChooseASaveSlotText ; 0x0285
textpointer UnusedText0286 ; 0x0286
textpointer ReceivedADeckConfigurationFromText ; 0x0287
textpointer FightingMachineText ; 0x0288
textpointer RockMachineText ; 0x0289
textpointer WaterMachineText ; 0x028a
textpointer LightningMachineText ; 0x028b
textpointer GrassMachineText ; 0x028c
textpointer PsychicMachineText ; 0x028d
textpointer ScienceMachineText ; 0x028e
textpointer FireMachineText ; 0x028f
textpointer AutoMachineText ; 0x0290
textpointer LegendaryMachineText ; 0x0291
textpointer AllFightingPokemonText ; 0x0292
textpointer BenchAttackText ; 0x0293
textpointer BattleContestText ; 0x0294
textpointer HeatedBattleText ; 0x0295
textpointer FirstStrikeText ; 0x0296
textpointer SqueakingMouseText ; 0x0297
textpointer GreatQuakeText ; 0x0298
textpointer BoneAttackText ; 0x0299
textpointer ExcavationText ; 0x029a
textpointer RockCrusherText ; 0x029b
textpointer BlueWaterText ; 0x029c
textpointer OnTheBeachText ; 0x029d
textpointer ParalyzeText ; 0x029e
textpointer EnergyRemovalText ; 0x029f
textpointer RainDancerText ; 0x02a0
textpointer CutePokemonText ; 0x02a1
textpointer PokemonFluteText ; 0x02a2
textpointer YellowFlashText ; 0x02a3
textpointer ElectricShockText ; 0x02a4
textpointer ZappingSelfdestructText ; 0x02a5
textpointer InsectCollectionText ; 0x02a6
textpointer JungleText ; 0x02a7
textpointer FlowerGardenText ; 0x02a8
textpointer KaleidoscopeText ; 0x02a9
textpointer FlowerPowerText ; 0x02aa
textpointer PsychicPowerText ; 0x02ab
textpointer DreamEaterHaunterText ; 0x02ac
textpointer ScavengingSlowbroText ; 0x02ad
textpointer StrangePowerText ; 0x02ae
textpointer StrangePsyshockText ; 0x02af
textpointer LovelyNidoranText ; 0x02b0
textpointer ScienceCorpsText ; 0x02b1
textpointer FlyinPokemonText ; 0x02b2
textpointer PoisonText ; 0x02b3
textpointer WondersOfScienceText ; 0x02b4
textpointer ReplaceEmAllText ; 0x02b5
textpointer ChariSaurText ; 0x02b6
textpointer TrafficLightText ; 0x02b7
textpointer FirePokemonDeckText ; 0x02b8
textpointer FireChargeText ; 0x02b9
textpointer CharmanderAndFriendsText ; 0x02ba
textpointer SquirtleAndFriendsText ; 0x02bb
textpointer BulbasaurAndFriendsText ; 0x02bc
textpointer PsychicMachampText ; 0x02bd
textpointer WaterBeetleText ; 0x02be
textpointer LegendaryMoltresText ; 0x02bf
textpointer LegendaryZapdosText ; 0x02c0
textpointer LegendaryArticunoText ; 0x02c1
textpointer LegendaryDragoniteText ; 0x02c2
textpointer MysteriousPokemonText ; 0x02c3
textpointer AllFightingPokemonDescriptionText ; 0x02c4
textpointer BenchAttackDescriptionText ; 0x02c5
textpointer BattleContestDescriptionText ; 0x02c6
textpointer HeatedBattleDescriptionText ; 0x02c7
textpointer FirstStrikeDescriptionText ; 0x02c8
textpointer SqueakingMouseDescriptionText ; 0x02c9
textpointer GreatQuakeDescriptionText ; 0x02ca
textpointer BoneAttackDescriptionText ; 0x02cb
textpointer ExcavationDescriptionText ; 0x02cc
textpointer RockCrusherDescriptionText ; 0x02cd
textpointer BlueWaterDescriptionText ; 0x02ce
textpointer OnTheBeachDescriptionText ; 0x02cf
textpointer ParalyzeDescriptionText ; 0x02d0
textpointer EnergyRemovalDescriptionText ; 0x02d1
textpointer RainDancerDescriptionText ; 0x02d2
textpointer CutePokemonDescriptionText ; 0x02d3
textpointer PokemonFluteDescriptionText ; 0x02d4
textpointer YellowFlashDescriptionText ; 0x02d5
textpointer ElectricShockDescriptionText ; 0x02d6
textpointer ZappingSelfdestructDescriptionText ; 0x02d7
textpointer InsectCollectionDescriptionText ; 0x02d8
textpointer JungleDescriptionText ; 0x02d9
textpointer FlowerGardenDescriptionText ; 0x02da
textpointer KaleidoscopeDescriptionText ; 0x02db
textpointer FlowerPowerDescriptionText ; 0x02dc
textpointer PsychicPowerDescriptionText ; 0x02dd
textpointer DreamEaterHaunterDescriptionText ; 0x02de
textpointer ScavengingSlowbroDescriptionText ; 0x02df
textpointer StrangePowerDescriptionText ; 0x02e0
textpointer StrangePsyshockDescriptionText ; 0x02e1
textpointer LovelyNidoranDescriptionText ; 0x02e2
textpointer ScienceCorpsDescriptionText ; 0x02e3
textpointer FlyinPokemonDescriptionText ; 0x02e4
textpointer PoisonDescriptionText ; 0x02e5
textpointer WondersOfScienceDescriptionText ; 0x02e6
textpointer ReplaceEmAllDescriptionText ; 0x02e7
textpointer ChariSaurDescriptionText ; 0x02e8
textpointer TrafficLightDescriptionText ; 0x02e9
textpointer FirePokemonDescriptionText ; 0x02ea
textpointer FireChargeDescriptionText ; 0x02eb
textpointer CharmanderAndFriendsDescriptionText ; 0x02ec
textpointer SquirtleAndFriendsDescriptionText ; 0x02ed
textpointer BulbasaurAndFriendsDescriptionText ; 0x02ee
textpointer PsychicMachampDescriptionText ; 0x02ef
textpointer WaterBeetleDescriptionText ; 0x02f0
textpointer LegendaryMoltresDescriptionText ; 0x02f1
textpointer LegendaryZapdosDescriptionText ; 0x02f2
textpointer LegendaryArticunoDescriptionText ; 0x02f3
textpointer LegendaryDragoniteDescriptionText ; 0x02f4
textpointer MysteriousPokemonDescriptionText ; 0x02f5
textpointer PokemonCardGlossaryText ; 0x02f6
textpointer GlossaryMenuPage1Text ; 0x02f7
textpointer GlossaryMenuPage2Text ; 0x02f8
textpointer ChooseWordAndPressAButtonText ; 0x02f9
textpointer AboutTheDeckText ; 0x02fa
textpointer AboutTheDiscardPileText ; 0x02fb
textpointer AboutTheHandText ; 0x02fc
textpointer AboutTheArenaText ; 0x02fd
textpointer AboutTheBenchText ; 0x02fe
textpointer AboutTheActivePokemonText ; 0x02ff
textpointer AboutBenchPokemonText ; 0x0300
textpointer AboutPrizesText ; 0x0301
textpointer AboutDamageCountersText ; 0x0302
textpointer AboutEnergyCardsText ; 0x0303
textpointer AboutTrainerCardsText ; 0x0304
textpointer AboutBasicPokemonText ; 0x0305
textpointer AboutEvolutionCardsText ; 0x0306
textpointer AboutAttackingText ; 0x0307
textpointer AboutPokemonPowerText ; 0x0308
textpointer AboutWeaknessText ; 0x0309
textpointer AboutResistanceText ; 0x030a
textpointer AboutRetreatingText ; 0x030b
textpointer DeckDescriptionText ; 0x030c
textpointer DiscardPileDescriptionText ; 0x030d
textpointer HandDescriptionText ; 0x030e
textpointer ArenaDescriptionText ; 0x030f
textpointer BenchDescriptionText ; 0x0310
textpointer ActivePokemonDescriptionText ; 0x0311
textpointer BenchPokemonDescriptionText ; 0x0312
textpointer PrizesDescriptionText ; 0x0313
textpointer DamageCountersDescriptionText ; 0x0314
textpointer EnergyCardsDescriptionText ; 0x0315
textpointer TrainerCardsDescriptionText ; 0x0316
textpointer BasicPokemonDescriptionText ; 0x0317
textpointer EvolutionCardsDescriptionText ; 0x0318
textpointer AttackingDescriptionText ; 0x0319
textpointer PokemonPowerDescriptionText ; 0x031a
textpointer WeaknessDescriptionText ; 0x031b
textpointer ResistanceDescriptionText ; 0x031c
textpointer RetreatingDescriptionText ; 0x031d
textpointer UnusedText031e ; 0x031e
textpointer UnusedText031f ; 0x031f
textpointer UnusedText0320 ; 0x0320
textpointer UnusedText0321 ; 0x0321
textpointer UnusedText0322 ; 0x0322
textpointer OverworldMapMasonLaboratoryText ; 0x0323
textpointer OverworldMapIshiharasHouseText ; 0x0324
textpointer OverworldMapFightingClubText ; 0x0325
textpointer OverworldMapRockClubText ; 0x0326
textpointer OverworldMapWaterClubText ; 0x0327
textpointer OverworldMapLightningClubText ; 0x0328
textpointer OverworldMapGrassClubText ; 0x0329
textpointer OverworldMapPsychicClubText ; 0x032a
textpointer OverworldMapScienceClubText ; 0x032b
textpointer OverworldMapFireClubText ; 0x032c
textpointer OverworldMapChallengeHallText ; 0x032d
textpointer OverworldMapPokemonDomeText ; 0x032e
textpointer OverworldMapMysteryHouseText ; 0x032f
textpointer MasonLaboratoryMapName ; 0x0330
textpointer MrIshiharasHouseMapName ; 0x0331
textpointer FightingClubMapName ; 0x0332
textpointer RockClubMapName ; 0x0333
textpointer WaterClubMapName ; 0x0334
textpointer LightningClubMapName ; 0x0335
textpointer GrassClubMapName ; 0x0336
textpointer PsychicClubMapName ; 0x0337
textpointer ScienceClubMapName ; 0x0338
textpointer FireClubMapName ; 0x0339
textpointer ChallengeHallMapName ; 0x033a
textpointer PokemonDomeMapName ; 0x033b
textpointer UnusedText033c ; 0x033c
textpointer PauseMenuOptionsText ; 0x033d
textpointer DebugPauseMenuOptionsText ; 0x033e
textpointer PlayerStatusNameText ; 0x033f
textpointer PlayerStatusAlbumText ; 0x0340
textpointer PlayerStatusPlayTimeText ; 0x0341
textpointer PlayerDiaryTitleText ; 0x0342
textpointer PlayerDiaryMedalsWonText ; 0x0343
textpointer PlayerDiarySaveQuestionText ; 0x0344
textpointer PlayerDiarySaveConfirmText ; 0x0345
textpointer PlayerDiarySaveCancelText ; 0x0346
textpointer PlayerStatusMedalsTitleText ; 0x0347
textpointer ConfigMenuTitleText ; 0x0348
textpointer ConfigMenuMessageSpeedText ; 0x0349
textpointer ConfigMenuDuelAnimationText ; 0x034a
textpointer ConfigMenuExitText ; 0x034b
textpointer UnusedText034c ; 0x034c
textpointer UnusedText034d ; 0x034d
textpointer UnusedText034e ; 0x034e
textpointer UnusedText034f ; 0x034f
textpointer UnusedText0350 ; 0x0350
textpointer PCMenuOptionsText ; 0x0351
textpointer TurnedPCOnText ; 0x0352
textpointer TurnedPCOffText ; 0x0353
textpointer GiftCenterMenuText ; 0x0354
textpointer SendCardText ; 0x0355
textpointer ReceiveCardText ; 0x0356
textpointer SendDeckConfigurationText ; 0x0357
textpointer ReceiveDeckConfigurationText ; 0x0358
textpointer MailText ; 0x0359
textpointer WhichMailWouldYouLikeToReadText ; 0x035a
textpointer MailNumbersText ; 0x035b
textpointer EmptyMailNameText ; 0x035c
textpointer Mail1Text ; 0x035d
textpointer Mail2Text ; 0x035e
textpointer Mail3Text ; 0x035f
textpointer Mail4Text ; 0x0360
textpointer Mail5Text ; 0x0361
textpointer Mail6Text ; 0x0362
textpointer Mail7Text ; 0x0363
textpointer Mail8Text ; 0x0364
textpointer Mail9Text ; 0x0365
textpointer Mail10Text ; 0x0366
textpointer Mail11Text ; 0x0367
textpointer Mail12Text ; 0x0368
textpointer Mail13Text ; 0x0369
textpointer Mail14Text ; 0x036a
textpointer Mail15Text ; 0x036b
textpointer NewGameText ; 0x036c
textpointer CardPopContinueDiaryNewGameText ; 0x036d
textpointer CardPopContinueDiaryNewGameContinueDuelText ; 0x036e
textpointer WhenYouCardPopWithFriendText ; 0x036f
textpointer ContinueFromDiarySummaryText ; 0x0370
textpointer StartANewGameText ; 0x0371
textpointer TheGameWillContinueFromThePointInTheDuelText ; 0x0372
textpointer SavedDataAlreadyExistsText ; 0x0373
textpointer OKToDeleteTheDataText ; 0x0374
textpointer AllDataWasDeletedText ; 0x0375
textpointer DataExistsWhenPowerWasTurnedOFFDuringDuelText ; 0x0376
textpointer ContinueFromDiaryText ; 0x0377
textpointer YouCanAccessCardPopOnlyWithGameBoyColorsText ; 0x0378
textpointer IsCrazyAboutPokemonAndPokemonCardCollectingText ; 0x0379
textpointer DebugMenuText ; 0x037a
textpointer DebugDuelModeMenuText ; 0x037b
textpointer DebugBoosterPackMenuText ; 0x037c
textpointer DebugBoosterPackColosseumEvolutionMenuText ; 0x037d
textpointer DebugBoosterPackMysteryMenuText ; 0x037e
textpointer DebugBoosterPackLaboratoryMenuText ; 0x037f
textpointer DebugBoosterPackEnergyMenuText ; 0x0380
textpointer UnusedText0381 ; 0x0381
textpointer UnusedText0382 ; 0x0382
textpointer UnusedText0383 ; 0x0383
textpointer SPRText ; 0x0384
textpointer WinLosePrizesDuelWithText ; 0x0385
textpointer UseDuelistsDeckText ; 0x0386
textpointer ReceivedBoosterPackText ; 0x0387
textpointer AndAnotherBoosterPackText ; 0x0388
textpointer CheckedCardsInBoosterPackText ; 0x0389
textpointer UnusedText038a ; 0x038a
textpointer WonTheMedalText ; 0x038b
textpointer UnusedText038c ; 0x038c
textpointer UnusedText038d ; 0x038d
textpointer UnusedText038e ; 0x038e
textpointer UnusedText038f ; 0x038f
textpointer UnusedText0390 ; 0x0390
textpointer UnusedText0391 ; 0x0391
textpointer UnusedText0392 ; 0x0392
textpointer UnusedText0393 ; 0x0393
textpointer UnusedText0394 ; 0x0394
textpointer OpponentTitleAndNameText ; 0x0395
textpointer OpponentDeckNameText ; 0x0396
textpointer FightingClubMemberText ; 0x0397
textpointer RockClubMemberText ; 0x0398
textpointer WaterClubMemberText ; 0x0399
textpointer LightningClubMemberText ; 0x039a
textpointer GrassClubMemberText ; 0x039b
textpointer PsychicClubMemberText ; 0x039c
textpointer ScienceClubMemberText ; 0x039d
textpointer FireClubMemberText ; 0x039e
textpointer FightingClubMasterText ; 0x039f
textpointer RockClubMasterText ; 0x03a0
textpointer WaterClubMasterText ; 0x03a1
textpointer LightningClubMasterText ; 0x03a2
textpointer GrassClubMasterText ; 0x03a3
textpointer PsychicClubMasterText ; 0x03a4
textpointer ScienceClubMasterText ; 0x03a5
textpointer FireClubMasterText ; 0x03a6
textpointer EmptyText ; 0x03a7
textpointer ColosseumBoosterText ; 0x03a8
textpointer EvolutionBoosterText ; 0x03a9
textpointer MysteryBoosterText ; 0x03aa
textpointer LaboratoryBoosterText ; 0x03ab
textpointer DrMasonNPCName ; 0x03ac
textpointer RonaldNPCName ; 0x03ad
textpointer IshiharaNPCName ; 0x03ae
textpointer ImakuniNPCName ; 0x03af
textpointer ClerkNPCName ; 0x03b0
textpointer SamNPCName ; 0x03b1
textpointer TechNPCName ; 0x03b2
textpointer ClerkNPCName2 ; 0x03b3
textpointer ChrisNPCName ; 0x03b4
textpointer MichaelNPCName ; 0x03b5
textpointer JessicaNPCName ; 0x03b6
textpointer MitchNPCName ; 0x03b7
textpointer MatthewNPCName ; 0x03b8
textpointer RyanNPCName ; 0x03b9
textpointer AndrewNPCName ; 0x03ba
textpointer GeneNPCName ; 0x03bb
textpointer SaraNPCName ; 0x03bc
textpointer AmandaNPCName ; 0x03bd
textpointer JoshuaNPCName ; 0x03be
textpointer AmyNPCName ; 0x03bf
textpointer JenniferNPCName ; 0x03c0
textpointer NicholasNPCName ; 0x03c1
textpointer BrandonNPCName ; 0x03c2
textpointer IsaacNPCName ; 0x03c3
textpointer BrittanyNPCName ; 0x03c4
textpointer KristinNPCName ; 0x03c5
textpointer HeatherNPCName ; 0x03c6
textpointer NikkiNPCName ; 0x03c7
textpointer RobertNPCName ; 0x03c8
textpointer DanielNPCName ; 0x03c9
textpointer StephanieNPCName ; 0x03ca
textpointer MurrayNPCName ; 0x03cb
textpointer JosephNPCName ; 0x03cc
textpointer DavidNPCName ; 0x03cd
textpointer ErikNPCName ; 0x03ce
textpointer RickNPCName ; 0x03cf
textpointer JohnNPCName ; 0x03d0
textpointer AdamNPCName ; 0x03d1
textpointer JonathanNPCName ; 0x03d2
textpointer KenNPCName ; 0x03d3
textpointer CourtneyNPCName ; 0x03d4
textpointer SteveNPCName ; 0x03d5
textpointer JackNPCName ; 0x03d6
textpointer RodNPCName ; 0x03d7
textpointer ManNPCName ; 0x03d8
textpointer WomanNPCName ; 0x03d9
textpointer ChapNPCName ; 0x03da
textpointer GalNPCName ; 0x03db
textpointer LassNPCName ; 0x03dc
textpointer PappyNPCName ; 0x03dd
textpointer LadNPCName ; 0x03de
textpointer HostNPCName ; 0x03df
textpointer SpecsNPCName ; 0x03e0
textpointer ButchNPCName ; 0x03e1
textpointer HoodNPCName ; 0x03e2
textpointer ChampNPCName ; 0x03e3
textpointer ManiaNPCName ; 0x03e4