summaryrefslogtreecommitdiff
path: root/src/text/text1.asm
blob: 580ff69144f6deef6deb0274ba49a7b9034da1a5 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
HandText: ; 3630a (d:630a)
	text "Hand"
	done

CheckText: ; 36310 (d:6310)
	text "Check"
	done

AttackText: ; 36317 (d:6317)
	text "Attack"
	done

PKMNPowerText: ; 3631f (d:631f)
	text "PKMN Power"
	done

DoneText: ; 3632b (d:632b)
	text "Done"
	done

TypeText: ; 36331 (d:6331)
	text "Type"
	done

RetreatText: ; 36337 (d:6337)
	text "Retreat"
	done

WeaknessText: ; 36340 (d:6340)
	text "Weakness"
	done

ResistanceText: ; 3634a (d:634a)
	text "Resistance"
	done

PKMNPWRText: ; 36356 (d:6356)
	text "PKMN PWR"
	done

Text000b: ; 36360 (d:6360)
	textfw0 "ポケモンカ—ド"
	done

LengthText: ; 36368 (d:6368)
	text "Length"
	done

WeightText: ; 36370 (d:6370)
	text "Weight"
	done

PokemonText: ; 36378 (d:6378)
	text " Pokémon"
	done

MetresText: ; 36382 (d:6382)
	textfw3 "m"
	done

LbsText: ; 36385 (d:6385)
	text "lbs."
	done

PromostarRarityText: ; 3638b (d:638b)
	textfw0 " "
	done

CircleRarityText: ; 3638d (d:638d)
	textfw3 "●"
	done

DiamondRarityText: ; 36390 (d:6390)
	textfw3 "◆"
	done

StarRarityText: ; 36393 (d:6393)
	textfw3 "★"
	done

AllCardsOwnedText: ; 36396 (d:6396)
	text " All cards owned:"
	done

TotalNumberOfCardsText: ; 363a9 (d:63a9)
	text "Total number of cards"
	done

TypesOfCardsText: ; 363c0 (d:63c0)
	text "Types of cards"
	done

GrassPokemonText: ; 363d0 (d:63d0)
	text "Grass Pokémon"
	done

FirePokemonText: ; 363df (d:63df)
	text "Fire Pokémon"
	done

WaterPokemonText: ; 363ed (d:63ed)
	text "Water Pokémon"
	done

LightningPokemonText: ; 363fc (d:63fc)
	text "Lightning Pokémon"
	done

FightingPokemonText: ; 3640f (d:640f)
	text "Fighting Pokémon"
	done

PsychicPokemonText: ; 36421 (d:6421)
	text "Psychic Pokémon"
	done

ColorlessPokemonText: ; 36432 (d:6432)
	text "Colorless Pokémon"
	done

TrainerCardText: ; 36445 (d:6445)
	text "Trainer Card"
	done

EnergyCardText: ; 36453 (d:6453)
	text "Energy Card"
	done

DeckPrinterText: ; 36460 (d:6460)
	text "Deck"
	done

Text0022: ; 36466 (d:6466)
	text "Attack"
	done

NoPokemonOnTheBenchText: ; 3646e (d:646e)
	text "No Pokémon on the Bench."
	done

UnableDueToSleepText: ; 36488 (d:6488)
	text "Unable to due to Sleep."
	done

UnableDueToParalysisText: ; 364a1 (d:64a1)
	text "Unable to due to Paralysis."
	done

Received10DamageDueToPoisonText: ; 364be (d:64be)
	text "<RAMTEXT> received"
	line "10 damage due to Poison."
	done

Received20DamageDueToPoisonText: ; 364e3 (d:64e3)
	text "<RAMTEXT> received"
	line "20 damage due to Double Poison."
	done

IsStillAsleepText: ; 3650f (d:650f)
	text "<RAMTEXT> is"
	line "still Asleep."
	done

IsCuredOfSleepText: ; 36523 (d:6523)
	text "<RAMTEXT> is"
	line "cured of Sleep."
	done

IsCuredOfParalysisText: ; 36539 (d:6539)
	text "<RAMTEXT> is"
	line "cured of Paralysis."
	done

BetweenTurnsText: ; 36553 (d:6553)
	text "Between Turns."
	done

UnableToUseItText: ; 36563 (d:6563)
	text "Unable to use it."
	done

NoEnergyCardsText: ; 36576 (d:6576)
	text "No Energy cards."
	done

IsThisOKText: ; 36588 (d:6588)
	text "Is this OK?"
	done

YesOrNoText: ; 36595 (d:6595)
	text "Yes     No"
	done

DiscardName: ; 365a1 (d:65a1)
	text "Discard"
	done

IncompleteText: ; 365aa (d:65aa)
	text "Incomplete"
	done

Text0032: ; 365b6 (d:65b6)
	text "Damage"
	done

UsedText: ; 365be (d:65be)
	text "Used <RAMTEXT>."
	done

Text0034: ; 365c7 (d:65c7)
	text "Received damage"
	done

PokemonsAttackText: ; 365d8 (d:65d8)
	text "<RAMTEXT>'s"
	line ""
	text "<RAMTEXT>!"
	done

ResistanceLessDamageText: ; 365e1 (d:65e1)
	text "<RAMTEXT> received"
	line "<RAMNUM> damage due to Resistance!"
	done

WeaknessMoreDamageText: ; 36609 (d:6609)
	text "<RAMTEXT> received"
	line "<RAMNUM> damage due to Weakness!"
	done

WeaknessMoreDamage2Text: ; 3662f (d:662f)
	text "<RAMTEXT> received"
	line "<RAMNUM> damage due to Weakness!"
	done

ResistanceNoDamageText: ; 36655 (d:6655)
	text "<RAMTEXT> did not"
	line "receive damage due to Resistance."
	done

AttackDamageText: ; 36682 (d:6682)
	text "<RAMTEXT> took"
	line "<RAMNUM> damage."
	done

NoDamageText: ; 36694 (d:6694)
	text "<RAMTEXT> did not"
	line "receive damage!"
	done

NoSelectableAttackText: ; 366af (d:66af)
	text "No selectable Attack"
	done

UnableToRetreatText: ; 366c5 (d:66c5)
	text "Unable to Retreat."
	done

MayOnlyAttachOneEnergyCardText: ; 366d9 (d:66d9)
	text "You may only attach 1 Energy card"
	line "per turn."
	done

UseThisPokemonPowerText: ; 36706 (d:6706)
	text "Use this Pokémon Power?"
	done

PokemonPowerSelectNotRequiredText: ; 3671f (d:671f)
	text "You do not need to select the"
	line "Pokémon Power to use it."
	done

DiscardDescription: ; 36757 (d:6757)
	text "You may discard this card during"
	line "your turn."
	line "It will be counted as a Knock Out"
	line "(This Discard is not"
	line "a Pokémon Power)"
	done

WillDrawNPrizesText: ; 367cc (d:67cc)
	text "<RAMNAME> will draw <RAMNUM> Prize(s)."
	done

DrewNPrizesText: ; 367e5 (d:67e5)
	text "<RAMNAME> drew <RAMNUM> Prize(s)."
	done

DuelistPlacedACardText: ; 367f9 (d:67f9)
	text "<RAMNAME> placed"
	line "a <RAMTEXT>."
	done

UnableToSelectText: ; 36808 (d:6808)
	text "Unable to select."
	done

ColorListText: ; 3681b (d:681b)
	text "Grass"
	line "Fire"
	line "Water"
	line "Lightning"
	line "Fighting"
	line "Psychic"
	done

GrassSymbolText: ; 36848 (d:6848)
	textfw0 "<GRASS>"
	done

FireSymbolText: ; 3684b (d:684b)
	textfw0 "<FIRE>"
	done

WaterSymbolText: ; 3684e (d:684e)
	textfw0 "<WATER>"
	done

LightningSymbolText: ; 36851 (d:6851)
	textfw0 "<LIGHTNING>"
	done

FightingSymbolText: ; 36854 (d:6854)
	textfw0 "<FIGHTING>"
	done

PsychicSymbolText: ; 36857 (d:6857)
	textfw0 "<PSYCHIC>"
	done

BenchText: ; 3685a (d:685a)
	text "Bench"
	done

KnockOutText: ; 36861 (d:6861)
	text "Knock Out"
	done

DamageToSelfDueToConfusionText: ; 3686c (d:686c)
	text "20 damage to Self due to Confusion."
	done

ChooseEnergyCardToDiscardText: ; 36891 (d:6891)
	text "Choose the Energy card"
	line "you wish to discard."
	done

ChooseNextActivePokemonText: ; 368be (d:68be)
	text "The Active Pokémon was Knocked Out."
	line "Please choose the next Pokémon."
	done

PressStartWhenReadyText: ; 36903 (d:6903)
	text "Press START"
	line "When you are ready."
	done

YouPlayFirstText: ; 36924 (d:6924)
	text "You play first."
	done

YouPlaySecondText: ; 36935 (d:6935)
	text "You play second."
	done

TransmissionErrorText: ; 36947 (d:6947)
	text "Transmission Error."
	line "Start again from the beginning."
	done

ChooseTheCardYouWishToExamineText: ; 3697c (d:697c)
	text "Choose the card"
	line "you wish to examine."
	done

TransmittingDataText: ; 369a2 (d:69a2)
	text "Transmitting data..."
	done

WaitingHandExamineText: ; 369b8 (d:69b8)
	text "Waiting..."
	line "    Hand        Examine"
	done

SelectingBenchPokemonHandExamineBackText: ; 369dc (d:69dc)
	text "Selecting Bench Pokémon..."
	line "    Hand        Examine     Back"
	done

RetreatedToTheBenchText: ; 36a19 (d:6a19)
	text "<RAMTEXT>"
	line "Retreated to the Bench."
	done

RetreatWasUnsuccessfulText: ; 36a34 (d:6a34)
	text "<RAMTEXT>'s"
	line "Retreat was unsuccessful."
	done

WillUseThePokemonPowerText: ; 36a53 (d:6a53)
	text "<RAMTEXT> will use the"
	line "Pokémon Power <RAMTEXT>."
	done

FinishedTurnWithoutAttackingText: ; 36a74 (d:6a74)
	text "Finished the Turn"
	line "without Attacking."
	done

DuelistTurnText: ; 36a9a (d:6a9a)
	text "<RAMNAME>'s Turn."
	done

AttachedEnergyToPokemonText: ; 36aa5 (d:6aa5)
	text "Attached <RAMTEXT>"
	line "to <RAMTEXT>."
	done

PokemonEvolvedIntoPokemonText: ; 36ab7 (d:6ab7)
	text "<RAMTEXT> evolved"
	line "into <RAMTEXT>."
	done

PlacedOnTheBenchText: ; 36aca (d:6aca)
	text "Placed <RAMTEXT>"
	line "on the Bench."
	done

PlacedInTheArenaText: ; 36ae2 (d:6ae2)
	text "<RAMTEXT>"
	line "was placed in the Arena."
	done

ShufflesTheDeckText: ; 36afe (d:6afe)
	text "<RAMNAME> shuffles the Deck."
	done

ThisIsJustPracticeDoNotShuffleText: ; 36b14 (d:6b14)
	text "Since this is just practice,"
	line "Do not shuffle the Deck."
	done

EachPlayerShuffleOpponentsDeckText: ; 36b4b (d:6b4b)
	text "Each player will"
	line "shuffle the opponent's Deck."
	done

EachPlayerDraw7CardsText: ; 36b7a (d:6b7a)
	text "Each player will draw 7 cards."
	done

Drew7CardsText: ; 36b9a (d:6b9a)
	text "<RAMNAME>"
	line "drew 7 cards."
	done

DeckHasXCardsText: ; 36bab (d:6bab)
	text "<RAMNAME>'s deck has <RAMNUM> cards."
	done

ChooseBasicPkmnToPlaceInArenaText: ; 36bc2 (d:6bc2)
	text "Choose a Basic Pokémon"
	line "to place in the Arena."
	done

ThereAreNoBasicPokemonInHand: ; 36bf1 (d:6bf1)
	text "There are no Basic Pokémon"
	line "in <RAMNAME>'s hand."
	done

NeitherPlayerHasBasicPkmnText: ; 36c1a (d:6c1a)
	text "Neither player has any Basic"
	line "Pokémon in his or her hand."
	done

ReturnCardsToDeckAndDrawAgainText: ; 36c54 (d:6c54)
	text "Return the cards to the Deck"
	line "and draw again."
	done

ChooseUpTo5BasicPkmnToPlaceOnBenchText: ; 36c82 (d:6c82)
	text "You may choose up to 5 Basic Pokémon"
	line "to place on the Bench."
	done

PleaseChooseAnActivePokemonText: ; 36cbf (d:6cbf)
	text "Please choose an"
	line "Active Pokémon."
	done

ChooseYourBenchPokemonText: ; 36ce1 (d:6ce1)
	text "Choose your"
	line "Bench Pokémon."
	done

YouDrewText: ; 36cfd (d:6cfd)
	text "You drew <RAMTEXT>."
	done

YouCannotSelectThisCardText: ; 36d0a (d:6d0a)
	text "You cannot select this card."
	done

PlacingThePrizesText: ; 36d28 (d:6d28)
	text "Placing the Prizes..."
	done

PleasePlacePrizesText: ; 36d3f (d:6d3f)
	text "Please place"
	line "<RAMNUM> Prizes."
	done

IfHeadsDuelistPlaysFirstText: ; 36d57 (d:6d57)
	text "If heads,"
	line ""
	text "<RAMTEXT> plays first."
	done

CoinTossToDecideWhoPlaysFirstText: ; 36d72 (d:6d72)
	text "A coin will be tossed"
	line "to decide who plays first."
	done

DecisionText: ; 36da4 (d:6da4)
	text "Decision..."
	done

DuelWasADrawText: ; 36db1 (d:6db1)
	text "The Duel with <RAMNAME>"
	line "was a Draw!"
	done

WonDuelText: ; 36dce (d:6dce)
	text "You won the Duel with <RAMNAME>!"
	done

LostDuelText: ; 36de8 (d:6de8)
	text "You lost the Duel"
	line "with <RAMNAME>..."
	done

StartSuddenDeathMatchText: ; 36e05 (d:6e05)
	text "Start a Sudden-Death"
	line "Match for 1 Prize!"
	done

PrizesLeftActivePokemonCardsInDeckText: ; 36e2e (d:6e2e)
	text "Prizes Left"
	line "Active Pokémon"
	line "Cards in Deck"
	done

NoneText: ; 36e58 (d:6e58)
	text "None"
	done

YesText: ; 36e5e (d:6e5e)
	text "Yes"
	done

CardsText: ; 36e63 (d:6e63)
	text "Cards"
	done

TookAllThePrizesText: ; 36e6a (d:6e6a)
	text "<RAMNAME> took"
	line "all the Prizes!"
	done

ThereAreNoPokemonInPlayAreaText: ; 36e82 (d:6e82)
	text "There are no Pokémon"
	line "in <RAMNAME>'s Play Area!"
	done

WasKnockedOutText: ; 36eaa (d:6eaa)
	text "<RAMTEXT> was"
	line "Knocked Out!"
	done

HavePokemonPowerText: ; 36ebe (d:6ebe)
	text "<RAMTEXT> have"
	line "Pokémon Power."
	done

UnableToUsePkmnPowerDueToToxicGasText: ; 36ed5 (d:6ed5)
	text "Unable to us Pokémon Power due to"
	line "the effect of Toxic Gas."
	done

PlayCheck1Text: ; 36f11 (d:6f11)
	text "  Play"
	line "  Check"
	done

PlayCheck2Text: ; 36f21 (d:6f21)
	text "  Play"
	line "  Check"
	done

SelectCheckText: ; 36f31 (d:6f31)
	text "  Select"
	line "  Check"
	done

Text0087: ; 36f43 (d:6f43)
	textfw3 "B"
	textfw0 "<RAMNUM>"
	textfw3 "S"
	textfw0 "<RAMNUM>"
	done

DuelistIsThinkingText: ; 36f4a (d:6f4a)
	text "<RAMNAME> is thinking."
	done

ClearOpponentNameText: ; 36f5a (d:6f5a)
	textfw0 "          "
	done

SelectComputerOpponentText: ; 36f65 (d:6f65)
	text "Select a computer opponent."
	done

NumberOfPrizesText: ; 36f82 (d:6f82)
	text "Number of Prizes"
	done

Text008c: ; 36f94 (d:6f94)
	text "Random 1"
	done

Text008d: ; 36f9e (d:6f9e)
	text "Random 2"
	done

Text008e: ; 36fa8 (d:6fa8)
	text "Random 3"
	done

Text008f: ; 36fb2 (d:6fb2)
	text "Random 4"
	done

Text0090: ; 36fbc (d:6fbc)
	text "Training COM"
	done

Text0091: ; 36fca (d:6fca)
	text "Player 1"
	done

Player2Text: ; 36fd4 (d:6fd4)
	text "Player 2"
	done

Text0093: ; 36fde (d:6fde)
	text "Left to Right"
	done

Text0094: ; 36fed (d:6fed)
	text "Right to Left"
	done

Text0095: ; 36ffc (d:6ffc)
	text "START: Change"
	line "    A: Execute"
	line "    B: End"
	done

Text0096: ; 37025 (d:7025)
	text "Other"
	line "Poison"
	line "Sleep"
	line "Payalysis"
	line "Confusion"
	line "Double Poison"
	line "Clear"
	line "Foul Gas"
	line "Opponent's Hand"
	line "Discard from Hand"
	line "Select Deck"
	line "Select Discard"
	line "From Hand to Deck"
	line "Take Prize"
	line "Change Player"
	line "Shuffle Deck"
	line "Discard Bench"
	line "Change Card"
	done

Text0097: ; 370f9 (d:70f9)
	text "WIN GAME"
	line "LOSE GAME"
	line "DRAW GAME"
	line "CHANGE CASE"
	line "PAUSE MODE"
	line "CHANGE COMPUTER OPPONENT"
	line "CHANGE PLAYER 2 TO COM"
	line "FLIP 20"
	line "SAVE NOW"
	line "LOAD FILE"
	done

Text0098: ; 37179 (d:7179)
	text "Save File"
	done

Text0099: ; 37184 (d:7184)
	text "Load File"
	line "  "
	half2full
	textfw0 "0"
	text "  Last Saved File"
	done

Text009a: ; 371a6 (d:71a6)
	text "Pause Mode is ON"
	line "Press SELECT to Pause"
	done

Text009b: ; 371ce (d:71ce)
	text "Pause Mode is OFF"
	done

Text009c: ; 371e1 (d:71e1)
	text "Computer Mode is OFF"
	done

Text009d: ; 371f7 (d:71f7)
	text "Computer Mode is ON"
	done

Text009e: ; 3720c (d:720c)
	text "<GRASS> Pokémon"
	line ""
	text "<FIRE> Pokémon"
	line ""
	text "<WATER> Pokémon"
	line ""
	text "<LIGHTNING> Pokémon"
	line ""
	text "<FIGHTING> Pokémon"
	line ""
	text "<PSYCHIC> Pokémon"
	line ""
	text "<COLORLESS> Pokémon"
	line "Trainer Card"
	line "Energy Card"
	done

Text009f: ; 37279 (d:7279)
	text "Card List"
	done

Text00a0: ; 37284 (d:7284)
	text "Test Coin Flip"
	done

Text00a1: ; 37294 (d:7294)
	text "End without Prizes?"
	done

ResetBackUpRamText: ; 372a9 (d:72a9)
	text "Reset Back Up RAM?"
	done

YourDataWasDestroyedSomehowText: ; 372bd (d:72bd)
	text "Your Data was destroyed"
	line "somehow."
	line ""
	line "The game cannot be continued"
	line "in its present condition."
	line "Please restart the game after"
	line "the Data is reset."
	done

NoCardsInHandText: ; 37348 (d:7348)
	text "No cards in hand."
	done

TheDiscardPileHasNoCardsText: ; 3735b (d:735b)
	text "The Discard Pile has no cards."
	done

PlayerDiscardPileText: ; 3737b (d:737b)
	text "Player's Discard Pile"
	done

DuelistHandText: ; 37392 (d:7392)
	text "<RAMNAME>'s Hand"
	done

DuelistPlayAreaText: ; 3739c (d:739c)
	text "<RAMNAME>'s Play Area"
	done

DuelistDeckText: ; 373ab (d:73ab)
	text "<RAMNAME>'s Deck"
	done

PleaseSelectHandText: ; 373b5 (d:73b5)
	text "Please select"
	line "Hand."
	done

PleaseSelectCardText: ; 373ca (d:73ca)
	text "Please select"
	line "Card."
	done

NoPokemonWithDamageCountersText: ; 373df (d:73df)
	text "There are no Pokémon"
	line "with Damage Counters."
	done

NoDamageCountersText: ; 3740b (d:740b)
	text "There are no Damage Counters."
	done

NoEnergyAttachedToOpponentsActiveText: ; 3742a (d:742a)
	text "No Energy cards are attached to"
	line "the opponent's Active Pokémon."
	done

ThereAreNoEnergyCardsInDiscardPileText: ; 3746a (d:746a)
	text "There are no Energy cards"
	line "in the the Discard Pile."
	done

ThereAreNoBasicEnergyCardsInDiscardPileText: ; 3749e (d:749e)
	text "There are no Basic Energy cards"
	line "in the Discard Pile."
	done

NoCardsLeftInTheDeckText: ; 374d4 (d:74d4)
	text "There are no cards left in the Deck."
	done

NoSpaceOnTheBenchText: ; 374fa (d:74fa)
	text "There is no space on the Bench."
	done

NoPokemonCapableOfEvolvingText: ; 3751b (d:751b)
	text "There are no Pokémon capable"
	line "of Evolving."
	done

CantEvolvePokemonInSameTurnItsPlacedText: ; 37546 (d:7546)
	text "You cannot Evolve a Pokémon"
	line "in the same turn it was placed."
	done

NotAffectedByPoisonSleepParalysisOrConfusionText: ; 37583 (d:7583)
	text "Not affected by Poison,"
	line "Sleep, Paralysis, or Confusion."
	done

NotEnoughCardsInHandText: ; 375bc (d:75bc)
	text "Not enough cards in Hand."
	done

EffectNoPokemonOnTheBenchText: ; 375d7 (d:75d7)
	text "No Pokémon on the Bench."
	done

ThereAreNoPokemonInDiscardPileText: ; 375f1 (d:75f1)
	text "There are no Pokémon"
	line "in the Discard Pile."
	done

ConditionsForEvolvingToStage2NotFulfilledText: ; 3761c (d:761c)
	text "Conditions for evolving to"
	line "Stage 2 not fulfilled."
	done

ThereAreNoCardsInHandThatYouCanChangeText: ; 3764f (d:764f)
	text "There are no cards in Hand"
	line "that you can change."
	done

ThereAreNoCardsInTheDiscardPileText: ; 37680 (d:7680)
	text "There are no cards in the"
	line "Discard Pile."
	done

ThereAreNoStage1PokemonText: ; 376a9 (d:76a9)
	text "There are no Stage 1 Pokémon"
	line "in the Play Area."
	done

NoEnergyCardsAttachedToPokemonInYourPlayAreaText: ; 376d9 (d:76d9)
	text "No Energy cards are attached to"
	line "Pokémon in your Play Area."
	done

NoEnergyCardsAttachedToPokemonInOppPlayAreaText: ; 37715 (d:7715)
	text "No Energy cards attached to Pokémon"
	line "in your opponent's Play Area."
	done

EnergyCardsRequiredToRetreatText: ; 37758 (d:7758)
	text "<RAMNUM> Energy cards"
	line "are required to Retreat."
	done

NotEnoughEnergyCardsText: ; 37781 (d:7781)
	text "Not enough Energy cards."
	done

NotEnoughFireEnergyText: ; 3779b (d:779b)
	text "Not enough Fire Energy."
	done

NotEnoughPsychicEnergyText: ; 377b4 (d:77b4)
	text "Not enough Psychic Energy."
	done

NotEnoughWaterEnergyText: ; 377d0 (d:77d0)
	text "Not enough Water Energy."
	done

ThereAreNoTrainerCardsInDiscardPileText: ; 377ea (d:77ea)
	text "There are no Trainer Cards"
	line "in the Discard Pile."
	done

NoAttackMayBeChoosenText: ; 3781b (d:781b)
	text "No Attacks may be choosen."
	done

YouDidNotReceiveAnAttackToMirrorMoveText: ; 37837 (d:7837)
	text "You did not receive an Attack"
	line "to Mirror Move."
	done

ThisAttackCannotBeUsedTwiceText: ; 37866 (d:7866)
	text "This attack cannot"
	line "be used twice."
	done

NoWeaknessText: ; 37889 (d:7889)
	text "No Weakness."
	done

NoResistanceText: ; 37897 (d:7897)
	text "No Resistance."
	done

OnlyOncePerTurnText: ; 378a7 (d:78a7)
	text "Only once per turn."
	done

CannotUseDueToStatusText: ; 378bc (d:78bc)
	text "Cannot use due to Sleep, Paralysis,"
	line "or Confusion."
	done

CannotBeUsedInTurnWhichWasPlayedText: ; 378ef (d:78ef)
	text "Cannot be used in the turn in"
	line "which it was played."
	done

ThereIsNoEnergyCardAttachedText: ; 37923 (d:7923)
	text "There is no Energy card attached."
	done

NoGrassEnergyText: ; 37946 (d:7946)
	text "No Grass Energy."
	done

CannotUseSinceTheresOnly1PkmnText: ; 37958 (d:7958)
	text "Cannot use since there's only"
	line "1 Pokémon."
	done

CannotUseBecauseItWillBeKnockedOutText: ; 37982 (d:7982)
	text "Cannot use because"
	line "it will be Knocked Out."
	done

CanOnlyBeUsedOnTheBenchText: ; 379ae (d:79ae)
	text "Can only be used on the Bench."
	done

ThereAreNoPokemonOnBenchText: ; 379ce (d:79ce)
	text "There are no Pokémon on the Bench."
	done

OpponentIsNotAsleepText: ; 379f2 (d:79f2)
	text "Opponent is not Asleep"
	done

UnableDueToToxicGasText: ; 37a0a (d:7a0a)
	text "Unable to use due to the"
	line "effects of Toxic Gas."
	done

Text00d5: ; 37a3a (d:7a3a)
	text "A Transmission Error occured."
	done

BackUpIsBrokenText: ; 37a59 (d:7a59)
	text "Back Up is broken."
	done

PrinterIsNotConnectedText: ; 37a6d (d:7a6d)
	text "Error No. 02:"
	line "Printer is not connected."
	done

BatteriesHaveLostTheirChargeText: ; 37a96 (d:7a96)
	text "Error No. 01:"
	line "Batteries have lost their charge."
	done

PrinterPaperIsJammedText: ; 37ac7 (d:7ac7)
	text "Error No. 03:"
	line "Printer paper is jammed."
	done

CheckCableOrPrinterSwitchText: ; 37aef (d:7aef)
	text "Error No. 02:"
	line "Check cable or printer switch."
	done

PrinterPacketErrorText: ; 37b1d (d:7b1d)
	text "Error No. 04:"
	line "Printer Packet Error."
	done

PrintingWasInterruptedText: ; 37b42 (d:7b42)
	text "Printing was interrupted."
	done

CardPopCannotBePlayedWithTheGameBoyText: ; 37b5d (d:7b5d)
	text "Card Pop! cannot be played"
	line "with the Game Boy."
	line "Please use a"
	line "Game Boy Color."
	done

SandAttackCheckText: ; 37ba9 (d:7ba9)
	text "Sand-attack check!"
	line "If Tails, Attack is unsuccessful."
	done

SmokescreenCheckText: ; 37bdf (d:7bdf)
	text "Smokescreen check!"
	line "If Tails, Attack is unsuccessful."
	done

ParalysisCheckText: ; 37c15 (d:7c15)
	text "Paralysis check!"
	line "If Heads, opponent is Paralyzed."
	done

SleepCheckText: ; 37c48 (d:7c48)
	text "Sleep check!"
	line "If Heads, opponent becomes Asleep."
	done

PoisonCheckText: ; 37c79 (d:7c79)
	text "Poison check!"
	line "If Heads, opponent is Poisoned."
	done

ConfusionCheckText: ; 37ca8 (d:7ca8)
	text "Confusion check! If Heads,"
	line "opponent becomes Confused."
	done

VenomPowderCheckText: ; 37cdf (d:7cdf)
	text "Venom Powder check! If Heads,"
	line "opponent is Poisoned & Confused."
	done

IfTailsYourPokemonBecomesConfusedText: ; 37d1f (d:7d1f)
	text "If Tails,  your Pokémon"
	line "becomes Confused."
	done

DamageCheckIfTailsNoDamageText: ; 37d4a (d:7d4a)
	text "Damage check!"
	line "If Tails, no damage!!!"
	done

IfHeadsDraw1CardFromDeckText: ; 37d70 (d:7d70)
	text "If Heads,"
	line "Draw 1 card from Deck!"
	done

FlipUntilFailAppears10DamageForEachHeadsText: ; 37d92 (d:7d92)
	text "Flip until Tails appears."
	line "10 damage for each Heads!!!"
	done

IfHeadPlus10IfTails10ToYourselfText: ; 37dc9 (d:7dc9)
	text "If Heads, + 10 damage!"
	line "If Tails, +10 damage to yourself!"
	done

DamageToOppBenchIfHeadsDamageToYoursIfTailsText: ; 37e03 (d:7e03)
	text "10 damage to opponent's Bench if"
	line "Heads, damage to yours if Tails."
	done

IfHeadsChangeOpponentsActivePokemonText: ; 37e46 (d:7e46)
	text "If Heads, change opponent's"
	line "Active Pokémon."
	done

IfHeadsHealIsSuccessfulText: ; 37e73 (d:7e73)
	text "If Heads,"
	line "Heal is successful."
	done

IfTailsDamageToYourselfTooText: ; 37e92 (d:7e92)
	text "If Tails, <RAMNUM> damage"
	line "to yourself, too."
	done

SuccessCheckIfHeadsAttackIsSuccessfulText: ; 37eb8 (d:7eb8)
	text "Success check!!!"
	line "If Heads, Attack is successful!"
	done

TrainerCardSuccessCheckText: ; 37eea (d:7eea)
	text "Trainer card success check!"
	line "If Heads, you're successful!"
	done

CardCheckIfHeads8CardsIfTails1CardText: ; 37f24 (d:7f24)
	text "Card check!"
	line "If Heads, 8 cards! If Tails, 1 card!"
	done

IfHeadsNoDamageNextTurnText: ; 37f56 (d:7f56)
	text "If Heads, you will not receive"
	line "damage during opponent's next turn!"
	done

Text00f2: ; 37f9a (d:7f9a)
	text "Damage check"
	done

DamageCheckIfHeadsPlusDamageText: ; 37fa8 (d:7fa8)
	text "Damage check!"
	line "If Heads, +<RAMNUM> damage!!"
	done

DamageCheckIfHeadsXDamageText: ; 37fcd (d:7fcd)
	text "Damage check!"
	line "If Heads, x <RAMNUM> damage!!"
	done

	ds $d