summaryrefslogtreecommitdiff
path: root/data/text/help_system.inc
blob: 0ad59243e7aa846b16d0fc1abbd9b76d303197f7 (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
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
Help_Text_WhatShouldIDo:: @ 81B2DF8
	.string "What should I do in this situation?$"

Help_Text_HowDoIDoThis:: @ 81B2E1C
	.string "How do I do this?$"

Help_Text_WhatDoesThisTermMean:: @ 81B2E2E
	.string "What does this term mean?$"

Help_Text_AboutThisGame:: @ 81B2E48
	.string "About this game$"

Help_Text_TypeMatchupList:: @ 81B2E58
	.string "Type Matchup List$"

Help_Text_Exit:: @ 81B2E6A
	.string "EXIT$"

Help_Text_Cancel:: @ 81B2E6F
	.string "CANCEL$"

Help_Text_TryDoingItOnYourOwn::
	.string "じぶんの ちからで やってみよう!$"

Help_Text_DescWhatShouldIDo:: @ 81B2E88
	.string "Select to obtain hints for getting\n"
	.string "over challenging situations.$"

Help_Text_DescHowDoIDoThis:: @ 81B2EC8
	.string "Detailed instructions are given for\n"
	.string "various operations.$"

Help_Text_DescWhatDoesThisTermMean:: @ 81B2F00
	.string "Detailed descriptions are given for\n"
	.string "terms that appear in the game.$"

Help_Text_DescAboutThisGame:: @ 81B2F43
	.string "Detailed descriptions are given\n"
	.string "about this game.$"

Help_Text_DescTypeMatchupList:: @ 81B2F74
	.string "The matchups of  POKéMON types\n"
	.string "and moves are listed.$"

Help_Text_DescExit:: @ 81B2FA9
	.string "Select to exit the HELP System.$"

Help_Text_Greetings:: @ 81B2FC9
	.string "Greetings! This is the HELP System.\n"
	.string "Call me up whenever and wherever you\l"
	.string "need by pressing the L or R Button.\l"
	.string "The help messages change to suit the\l"
	.string "situation, so check them often, please.$"

Help_Text_PlayingForFirstTime:: @ 81B3083
	.string "I'm playing for the first time. Help!$"

Help_Text_WhatShouldIBeDoing:: @ 81B30A9
	.string "What should I be doing?$"

Help_Text_CantGetOutOfRoom:: @ 81B30C1
	.string "I can't get out of a room!$"

Help_Text_CantFindPersonIWant:: @ 81B30DC
	.string "I can't find the person I want.$"

Help_Text_TalkedToEveryoneNowWhat:: @ 81B30FC
	.string "I've talked to everyone. Now what?$"

Help_Text_SomeoneBlockingMyWay:: @ 81B311F
	.string "There's someone blocking my way!$"

Help_Text_ICantGoOn:: @ 81B3140
	.string "I can't go on!$"

Help_Text_OutOfThingsToDo:: @ 81B314F
	.string "I'm out of things to do.$"

Help_Text_WhatHappenedToItemIGot:: @ 81B3168
	.string "What happened to the item I got?$"

Help_Text_WhatAreMyAdventureBasics:: @ 81B3189
	.string "What are the basics of my adventure?$"

Help_Text_HowAreRoadsForestsDifferent:: @ 81B31AE
	.string "How are roads and forests different?$"

Help_Text_HowAreCavesDifferent:: @ 81B31D3
	.string "How are caves different?$"

Help_Text_HowDoIProgress:: @ 81B31EC
	.string "How do I progress?$"

Help_Text_WhenCanIUseItem:: @ 81B31FF
	.string "When can I use items?$"

Help_Text_WhatsABattle:: @ 81B3215
	.string "What's a battle?$"

Help_Text_HowDoIPrepareForBattle:: @ 81B3226
	.string "How do I prepare for battle?$"

Help_Text_WhatIsAMonsVitality:: @ 81B3243
	.string "What is a POKéMON's vitality?$"

Help_Text_MyMonsAreHurt:: @ 81B3261
	.string "My POKéMON are hurt!$"

Help_Text_WhatIsStatusProblem:: @ 81B3276
	.string "What is a status problem?$"

Help_Text_WhatHappensIfAllMyMonsFaint:: @ 81B3290
	.string "What happens if all my POKéMON faint?$"

Help_Text_CantCatchMons:: @ 81B32B6
	.string "I can't catch POKéMON!$"

Help_Text_RanOutOfPotions:: @ 81B32CD
	.string "I ran out of POTIONS.$"

Help_Text_CanIBuyPokeBalls:: @ 81B32E3
	.string "Can I buy POKé BALLS?$"

Help_Text_WhatsATrainer:: @ 81B32F9
	.string "What's a TRAINER?$"

Help_Text_HowDoIWinAgainstTrainer:: @ 81B330B
	.string "How do I win against a TRAINER?$"

Help_Text_WhereDoMonsAppear:: @ 81B332B
	.string "Where do POKéMON appear?$"

Help_Text_WhatAreMoves:: @ 81B3344
	.string "What are POKéMON moves?$"

Help_Text_WhatAreHiddenMoves:: @ 81B335C
	.string "What are HIDDEN moves?$"

Help_Text_WhatMovesShouldIUse:: @ 81B3373
	.string "What moves should I use?$"

Help_Text_WantToAddMoreMoves:: @ 81B338C
	.string "I want to add more moves.$"

Help_Text_WantToMakeMonStronger:: @ 81B33A6
	.string "I want to make my POKéMON stronger.$"

Help_Text_FoeMonsTooStrong:: @ 81B33CA
	.string "The foe POKéMON are too strong!$"

Help_Text_WhatDoIDoInCave:: @ 81B33EA
	.string "What do I do in a cave?$"

Help_Text_NothingIWantToKnow:: @ 81B3402
	.string "There's nothing that I want to know!$"

Help_Text_WhatsPokemonCenter:: @ 81B3427
	.string "What's a POKéMON CENTER?$"

Help_Text_WhatsPokemonMart:: @ 81B3440
	.string "What's a POKéMON MART?$"

Help_Text_WantToEndGame:: @ 81B3457
	.string "I want to end the game.$"

Help_Text_WhatsAMon:: @ 81B346F
	.string "What's a POKéMON?$"

Help_Text_WhatIsThatPersonLike:: @ 81B3481
	.string "What is that person like?$"

Help_Text_WhatDoesHiddenMoveDo:: @ 81B349B
	.string "What does a HIDDEN move do?$"

Help_Text_WhatDoIDoInSafari:: @ 81B34B7
	.string "What do I do in a SAFARI GAME?$"

Help_Text_WhatAreSafariRules:: @ 81B34D6
	.string "What are the SAFARI GAME rules?$"

Help_Text_WantToEndSafari:: @ 81B34F6
	.string "I want to end this SAFARI GAME!$"

Help_Text_WhatIsAGym:: @ 81B3516
	.string "What is a GYM?$"

Help_Text_AnswerPlayingForFirstTime:: @ 81B3525
	.string "You become the main character,\n"
	.string "exploring the world of POKéMON.\l"
	.string "By talking to people and solving\l"
	.string "mysteries, new paths will open to you.\l"
	.string "Strive for the goal together with your\l"
	.string "wonderful POKéMON.$"

Help_Text_AnswerWhatShouldIBeDoing:: @ 81B35E6
	.string "When you come across another person,\n"
	.string "go up to them and press the A Button.\l"
	.string "That will get them to talk and interact\l"
	.string "with your character. You may also\l"
	.string "examine various items and objects in\l"
	.string "the same way. Talk to people and check\l"
	.string "things often to obtain information.$"

Help_Text_AnswerCantGetOutOfRoom:: @ 81B36EB
	.string "On the stairs or the exits of a\n"
	.string "building is a red mat. Move your\l"
	.string "character to stand on top of the\l"
	.string "red mat. Press the {PLUS} Control Pad \l"
	.string "toward the stairs or the exit to\l"
	.string "advance.$"

Help_Text_AnswerCantFindPersonIWant:: @ 81B379A
	.string "This isn't something you should worry\n"
	.string "about too much.\l"
	.string "Talk to other people, check signs,\l"
	.string "check things, and so on.\l"
	.string "Sometimes, you may need to just move\l"
	.string "to a new town or place.$"

Help_Text_AnswerTalkedToEveryoneNowWhat:: @ 81B3849
	.string "Try moving on to a new road, town, or\n"
	.string "place.$"

Help_Text_AnswerSomeoneBlockingMyWay:: @ 81B3876
	.string "There could be something in the town\n"
	.string "or inside a building that is the cause.\l"
	.string "Try talking to the people in the area\l"
	.string "again. If there is a problem that they\l"
	.string "need solved, you may have to help.\l"
	.string "Afterwards, try talking to the person\l"
	.string "blocking your way again.$"

Help_Text_AnswerICantGoOn:: @ 81B3972
	.string "Try talking to people by going up to\n"
	.string "them and pressing the A Button.\l"
	.string "Also, try checking things like odd trees\l"
	.string "and strange rocks with the A Button.\l"
	.string "Press the {PLUS} Control Pad and try going\l"
	.string "to places that look impassable, too.$"

Help_Text_AnswerOutOfThingsToDo:: @ 81B3A51
	.string "Try going to places where you \n"
	.string "haven't visited yet.\l"
	.string "Also, check everything that looks\l"
	.string "suspicious by pressing the A Button.$"

Help_Text_AnswerWhatHappenedToItemIGot:: @ 81B3ACC
	.string "Any item that you are given by another\n"
	.string "character goes in your BAG.\l"
	.string "The item is automatically sorted and\l"
	.string "placed in one of three pockets.\l"
	.string "For instructions on the BAG's use,\l"
	.string "please refer to the HELP System's\l"
	.string "“How do I do this?” heading.$"

Help_Text_AnswerWhatAreMyAdventureBasics:: @ 81B3BB6
	.string "If POKéMON are hurt in battle,\n"
	.string "take them to a POKéMON CENTER and\l"
	.string "have them healed by the staff.\l"
	.string "Get in the habit of saving your\l"
	.string "game and recording your progress.\l"
	.string "Stock up on healing items at\l"
	.string "POKéMON MARTS before traveling far.$"

Help_Text_AnswerHowAreRoadsForestsDifferent:: @ 81B3C99
	.string "Forests are basically the same as\n"
	.string "roads but they can be like mazes.\l"
	.string "All forests have a way out, so don't\l"
	.string "give up if you get lost.$"

Help_Text_AnswerHowAreCavesDifferent:: @ 81B3D1B
	.string "Caves are dark and dangerous. Wild\n"
	.string "POKéMON can appear anywhere in them.\l"
	.string "If there is an emergency, rush to a\l"
	.string "POKéMON CENTER or use items.\l"
	.string "New towns await discovery beyond some\l"
	.string "caves, so don't give up.$"

Help_Text_AnswerHowDoIProgress:: @ 81B3DE3
	.string "The object of the game is to train\n"
	.string "your POKéMON and move forward.\l"
	.string "You must collect info and solve\l"
	.string "problems. For example, what do you\l"
	.string "need to get around an obstacle?\l"
	.string "What would get that impeding\l"
	.string "person out of the way?$"

Help_Text_AnswerWhenCanIUseItem:: @ 81B3EBC
	.string "There are several kinds of items.\n"
	.string "Some can be used only on the field.\l"
	.string "Some are only for use during battle.\l"
	.string "Some can be used anytime.\l"
	.string "Try using an item - if it can't be used,\l"
	.string "you will be alerted.$"

Help_Text_AnswerWhatsABattle:: @ 81B3F7F
	.string "In a battle, POKéMON try to reduce\n"
	.string "one another's vitality, expressed as\l"
	.string "HP. If a POKéMON's HP falls to zero,\l"
	.string "it faints, and the other POKéMON\l"
	.string "wins. By winning a battle, POKéMON\l"
	.string "earn EXP. Points, which help them\l"
	.string "level up (grow stronger).$"

Help_Text_AnswerHowDoIPrepareForBattle:: @ 81B406C
	.string "First, fully heal the POKéMON in your\n"
	.string "party (the POKéMON with you) at any\l"
	.string "POKéMON CENTER.\l"
	.string "You should also buy healing items for\l"
	.string "emergencies at a POKéMON MART.$"

Help_Text_AnswerWhatIsAMonsVitality:: @ 81B410B
	.string "A POKéMON's vitality is expressed in HP.\n"
	.string "If a POKéMON is hurt in battle, HP is\l"
	.string "subtracted. If its HP drops to zero,\l"
	.string "the POKéMON faints.\l"
	.string "Heal hurt or fainted POKéMON at a\l"
	.string "POKéMON CENTER or by using items.$"

Help_Text_AnswerMyMonsAreHurt:: @ 81B41D7
	.string "A POKéMON CENTER is like an inn for\n"
	.string "POKéMON. It will fully heal POKéMON of\l"
	.string "any status problems and fully restore\l"
	.string "their HP using a special machine.\l"
	.string "This service is free, so get in the\l"
	.string "habit of healing your POKéMON often.$"

Help_Text_AnswerWhatIsStatusProblem:: @ 81B42B3
	.string "A status problem refers to an ailment\n"
	.string "that is inflicted on a POKéMON by its\l"
	.string "foe's attack. These include burns,\l"
	.string "paralysis, poisoning, sleep, and\l"
	.string "freezing. These can be healed by\l"
	.string "visiting a POKéMON CENTER or using\l"
	.string "the appropriate item.$"

Help_Text_AnswerWhatHappensIfAllMyMonsFaint:: @ 81B439D
	.string "If all the POKéMON in your party\n"
	.string "(all the POKéMON with you) faint, you\l"
	.string "lose some MONEY, and you are\l"
	.string "returned home or to a POKéMON\l"
	.string "CENTER. To reduce that chance, visit\l"
	.string "POKéMON CENTERS often. Also, get\l"
	.string "in the habit of saving often.$"

Help_Text_AnswerCantCatchMons:: @ 81B4483
	.string "If a wild POKéMON escapes from a POKé\n"
	.string "BALL, it's obviously still feisty.\l"
	.string "Try reducing its HP some more, and\l"
	.string "try to weaken it with paralysis or sleep\l"
	.string "before trying to catch it.\l"
	.string "If the POKé BALL rocks for a while,\l"
	.string "the quarry is close to being caught!$"

Help_Text_AnswerRanOutOfPotions:: @ 81B457C
	.string "There are shops, known as POKéMON\n"
	.string "MARTS, that sell items.\l"
	.string "You will not find POKéMON MARTS on\l"
	.string "roads, in forests, or in caves.\l"
	.string "Stock up on needed items while you are\l"
	.string "visiting a town with a POKéMON MART.$"

Help_Text_AnswerCanIBuyPokeBalls:: @ 81B4645
	.string "You may buy POKé BALLS at any\n"
	.string "POKéMON MART in any town.\l"
	.string "You will not find POKéMON MARTS on\l"
	.string "roads, in forests, or in caves.\l"
	.string "Stock up on POKé BALLS while you are\l"
	.string "visiting a town with a POKéMON MART.$"

Help_Text_AnswerWhatsATrainer:: @ 81B470A
	.string "A TRAINER is a person who raises\n"
	.string "POKéMON through battling.\l"
	.string "TRAINERS will challenge you \l"
	.string "wherever they are - it could be on\l"
	.string "a road, in forests, caves, anywhere.\l"
	.string "If your eyes meet, you have to accept\l"
	.string "their challenge. So be careful!$"

Help_Text_AnswerHowDoIWinAgainstTrainer:: @ 81B47F0
	.string "To beat a TRAINER in battle, use\n"
	.string "POKéMON that have type advantages\l"
	.string "over the foe's POKéMON. You may also\l"
	.string "use highly trained POKéMON with\l"
	.string "overwhelming power. Outnumbering the\l"
	.string "foe's POKéMON is another obvious\l"
	.string "tactic.$"

Help_Text_AnswerWhereDoMonsAppear:: @ 81B48C6
	.string "Wild POKéMON will appear in tall grass,\n"
	.string "on roads, and in forests. They will\l"
	.string "appear anywhere in dark caves.\l"
	.string "There are no wild POKéMON or TRAINERS\l"
	.string "in towns, so they are safe places.$"

Help_Text_AnswerWhatAreMoves:: @ 81B497A
	.string "POKéMON may learn up to four different\n"
	.string "techniques, or moves. There is a great\l"
	.string "variety of moves including attacks and\l"
	.string "those with special effects. The kinds\l"
	.string "of moves that can be learned vary\l"
	.string "for each POKéMON. Some moves\l"
	.string "can be learned from machines.$"

Help_Text_AnswerWhatAreHiddenMoves:: @ 81B4A72
	.string "HIDDEN moves are those that are\n"
	.string "especially important for your\l"
	.string "adventure. To use such a move outside\l"
	.string "of battle, open the “POKéMON” MENU\l"
	.string "and make the POKéMON that knows the\l"
	.string "move use it. A fainted POKéMON may use\l"
	.string "a HIDDEN move outside of battle.$"

Help_Text_AnswerWhatMovesShouldIUse:: @ 81B4B65
	.string "Select “FIGHT,” and the MENU of moves\n"
	.string "will appear. Consider the type\l"
	.string "matchups, and use the most effective\l"
	.string "moves. You can check the effects of\l"
	.string "moves by opening “POKéMON,”\l"
	.string "picking a POKéMON, opening “SUMMARY,”\l"
	.string "then opening “POKéMON SKILLS.”$"

Help_Text_AnswerWantToAddMoreMoves:: @ 81B4C54
	.string "The most a POKéMON can learn is four\n"
	.string "moves. They are learned as the\l"
	.string "POKéMON levels up. It can also be\l"
	.string "taught a move using a TM (Technical\l"
	.string "Machine) or HM (Hidden Machine).\l"
	.string "There are also people who teach moves.$"

Help_Text_AnswerWantToMakeMonStronger:: @ 81B4D26
	.string "The key to making your POKéMON\n"
	.string "strong is to battle and win often.\l"
	.string "The EXP. (Experience) Points earned\l"
	.string "by winning battles accumulate to\l"
	.string "level up POKéMON that participated in\l"
	.string "them. Battle wild POKéMON often to\l"
	.string "level up your party.$"

Help_Text_AnswerFoeMonsTooStrong:: @ 81B4E0B
	.string "If your foes are too strong, try\n"
	.string "leveling up your POKéMON some more.\l"
	.string "Go back the way you came and battle\l"
	.string "wild POKéMON to level up your party.\l"
	.string "You may also battle TRAINERS whom you\l"
	.string "have not battled before.$"

Help_Text_AnswerWhatDoIDoInCave:: @ 81B4ED8
	.string "Unlike roads and forests, wild POKéMON\n"
	.string "can appear anywhere in caves.\l"
	.string "If your POKéMON are hurt in a cave,\l"
	.string "rush to a POKéMON CENTER or use items\l"
	.string "to heal them right away. It is very\l"
	.string "dangerous to force your luck in caves.$"

Help_Text_AnswerNothingIWantToKnow:: @ 81B4FB2
	.string "Trust your own knowledge and power.\n"
	.string "Believe in yourself and find your way!$"

Help_Text_AnswerWhatsPokemonCenter:: @ 81B4FFD
	.string "A POKéMON CENTER is identified by its\n"
	.string "red roof and a “P.C” sign. Every\l"
	.string "POKéMON CENTER offers such services as\l"
	.string "fully healing POKéMON and free PC use,\l"
	.string "making it essential for your travels.\l"
	.string "On the upper floor are facilities for\l"
	.string "linking with friends and others.$"

Help_Text_AnswerWhatsPokemonMart:: @ 81B50FF
	.string "A POKéMON MART is identified by its\n"
	.string "blue roof and a “MART” sign.\l"
	.string "Items can be bought and sold at any\l"
	.string "POKéMON MART. Some MARTS carry items\l"
	.string "that are available only in their towns.$"

Help_Text_AnswerWantToEndGame:: @ 81B51B1
	.string "You can safely end your game by\n"
	.string "selecting “SAVE” on the MENU.\l"
	.string "Once you have saved, the game can be\l"
	.string "safely turned off. When the game is\l"
	.string "turned back on, you can resume from\l"
	.string "where you last saved.$"

Help_Text_AnswerWhatsAMon:: @ 81B5272
	.string "POKéMON are living beings about which\n"
	.string "many mysteries still remain. You may\l"
	.string "see them in grass, the sea, and caves.\l"
	.string "They appear to obey the wishes of the\l"
	.string "TRAINERS that caught them.$"

Help_Text_AnswerWhatIsThatPersonLike:: @ 81B5325
	.string "Use the FAME CHECKER among the\n"
	.string "KEY ITEMS in your BAG.\l"
	.string "It may give you a hint, so try it out.$"

Help_Text_AnswerWhatDoesHiddenMoveDo:: @ 81B5382
	.string "A HIDDEN move is taught to a POKéMON\n"
	.string "using an HM (Hidden Machine).\l"
	.string "A HIDDEN move is important for helping\l"
	.string "your adventure. For example, one is\l"
	.string "used to light up dark caves. Another\l"
	.string "cuts down small trees. There is one\l"
	.string "for traveling on water, and so on.$"

Help_Text_AnswerWhatDoIDoInSafari:: @ 81B547C
	.string "Try to catch wild POKéMON by throwing\n"
	.string "the special SAFARI BALLS.\l"
	.string "You may keep any item you find, too.$"

Help_Text_AnswerWhatAreSafariRules:: @ 81B54E1
	.string "Your SAFARI GAME ends once you have\n"
	.string "traveled a certain distance or thrown\l"
	.string "all your SAFARI BALLS.\l"
	.string "Open the MENU to check the remaining\l"
	.string "number of steps and SAFARI BALLS.$"

Help_Text_AnswerWantToEndSafari:: @ 81B5589
	.string "If you would like to cut your SAFARI\n"
	.string "GAME short, open the MENU and select\l"
	.string "“RETIRE” at the top of the list.$"

Help_Text_AnswerWhatIsAGym:: @ 81B55F4
	.string "POKéMON GYMS are operated by the\n"
	.string "POKéMON LEAGUE and are training\l"
	.string "facilities for TRAINERS. They are all\l"
	.string "across the land in cities and towns.\l"
	.string "Each one is headed by a LEADER, who\l"
	.string "is a very skilled TRAINER. Beat the\l"
	.string "LEADER to collect a BADGE.$"

Help_Text_UsingPokedex:: @ 81B56E3
	.string " Using “POKéDEX”$"

Help_Text_UsingPokemon:: @ 81B56F4
	.string " Using “POKéMON”$"

Help_Text_UsingSummary:: @ 81B5705
	.string "  Using “SUMMARY”$"

Help_Text_UsingSwitch:: @ 81B5717
	.string "  Using “SWITCH”$"

Help_Text_UsingItem:: @ 81B5728
	.string "  Using “ITEM”$"

Help_Text_UsingBag:: @ 81B5737
	.string " Using “BAG”$"

Help_Text_UsingAnItem:: @ 81B5744
	.string "  Using an item$"

Help_Text_UsingKeyItem:: @ 81B5754
	.string "  Using a key item$"

Help_Text_UsingPokeBall:: @ 81B5767
	.string "  Using a POKé BALL$"

Help_Text_UsingPlayer:: @ 81B577B
	.string " Using “{PLAYER}”$"

Help_Text_UsingSave:: @ 81B5787
	.string " Using “SAVE”$"

Help_Text_UsingOption:: @ 81B5795
	.string " Using “OPTION”$"

Help_Text_UsingPotion:: @ 81B57A5
	.string "    Using a POTION$"

Help_Text_UsingTownMap:: @ 81B57B8
	.string "    Using the TOWN MAP$"

Help_Text_UsingTM:: @ 81B57CF
	.string "    Using a TM$"

Help_Text_UsingHM:: @ 81B57DE
	.string "    Using an HM$"

Help_Text_UsingMoveOutsideOfBattle:: @ 81B57EE
	.string "Using a move outside of battle$"

Help_Text_RidingBicycle:: @ 81B580D
	.string "    Riding the BICYCLE$"

Help_Text_EnteringName:: @ 81B5824
	.string "Entering a name$"

Help_Text_UsingPC:: @ 81B5834
	.string "Using a PC$"

Help_Text_UsingBillsPC:: @ 81B583F
	.string " Using “{STR_VAR_1}'S PC”$"

Help_Text_UsingWithdraw:: @ 81B5850
	.string "  Using “WITHDRAW”$"

Help_Text_UsingDeposit:: @ 81B5863
	.string "  Using “DEPOSIT”$"

Help_Text_UsingMove:: @ 81B5875
	.string "  Using “MOVE”$"

Help_Text_MovingItems:: @ 81B5884
	.string "  Moving items$"

Help_Text_UsingPlayersPC:: @ 81B5893
	.string " Using “{PLAYER}'s PC”$"

Help_Text_UsingWithdrawItem:: @ 81B58A4
	.string "  Using “WITHDRAW ITEM”$"

Help_Text_UsingDepositItem:: @ 81B58BC
	.string "  Using “DEPOSIT ITEM”$"

Help_Text_UsingMailbox:: @ 81B58D3
	.string "  Using “MAILBOX”$"

Help_Text_UsingProfOaksPC:: @ 81B58E5
	.string " Using “PROF. OAK'S PC”$"

Help_Text_OpeningMenu:: @ 81B58FD
	.string "Opening the MENU$"

Help_Text_UsingFight:: @ 81B590E
	.string " Using “FIGHT”$"

Help_Text_UsingPokemon2:: @ 81B591D
	.string " Using “POKéMON”$"

Help_Text_UsingShift:: @ 81B592E
	.string "  Using “SHIFT”$"

Help_Text_UsingSummary2:: @ 81B593E
	.string "  Using “SUMMARY”$"

Help_Text_UsingBag2:: @ 81B5950
	.string " Using “BAG”$"

Help_Text_ReadingPokedex:: @ 81B595D
	.string " Reading the “POKéDEX”$"

Help_Text_UsingHomePC:: @ 81B5974
	.string "Using the PC at home$"

Help_Text_UsingItemStorage:: @ 81B5989
	.string "Using the Item Storage System$"

Help_Text_UsingWithdrawItem2:: @ 81B59A7
	.string "  Using “WITHDRAW ITEM”$"

Help_Text_UsingDepositItem2:: @ 81B59BF
	.string "  Using “DEPOSIT ITEM”$"

Help_Text_UsingMailbox2:: @ 81B59D6
	.string "Using the MAILBOX$"

Help_Text_UsingRun:: @ 81B59E8
	.string " Using “RUN”$"

Help_Text_RegisterKeyItem:: @ 81B59F5
	.string "  “REGISTER” a key item$"

Help_Text_UsingBall:: @ 81B5A0D
	.string " Using “BALL”$"

Help_Text_UsingBait:: @ 81B5A1B
	.string " Using “BAIT”$"

Help_Text_UsingRock:: @ 81B5A29
	.string " Using “ROCK”$"

Help_Text_UsingHallOfFame:: @ 81B5A37
	.string " Using “HALL OF FAME”$"

Help_Text_HowToUsePokedex:: @ 81B5A4D
	.string "{CIRCLE_1} Select “POKéDEX” on the MENU.\n"
	.string "{CIRCLE_2} Choose POKéMON using commands such\n"
	.string "   as “POKéMON LIST,”\n"
	.string "   “HABITATS OF POKéMON,” and\n"
	.string "   “SEARCH.”\n"
	.string "{CIRCLE_3} Select a POKéMON to obtain detailed\n"
	.string "   information.$"

Help_Text_HowToUsePokemon:: @ 81B5B0C
	.string "{CIRCLE_1} Select “POKéMON” on the MENU.\n"
	.string "{CIRCLE_2} Choose a POKéMON in your party.\n"
	.string "{CIRCLE_3} Select “SUMMARY,” “SWITCH,”\n"
	.string "   or “ITEM.”$"

Help_Text_HowToUseSummary:: @ 81B5B7D
	.string "{CIRCLE_1} Select “SUMMARY.”\n"
	.string "{CIRCLE_2} Press left or right on the {PLUS} Control\n"
	.string "   Pad to check the information:\n"
	.string "   “POKéMON INFO”\n"
	.string "   “POKéMON SKILLS”\n"
	.string "   “KNOWN MOVES”$"

Help_Text_HowToUseSwitch:: @ 81B5C13
	.string "{CIRCLE_1} Choose the POKéMON you want to\n"
	.string "   switch around.\n"
	.string "{CIRCLE_2} Select “SWITCH.”\n"
	.string "{CIRCLE_3} Select the POKéMON to switch with\n"
	.string "   the first one.\n"
	.string "The POKéMON at the left of the screen\n"
	.string "will be the first one out in a battle.$"

Help_Text_HowToUseItem:: @ 81B5CDF
	.string "{CIRCLE_1} Select “ITEM.”\n"
	.string "{CIRCLE_2} Select whether you want to “GIVE”\n"
	.string "   an item to the POKéMON to hold,\n"
	.string "   or “TAKE” an item it is holding.\n"
	.string "A POKéMON can hold no more than one\n"
	.string "item!$"

Help_Text_HowToUseBag:: @ 81B5D87
	.string "{CIRCLE_1} Select “BAG” on the MENU.\n"
	.string "{CIRCLE_2} Press left or right on the {PLUS} Control\n"
	.string "   Pad to check the data headings:\n"
	.string "   “ITEMS”\n"
	.string "   “KEY ITEMS”\n"
	.string "   “POKé BALLS”\n"
	.string "   Press up or down to select an item.$"

Help_Text_HowToUseAnItem:: @ 81B5E41
	.string "{CIRCLE_1} Select the “ITEMS” POCKET.\n"
	.string "{CIRCLE_2} Press up or down on the {PLUS} Control\n"
	.string "   Pad to select an item.\n"
	.string "{CIRCLE_3} Select “USE” to use the selected\n"
	.string "   item.\n"
	.string "Some items may not be used depending\n"
	.string "on the place and/or situation.$"

Help_Text_HowToUseKeyItem:: @ 81B5F10
	.string "{CIRCLE_1} Select the “KEY ITEMS” POCKET.\n"
	.string "{CIRCLE_2} Press up or down on the {PLUS} Control\n"
	.string "   Pad to select a key item.\n"
	.string "{CIRCLE_3} Select “USE” to use the selected\n"
	.string "   key item.$"

Help_Text_HowToUsePokeBall:: @ 81B5FA6
	.string "{CIRCLE_1} While battling a wild POKéMON,\n"
	.string "   select the BAG's “POKé BALLS”\n"
	.string "   POCKET.\n"
	.string "{CIRCLE_2} Press up or down on the {PLUS} Control\n"
	.string "   Pad to select a POKé BALL.\n"
	.string "{CIRCLE_3} Select “USE” to throw the selected\n"
	.string "   POKé BALL.$"

Help_Text_HowToUsePlayer:: @ 81B606C
	.string "{CIRCLE_1} Select “{PLAYER}” on the MENU.\n"
	.string "{CIRCLE_2} Your TRAINER CARD is displayed face\n"
	.string "   up with basic information. Press the\n"
	.string "   A Button to turn the CARD over.\n"
	.string "{CIRCLE_3} A variety of data can be found on\n"
	.string "   the reverse side of the CARD.$"

Help_Text_HowToUseSave:: @ 81B6140
	.string "{CIRCLE_1} Select “SAVE” on the MENU.\n"
	.string "{CIRCLE_2} Select “YES” and your progress is\n"
	.string "   recorded in the save file.\n"
	.string "Once the game is saved, you may turn\n"
	.string "off the game. Your game can be resumed\n"
	.string "from where you saved.$"

Help_Text_HowToUseOption:: @ 81B6203
	.string "{CIRCLE_1} Select “OPTION” on the MENU.\n"
	.string "{CIRCLE_2} Press up or down on the {PLUS} Control\n"
	.string "   Pad to select an optional item, then\n"
	.string "   press left or right to alter the\n"
	.string "   settings.\n"
	.string "{CIRCLE_3} Select “CANCEL” or press the\n"
	.string "   B Button after making changes.$"

Help_Text_HowToUsePotion:: @ 81B62E4
	.string "{CIRCLE_1} Open the MENU.\n"
	.string "{CIRCLE_2} Press up or down on the {PLUS} Control\n"
	.string "   Pad and select “BAG.”\n"
	.string "{CIRCLE_3} Select “POTION” in the “ITEMS”\n"
	.string "   POCKET.\n"
	.string "{CIRCLE_4} Select “USE.”\n"
	.string "{CIRCLE_5} Select the POKéMON to be healed.$"

Help_Text_HowToUseTownMap:: @ 81B6397
	.string "{CIRCLE_1} Open the MENU.\n"
	.string "{CIRCLE_2} Press up or down on the {PLUS} Control\n"
	.string "   Pad and select “BAG.”\n"
	.string "{CIRCLE_3} Press left or right to open the\n"
	.string "   “KEY ITEMS” POCKET, then press\n"
	.string "   up or down to select “TOWN MAP.” \n"
	.string "{CIRCLE_4} Select “USE” to open the TOWN MAP.$"

Help_Text_HowToUseTM:: @ 81B6478
	.string "{CIRCLE_1} Open the MENU.\n"
	.string "{CIRCLE_2} Open the “KEY ITEMS” POCKET in the\n"
	.string "   “BAG.”\n"
	.string "{CIRCLE_3} “OPEN” the TM CASE.\n"
	.string "{CIRCLE_4} Select and “USE” a TM.\n"
	.string "{CIRCLE_5} Select a POKéMON that can learn the\n"
	.string "   move in the TM.$"

Help_Text_HowToUseHM:: @ 81B6525
	.string "{CIRCLE_1} Open the MENU.\n"
	.string "{CIRCLE_2} Open the “KEY ITEMS” POCKET in the\n"
	.string "   “BAG.”\n"
	.string "{CIRCLE_3} “OPEN” the TM CASE.\n"
	.string "{CIRCLE_4} Select and “USE” an HM.\n"
	.string "{CIRCLE_5} Select a POKéMON that can learn it.\n"
	.string "HMs are hard to remove, so be careful!$"

Help_Text_HowToUseMoveOutsideOfBattle:: @ 81B65E7
	.string "{CIRCLE_1} Open the MENU.\n"
	.string "{CIRCLE_2} Select “POKéMON.”\n"
	.string "{CIRCLE_3} Select a POKéMON that knows an\n"
	.string "   HM move. The usable HM move(s)\n"
	.string "   will be shown in blue. Select and\n"
	.string "   use the desired move to destroy an\n"
	.string "   obstacle, fly, surf, etc.$"

Help_Text_HowToRideBicycle:: @ 81B66BA
	.string "{CIRCLE_1} Open the MENU. Open the\n"
	.string "   “KEY ITEMS” POCKET in the “BAG”\n"
	.string "   and select the “BICYCLE.”\n"
	.string "{CIRCLE_2} The BICYCLE can be ridden by\n"
	.string "   selecting “USE.” You may also\n"
	.string "   “REGISTER” it for instant use by\n"
	.string "   pressing SELECT.$"

Help_Text_HowToEnterName:: @ 81B678E
	.string "{CIRCLE_1} Move the cursor to the letter you\n"
	.string "   want with the {PLUS} Control Pad, then\n"
	.string "   press the A Button to enter it.\n"
	.string "{CIRCLE_2} Press the B Button to back up.\n"
	.string "{CIRCLE_3} Press SELECT to switch between\n"
	.string "   uppercase and lowercase letters.\n"
	.string "{CIRCLE_4} Press the A Button on “OK.”$"

Help_Text_HowToUsePC:: @ 81B6883
	.string "{CIRCLE_1} Go to any POKéMON CENTER, go up\n"
	.string "   to the PC, then press the A Button.$"

Help_Text_HowToUseBillsPC:: @ 81B68CD
	.string "{CIRCLE_1} Select “{STR_VAR_1}'S PC” on the PC.\n"
	.string "{CIRCLE_2} Select from one of the top three\n"
	.string "   MENU items to access the POKéMON\n"
	.string "   Storage System.\n"
	.string "If you catch a POKéMON when you have\n"
	.string "six in your party, the POKéMON is sent\n"
	.string "automatically to a BOX in the System!$"

Help_Text_HowToUseWithdraw:: @ 81B69B9
	.string "{CIRCLE_1} Select a POKéMON in the open BOX\n"
	.string "   with the {PLUS} Control Pad.\n"
	.string "{CIRCLE_2} Select “WITHDRAW” to remove the\n"
	.string "   POKéMON from the BOX and add it to\n"
	.string "   your party.\n"
	.string "You may not withdraw a POKéMON if you\n"
	.string "already have six POKéMON with you!$"

Help_Text_HowToUseDeposit:: @ 81B6A9A
	.string "{CIRCLE_1} Select a POKéMON in your party with\n"
	.string "   the {PLUS} Control Pad.\n"
	.string "{CIRCLE_2} Select “DEPOSIT.”\n"
	.string "{CIRCLE_3} Select the BOX, then press the\n"
	.string "   A Button to store the POKéMON.\n"
	.string "If you have only one POKéMON with you,\n"
	.string "it may not be stored!$"

Help_Text_HowToUseMove:: @ 81B6B6E
	.string "{CIRCLE_1} Select a POKéMON in the open BOX.\n"
	.string "{CIRCLE_2} Pick up the POKéMON by selecting\n"
	.string "   “MOVE” and move it anywhere with\n"
	.string "   the {PLUS} Control Pad.\n"
	.string "{CIRCLE_3} Move the POKéMON to the BOX name\n"
	.string "   and press left or right to move it\n"
	.string "   to another BOX.$"

Help_Text_HowToMoveItems:: @ 81B6C4F
	.string "{CIRCLE_1} Faintly shown POKéMON can be made\n"
	.string "   to hold an item by selecting it and\n"
	.string "   pressing the A Button.\n"
	.string "{CIRCLE_2} Clearly shown POKéMON can be made\n"
	.string "   to give the item they are holding to\n"
	.string "   another POKéMON, or return the item\n"
	.string "   to the BAG with the A Button.$"

Help_Text_HowToUsePlayersPC:: @ 81B6D4A
	.string "{CIRCLE_1} Select “{PLAYER}'s PC” on the PC.\n"
	.string "{CIRCLE_2} Select either “ITEM STORAGE” or\n"
	.string "   “MAILBOX.”\n"
	.string "You may store things in your own PC\n"
	.string "if your BAG is full. You may also\n"
	.string "withdraw items stored in your PC.$"

Help_Text_HowToUseWithdrawItem:: @ 81B6E02
	.string "{CIRCLE_1} Select “WITHDRAW ITEM.”\n"
	.string "{CIRCLE_2} Select the item to be withdrawn.\n"
	.string "{CIRCLE_3} The item can be withdrawn and\n"
	.string "   placed in the BAG's ITEMS POCKET.\n"
	.string "   It may also be directly given to a\n"
	.string "   POKéMON to hold.$"

Help_Text_HowToUseDepositItem:: @ 81B6EC1
	.string "{CIRCLE_1} Select “DEPOSIT ITEM.”\n"
	.string "{CIRCLE_2} Select the item in the BAG to be\n"
	.string "   deposited using the {PLUS} Control Pad.\n"
	.string "{CIRCLE_3} If there is more than one \n"
	.string "   item to be deposited, enter the\n"
	.string "   quantity with the {PLUS} Control Pad,\n"
	.string "   then press the A Button.$"

Help_Text_HowToUseMailbox:: @ 81B6FA8
	.string "When MAIL is taken from a POKéMON,\n"
	.string "it is moved to the MAILBOX. If it has\n"
	.string "no MAIL, the MAILBOX can't be used.\n"
	.string "{CIRCLE_1} Select “{PLAYER}'S PC” on the PC.\n"
	.string "{CIRCLE_2} Select “MAILBOX” to read MAIL or\n"
	.string "   make a POKéMON hold MAIL.$"

Help_Text_HowToUseProfOaksPC:: @ 81B7075
	.string "{CIRCLE_1} Select “PROF. OAK'S PC” on the PC.\n"
	.string "{CIRCLE_2} PROF. OAK will evaluate your\n"
	.string "   POKéDEX.\n"
	.string "His evaluations should give you hints\n"
	.string "for catching more POKéMON!$"

Help_Text_HowToOpenMenu:: @ 81B7108
	.string "{CIRCLE_1} Press START.\n"
	.string "{CIRCLE_2} The MENU will open on the right.\n"
	.string "{CIRCLE_3} Depending on the situation, the MENU\n"
	.string "   may feature different headings.\n"
	.string "The MENU will not open in certain\n"
	.string "situations such as when talking, doing\n"
	.string "something, battling, etc.$"

Help_Text_HowToUseFight:: @ 81B71EA
	.string "{CIRCLE_1} Select “FIGHT.”\n"
	.string "{CIRCLE_2} Select one of the moves shown,\n"
	.string "and that move will be used!$"

Help_Text_HowToUsePokemon2:: @ 81B723B
	.string "{CIRCLE_1} Select “POKéMON.”\n"
	.string "{CIRCLE_2} Select the POKéMON in your party\n"
	.string "   that you want to use.\n"
	.string "{CIRCLE_3} If you have two or more POKéMON\n"
	.string "   with you, they may be switched by\n"
	.string "   selecting “SHIFT.” Check POKéMON\n"
	.string "   data by selecting “SUMMARY.”$"

Help_Text_HowToUseShift:: @ 81B7319
	.string "This command switches the POKéMON in\n"
	.string "battle with another one in your party.\n"
	.string "{CIRCLE_1} Select the POKéMON to be sent out.\n"
	.string "{CIRCLE_2} Select “SHIFT.”\n"
	.string "{CIRCLE_3} The selected POKéMON will switch\n"
	.string "   places with the POKéMON in battle!$"

Help_Text_HowToUseSummary2:: @ 81B73E8
	.string "{CIRCLE_1} Select “SUMMARY.”\n"
	.string "{CIRCLE_2} Press left or right on the {PLUS} Control\n"
	.string "   Pad to check the information:\n"
	.string "   “POKéMON INFO”\n"
	.string "   “POKéMON SKILLS”\n"
	.string "   “KNOWN MOVES”$"

Help_Text_HowToUseBag2:: @ 81B747E
	.string "{CIRCLE_1} Select “BAG.”\n"
	.string "{CIRCLE_2} Press left or right on the {PLUS} Control\n"
	.string "   Pad to check the data headings:\n"
	.string "   “ITEMS”\n"
	.string "   “KEY ITEMS”\n"
	.string "   “POKé BALLS”\n"
	.string "   Press up or down to select an item.$"

Help_Text_HowToReadPokedex:: @ 81B752C
	.string "{CIRCLE_1} POKéMON that you have caught are\n"
	.string "   identified by a POKé BALL mark on\n"
	.string "   the POKéDEX list.\n"
	.string "{CIRCLE_2} A caught POKéMON will provide a\n"
	.string "   large amount of data.\n"
	.if REVISION < 1
	.string "{CIRCLE_3} Select “AREA” to display the TOWN\n"
	.string "   MAP with the POKéMON's habitat(s).$"
	.else
	.string "{CIRCLE_3} Select “NEXT DATA” to display the\n"
	.string "   TOWN MAP with its habitat(s).$"
	.endif

Help_Text_HowToUseHomePC:: @ 81B7611
	.string "{CIRCLE_1} Go up to the PC at home, then press\n"
	.string "   the A Button.\n"
	.string "{CIRCLE_2} The PC will turn on.\n"
	.string "{CIRCLE_3} Select either “ITEM STORAGE” or\n"
	.string "   “MAILBOX.”$"

Help_Text_HowToUseItemStorage:: @ 81B7692
	.string "{CIRCLE_1} Select “WITHDRAW ITEM” to withdraw\n"
	.string "   an item stored on your PC.\n"
	.string "{CIRCLE_2} Select “DEPOSIT ITEM” to put \n"
	.string "   an item from your BAG into your PC.$"

Help_Text_HowToUseWithdrawItem2:: @ 81B771E
	.string "{CIRCLE_1} Select “WITHDRAW ITEM.”\n"
	.string "{CIRCLE_2} Select the item to be withdrawn.\n"
	.string "{CIRCLE_3} The item can be withdrawn and\n"
	.string "   placed in the BAG's ITEMS POCKET.\n"
	.string "   It may also be directly given to a\n"
	.string "   POKéMON to hold.$"

Help_Text_HowToUseDepositItem2:: @ 81B77DD
	.string "{CIRCLE_1} Select “DEPOSIT ITEM.”\n"
	.string "{CIRCLE_2} Select the item in the BAG to be\n"
	.string "   deposited using the {PLUS} Control Pad.\n"
	.string "{CIRCLE_3} If there is nothing in the BAG, this\n"
	.string "   command can't be used!$"

Help_Text_HowToUseMailbox2:: @ 81B7884
	.string "When MAIL is taken from a POKéMON,\n"
	.string "it is moved to the MAILBOX. If it has\n"
	.string "no MAIL, the MAILBOX can't be used.\n"
	.string "{CIRCLE_1} Select MAIL by name to read it or\n"
	.string "   make a POKéMON hold it.$"

Help_Text_HowToUseRun:: @ 81B7931
	.string "You may not “RUN” from a TRAINER\n"
	.string "battle!\n"
	.string "{CIRCLE_1} You may “RUN” from a wild POKéMON.\n"
	.string "{CIRCLE_2} Your chance of escape is improved\n"
	.string "   if your POKéMON in battle is fast.$"

Help_Text_HowToRegisterKeyItem:: @ 81B79CB
	.string "You may “REGISTER” a key item for\n"
	.string "instant use by pressing SELECT!\n"
	.string "{CIRCLE_1} Open the “KEY ITEMS” POCKET.\n"
	.string "{CIRCLE_2} Select the key item, then select\n"
	.string "   “REGISTER.”$"

Help_Text_HowToUseBall:: @ 81B7A60
	.string "{CIRCLE_1} Select to throw the special POKé\n"
	.string "   BALL used only in the SAFARI ZONE.\n"
	.string "When wild POKéMON appear, throw lots\n"
	.string "of SAFARI BALLS to catch them!$"

Help_Text_HowToUseBait:: @ 81B7AEE
	.string "{CIRCLE_1} Select to throw the special food\n"
	.string "   used only in the SAFARI ZONE.\n"
	.string "It is POKéMON food rolled up into\n"
	.string "a ball for easy eating. When BAIT is\n"
	.string "thrown, the wild POKéMON may get\n"
	.string "attracted by it, and may not flee!$"

Help_Text_HowToUseRock:: @ 81B7BBE
	.string "{CIRCLE_1} Select to throw a rock lying on\n"
	.string "   the ground in the SAFARI ZONE.\n"
	.string "Throwing a rock at a POKéMON may \n"
	.string "make it run away, but it becomes easier\n"
	.string "to catch!$"

Help_Text_HowToUseHallOfFame:: @ 81B7C57
	.string "{CIRCLE_1} Select “HALL OF FAME” on the PC.\n"
	.string "{CIRCLE_2} The POKéMON that have entered the\n"
	.string "   HALL OF FAME can be examined.$"

Help_Text_HP:: @ 81B7CC1
	.string "HP$"

Help_Text_EXP:: @ 81B7CC4
	.string "EXP. {LEFT_PAREN}EXP. Points{RIGHT_PAREN}$"

Help_Text_Moves:: @ 81B7CD9
	.string "MOVES$"

Help_Text_Attack:: @ 81B7CDF
	.string "ATTACK$"

Help_Text_Defense:: @ 81B7CE6
	.string "DEFENSE$"

Help_Text_SpAtk:: @ 81B7CEE
	.string "SP. ATK$"

Help_Text_SpDef:: @ 81B7CF6
	.string "SP. DEF$"

Help_Text_Speed:: @ 81B7CFE
	.string "SPEED$"

Help_Text_Level:: @ 81B7D04
	.string "Lv. {LEFT_PAREN}Level{RIGHT_PAREN}$"

Help_Text_Type:: @ 81B7D12
	.string "TYPE$"

Help_Text_OT:: @ 81B7D17
	.string "OT$"

Help_Text_Item:: @ 81B7D1A
	.string "ITEM$"

Help_Text_Ability:: @ 81B7D1F
	.string "ABILITY$"

Help_Text_Money:: @ 81B7D27
	.string "MONEY$"

Help_Text_MoveType:: @ 81B7D2D
	.string "MOVE TYPE$"

Help_Text_Nature:: @ 81B7D37
	.string "NATURE$"

Help_Text_IDNo:: @ 81B7D3E
	.string "ID No.$"

Help_Text_PP:: @ 81B7D45
	.string "PP$"

Help_Text_Power:: @ 81B7D48
	.string "POWER$"

Help_Text_Accuracy:: @ 81B7D4E
	.string "ACCURACY$"

Help_Text_FNT:: @ 81B7D57
	.string "FNT$"

Help_Text_Items:: @ 81B7D5B
	.string "ITEMS$"

Help_Text_KeyItems:: @ 81B7D61
	.string "KEY ITEMS$"

Help_Text_PokeBalls:: @ 81B7D6B
	.string "POKé BALLS$"

Help_Text_Pokedex:: @ 81B7D76
	.string "POKéDEX$"

Help_Text_PlayTime:: @ 81B7D7E
	.string "PLAY TIME$"

Help_Text_Badges:: @ 81B7D88
	.string "BADGES$"

Help_Text_TextSpeed:: @ 81B7D8F
	.string "TEXT SPEED$"

Help_Text_BattleScene:: @ 81B7D9A
	.string "BATTLE SCENE$"

Help_Text_BattleStyle:: @ 81B7DA7
	.string "BATTLE STYLE$"

Help_Text_Sound:: @ 81B7DB4
	.string "SOUND$"

Help_Text_ButtonMode:: @ 81B7DBA
	.string "BUTTON MODE$"

Help_Text_Frame:: @ 81B7DC6
	.string "FRAME$"

Help_Text_Cancel2:: @ 81B7DCC
	.string "CANCEL$"

Help_Text_TM:: @ 81B7DD3
	.string "TM$"

Help_Text_HM:: @ 81B7DD6
	.string "HM$"

Help_Text_HMMove:: @ 81B7DD9
	.string "HM MOVE$"

Help_Text_Evolution:: @ 81B7DE1
	.string "EVOLUTION$"

Help_Text_StatusProblem:: @ 81B7DEB
	.string "STATUS PROBLEM$"

Help_Text_Pokemon:: @ 81B7DFA
	.string "POKéMON$"

Help_Text_IDNo2:: @ 81B7E02
	.string "ID No.$"

Help_Text_Money2:: @ 81B7E09
	.string "MONEY$"

Help_Text_Badges2:: @ 81B7E0F
	.string "BADGES$"

Help_Text_DefineHP:: @ 81B7E16
	.string "HP indicates a POKéMON's vitality.\n"
	.string "If a POKéMON's HP drops to zero, it\l"
	.string "faints and is unable to battle.\l"
	.string "So, the key in battle is to try to\l"
	.string "reduce the foe's HP to zero.\l"
	.string "If your POKéMON are hurt, restore their\l"
	.string "HP at a POKéMON CENTER or use items.$"

Help_Text_DefineEXP:: @ 81B7F0A
	.string "EXP. Points stands for “Experience\n"
	.string "Points.” POKéMON gain EXP. Points by\l"
	.string "participating in winning battles.\l"
	.string "When a POKéMON accumulates sufficient\l"
	.string "EXP. Points, it levels up. The EXP. Bar\l"
	.string "indicates accumulated EXP. Points.\l"
	.string "It returns to zero upon leveling up.$"

Help_Text_DefineMoves:: @ 81B800A
	.string "POKéMON may learn up to four different\n"
	.string "moves. There are many kinds of moves\l"
	.string "including attacks and those with\l"
	.string "special effects. The kinds of moves\l"
	.string "that can be learned vary for each\l"
	.string "POKéMON. Some moves can be learned\l"
	.string "from items.$"

Help_Text_DefineAttack:: @ 81B80EC
	.string "ATTACK indicates the power of an\n"
	.string "offensive move. The higher this stat,\l"
	.string "the more powerful the move.\l"
	.string "It is applied for the following move\l"
	.string "types: NORMAL, POISON, GROUND,\l"
	.string "FLYING, BUG, FIGHTING, ROCK, GHOST,\l"
	.string "and STEEL.$"

Help_Text_DefineDefense:: @ 81B81C2
	.string "DEFENSE indicates the resistance a\n"
	.string "POKéMON has against physical attacks.\l"
	.string "The higher this stat, the less damage\l"
	.string "sustained from a foe's physical hit.$"

Help_Text_DefineSpAtk:: @ 81B8256
	.string "SP. ATK (Special Attack) indicates the\n"
	.string "power of a special attack move.\l"
	.string "The higher this stat, the more powerful\l"
	.string "the special attack move.\l"
	.string "It is applied for the following move\l"
	.string "types: FIRE, WATER, ELECTRIC, GRASS,\l"
	.string "ICE, PSYCHIC, DRAGON, and DARK.$"

Help_Text_DefineSpDef:: @ 81B8348
	.string "SP. DEF (Special Defense) indicates\n"
	.string "the resistance a POKéMON has against\l"
	.string "special attacks.\l"
	.string "The higher this stat, the less damage\l"
	.string "sustained from a foe's special attack.$"

Help_Text_DefineSpeed:: @ 81B83EF
	.string "SPEED indicates the agility of a\n"
	.string "POKéMON. If this stat exceeds the foe's\l"
	.string "in battle, the POKéMON can make a move\l"
	.string "before its slower opponent.$"

Help_Text_DefineLevel:: @ 81B847B
	.string "Lv. (Level) indicates the growth and\n"
	.string "strength of a POKéMON.\l"
	.string "In general, when a POKéMON levels up,\l"
	.string "its stats such as HP, ATTACK, and\l"
	.string "DEFENSE rise, making it stronger.\l"
	.string "POKéMON may learn a new move upon\l"
	.string "leveling up.$"

Help_Text_DefineType:: @ 81B8550
	.string "POKéMON and moves are classified by\n"
	.string "type. Every type has advantageous and\l"
	.string "disadvantageous matchups against\l"
	.string "other types. For example, like a rock-\l"
	.string "paper-scissors game, the WATER type is\l"
	.string "strong against the FIRE type and weak\l"
	.string "against the GRASS type.$"

Help_Text_DefineOT:: @ 81B8647
	.string "OT stands for “Original TRAINER,”\n"
	.string "the first TRAINER to have caught the\l"
	.string "selected POKéMON.\l"
	.string "Even if the POKéMON is traded, the OT\l"
	.string "name will remain unchanged.$"

Help_Text_DefineItem:: @ 81B86E2
	.string "All POKéMON can be made to hold one\n"
	.string "item each. Some items will be used by\l"
	.string "the POKéMON automatically in certain\l"
	.string "situations. To make a POKéMON hold an\l"
	.string "item, select the item from the BAG and\l"
	.string "“GIVE” it to the POKéMON.$"

Help_Text_DefineAbility:: @ 81B87B8
	.string "All POKéMON have a special ABILITY.\n"
	.string "There are many different kinds of these\l"
	.string "abilities, some used in battle, some\l"
	.string "elsewhere. The abilities differ from\l"
	.string "species to species. Some species may\l"
	.string "have more than one kind of ability.$"

Help_Text_DefineMoney:: @ 81B8897
	.string "Whenever you win a battle against a\n"
	.string "TRAINER, you are given prize money.\l"
	.string "Save up your prize money so you can\l"
	.string "enjoy shopping at POKéMON MARTS!$"

Help_Text_DefineMoveType:: @ 81B8924
	.string "Moves are also classified by types.\n"
	.string "If a POKéMON of a certain type uses\l"
	.string "a move of the same type, the move's\l"
	.string "power is boosted. If the move's type\l"
	.string "has a matchup advantage against the\l"
	.string "target, its effectiveness is also\l"
	.string "boosted.$"

Help_Text_DefineNature:: @ 81B8A04
	.string "All POKéMON have a personality,\n"
	.string "or “NATURE.” The POKéMON's\l"
	.string "nature appears to affect how the\l"
	.string "POKéMON will grow upon leveling up.$"

Help_Text_DefineIDNo:: @ 81B8A84
	.string "The ID No. is a special number assigned\n"
	.string "specifically to you as a TRAINER.\l"
	.string "Together with the OT name, the ID No.\l"
	.string "is used to precisely identify the\l"
	.string "Original TRAINER.\l"
	.string "The ID No. does not change even if the\l"
	.string "POKéMON is traded.$"

Help_Text_DefinePP:: @ 81B8B62
	.string "PP stands for “Power Points.”\n"
	.string "It indicates the number of times a\l"
	.string "certain move can be used in battle.\l"
	.string "Like HP, PP can be restored by visiting\l"
	.string "a POKéMON CENTER or using certain\l"
	.string "items.$"

Help_Text_DefinePower:: @ 81B8C18
	.string "POWER indicates the strength of an\n"
	.string "attack. The higher this number, the\l"
	.string "greater the damage that can be\l"
	.string "inflicted on the foe!$"

Help_Text_DefineAccuracy:: @ 81B8C94
	.string "ACCURACY indicates the probability of\n"
	.string "the move hitting the foe.\l"
	.string "The higher this number, the more likely\l"
	.string "the move will strike the target.$"

Help_Text_DefineFNT:: @ 81B8D1D
	.string "FNT stands for “fainted.”\n"
	.string "A POKéMON faints if its HP is reduced\l"
	.string "to zero. It becomes incapable of taking\l"
	.string "part in battle.\l"
	.string "Restore a fainted POKéMON at a POKéMON\l"
	.string "CENTER, or use an item.$"

Help_Text_DefineItems:: @ 81B8DD4
	.string "Ordinary items bought at any POKéMON\n"
	.string "MART are placed in the ITEMS POCKET.\l"
	.string "Items may be used, given to a POKéMON\l"
	.string "to hold, or tossed out as garbage.$"

Help_Text_DefineKeyItems:: @ 81B8E67
	.string "Important items that you find or \n"
	.string "receive from people are placed in the\l"
	.string "KEY ITEMS POCKET.\l"
	.string "Key items may be used, or registered\l"
	.string "for use instantly with SELECT. Once\l"
	.string "registered, the item can be used\l"
	.string "without opening the MENU and BAG.$"

Help_Text_DefinePokeBalls:: @ 81B8F4D
	.string "POKé BALLS, which are used for\n"
	.string "catching wild POKéMON, are placed in\l"
	.string "the POKé BALLS POCKET.\l"
	.string "POKé BALLS may be bought at POKéMON\l"
	.string "MARTS. They may be used, given to a\l"
	.string "POKéMON to hold, or tossed out as\l"
	.string "garbage.$"

Help_Text_DefinePokedex:: @ 81B901B
	.string "This indicates the number of species of\n"
	.string "POKéMON you have caught and/or\l"
	.string "evolved to fill the POKéDEX.\l"
	.string "Try hard to catch all sorts of\l"
	.string "POKéMON!$"

Help_Text_DefinePlayTime:: @ 81B90A7
	.string "This is the total amount of time that\n"
	.string "you have played this game.$"

Help_Text_DefineBadges:: @ 81B90E8
	.string "The POKéMON LEAGUE BADGES that you\n"
	.string "have won are registered and shown.\l"
	.string "Earn BADGES by defeating GYM LEADERS\l"
	.string "in various cities and towns.$"

Help_Text_DefineTextSpeed:: @ 81B9170
	.string "You can adjust how quickly the text is\n"
	.string "displayed. Choose one: SLOW, MID,\l"
	.string "or FAST.$"

Help_Text_DefineBattleScene:: @ 81B91C2
	.string "You can choose to turn the battle\n"
	.string "animation ON or OFF.$"

Help_Text_DefineBattleStyle:: @ 81B91F9
	.string "You can choose whether or not a\n"
	.string "TRAINER can switch a POKéMON after\l"
	.string "it has made its foe faint.\l"
	.string "Set to “SHIFT” if you would like the\l"
	.string "chance to switch a POKéMON after it\l"
	.string "has made its foe faint.$"

Help_Text_DefineSound:: @ 81B92B8
	.string "You can choose between MONO and\n"
	.string "STEREO sound output.$"

Help_Text_DefineButtonMode:: @ 81B92ED
	.string "Set to “HELP” to display help messages\n"
	.string "by pressing the L or R Button.\l"
	.string "Set to “LR” to enable the switching\l"
	.string "of the POKéDEX pages and BAG POCKETS\l"
	.string "using the L and R Buttons.\l"
	.string "Set to “L=A” to make the L Button\l"
	.string "work the same as the A Button.$"

Help_Text_DefineFrame:: @ 81B93D8
	.string "You may choose the design of the frame\n"
	.string "around certain menus. Try them out and\l"
	.string "see what you like.$"

Help_Text_DefineCancel2:: @ 81B9439
	.string "The settings will be changed to the\n"
	.string "selections shown in red, and you will\l"
	.string "return to the MENU.$"

Help_Text_DefineTM:: @ 81B9497
	.string "A TM (Technical Machine) is a device\n"
	.string "used to teach a move to a POKéMON.\l"
	.string "There are many different kinds.\l"
	.string "Moves can be taught only to those\l"
	.string "POKéMON capable of using them.\l"
	.string "A TM breaks after a single use.$"

Help_Text_DefineHM:: @ 81B9560
	.string "An HM (Hidden Machine) is a device used\n"
	.string "to teach a HIDDEN move to a POKéMON.\l"
	.string "A HIDDEN move can be taught only to\l"
	.string "those POKéMON capable of using it.\l"
	.string "Unlike a TM, an HM can be used over\l"
	.string "and over. A HIDDEN move can be tough\l"
	.string "for a POKéMON to forget.$"

Help_Text_DefineHMMove:: @ 81B9656
	.string "HIDDEN moves are those that are\n"
	.string "especially important for your\l"
	.string "adventure. To use such a move outside\l"
	.string "of battle, open the “POKéMON” MENU\l"
	.string "and make the POKéMON that knows the\l"
	.string "move use it. A fainted POKéMON may use\l"
	.string "a HIDDEN move outside of battle.$"

Help_Text_DefineEvolution:: @ 81B9749
	.string "Among POKéMON, there are some that\n"
	.string "undergo major changes (evolution) upon\l"
	.string "growing to certain levels. Evolution\l"
	.string "causes a POKéMON to alter form, change\l"
	.string "its name, and perhaps change the moves\l"
	.string "it may learn. Some POKéMON evolve\l"
	.string "due to reasons other than leveling up.$"

Help_Text_DefineStatusProblem:: @ 81B984F
	.string "Status problems include:\n"
	.string "Sleep: Can't use moves.\l"
	.string "Poison: Causes steady HP loss.\l"
	.string "Paralysis: May prevent moves.\l"
	.string "Burn: HP loss and lowers ATTACK.\l"
	.string "Freeze: Can't use moves.\l"
	.string "These can be healed with items, etc.$"

Help_Text_DefinePokemon:: @ 81B991C
	.string "POKéMON is a name given to describe\n"
	.string "wondrous creatures that inhabit all\l"
	.string "corners of this world.\l"
	.string "People raise POKéMON to be their pets,\l"
	.string "use them for battling, and so on.$"

Help_Text_DefineIDNo2:: @ 81B99C4
	.string "The ID No. is a special number assigned\n"
	.string "specifically to you as a TRAINER.\l"
	.string "Together with the OT name, the ID No.\l"
	.string "is used to precisely identify the\l"
	.string "Original TRAINER.\l"
	.string "The ID No. does not change even if the\l"
	.string "POKéMON is traded.$"

Help_Text_DefineMoney2:: @ 81B9AA2
	.string "Whenever you win a battle against a\n"
	.string "TRAINER, you are given prize money.\l"
	.string "Save up your prize money so you can\l"
	.string "enjoy shopping at POKéMON MARTS!$"

Help_Text_DefineBadges2:: @ 81B9B2F
	.string "This indicates the number of POKéMON\n"
	.string "LEAGUE BADGES that you have won.\l"
	.string "Earn BADGES by defeating GYM LEADERS\l"
	.string "in various cities and towns.$"

Help_Text_TheHelpSystem:: @ 81B9BB7
	.string "The HELP System$"

Help_Text_TheGame:: @ 81B9BC7
	.string "The game$"

Help_Text_WirelessAdapter:: @ 81B9BD0
	.string "Wireless Adapter$"

Help_Text_GameFundamentals1:: @ 81B9BE1
	.string "Game fundamentals 1$"

Help_Text_GameFundamentals2:: @ 81B9BF5
	.string "Game fundamentals 2$"

Help_Text_GameFundamentals3:: @ 81B9C09
	.string "Game fundamentals 3$"

Help_Text_WhatArePokemon:: @ 81B9C1D
	.string "What are POKéMON?$"

Help_Text_DescTheHelpSystem:: @ 81B9C2F
	.string "The help messages change depending on\n"
	.string "how much you have progressed in the\l"
	.string "game. They are designed to support you\l"
	.string "when you need them. If there is\l"
	.string "anything that you don't understand,\l"
	.string "please look up the HELP System!$"

Help_Text_DescTheGame:: @ 81B9D04
	.string "You become the main character to\n"
	.string "explore the world of POKéMON!\l"
	.string "By talking to people and solving\l"
	.string "mysteries, new paths will open to you.\l"
	.string "Strive for the goal together with your\l"
	.string "wonderful POKéMON!$"

Help_Text_DescWirelessAdapter:: @ 81B9DC5
	.string "This game communicates over a wireless\n"
	.string "link using the Wireless Adapter.\p"
	.string "Go wireless anywhere, anytime, and\n"
	.string "with anybody!\p"
	.string "Try playing with the Wireless Adapter\n"
	.string "always attached!$"

Help_Text_DescGameFundamentals1:: @ 81B9E75
	.string "Visit every city and town, travel every\n"
	.string "road, explore every cave, and face\l"
	.string "every challenge as you strive to\l"
	.string "become the greatest TRAINER of\l"
	.string "POKéMON!$"

Help_Text_DescGameFundamentals2:: @ 81B9F09
	.string "On your adventure, you will be faced\n"
	.string "with many obstacles. Every obstacle\l"
	.string "can be overcome by doing something\l"
	.string "or by solving mysteries. Some obstacles\l"
	.string "are affected by something that happens\l"
	.string "far away.$"

Help_Text_DescGameFundamentals3:: @ 81B9FCE
	.string "Some of the obstacles in your way can\n"
	.string "be removed once your POKéMON learn\l"
	.string "specific moves.$"

Help_Text_DescWhatArePokemon:: @ 81BA027
	.string "POKéMON are wondrous creatures that\n"
	.string "are shrouded in mystery. You may meet\l"
	.string "them all over the world…in tall\l"
	.string "grass, caves, the sea, and more.\l"
	.string "They appear to grow obedient to the\l"
	.string "TRAINERS that caught them.$"

Help_Text_UsingTypeMatchupList:: @ 81BA0F1
	.string "Using the Type Matchup List$"

Help_Text_OwnMoveDark:: @ 81BA10D
	.string "Own move type: DARK$"

Help_Text_OwnPokemonDark:: @ 81BA121
	.string "Own POKéMON type: DARK$"

Help_Text_OwnMoveRock:: @ 81BA138
	.string "Own move type: ROCK$"

Help_Text_OwnPokemonRock:: @ 81BA14C
	.string "Own POKéMON type: ROCK$"

Help_Text_OwnMovePsychic:: @ 81BA163
	.string "Own move type: PSYCHIC$"

Help_Text_OwnPokemonPsychic:: @ 81BA17A
	.string "Own POKéMON type: PSYCHIC$"

Help_Text_OwnMoveFighting:: @ 81BA194
	.string "Own move type: FIGHTING$"

Help_Text_OwnPokemonFighting:: @ 81BA1AC
	.string "Own POKéMON type: FIGHTING$"

Help_Text_OwnMoveGrass:: @ 81BA1C7
	.string "Own move type: GRASS$"

Help_Text_OwnPokemonGrass:: @ 81BA1DC
	.string "Own POKéMON type: GRASS$"

Help_Text_OwnMoveGhost:: @ 81BA1F4
	.string "Own move type: GHOST$"

Help_Text_OwnPokemonGhost:: @ 81BA209
	.string "Own POKéMON type: GHOST$"

Help_Text_OwnMoveIce:: @ 81BA221
	.string "Own move type: ICE$"

Help_Text_OwnPokemonIce:: @ 81BA234
	.string "Own POKéMON type: ICE$"

Help_Text_OwnMoveGround:: @ 81BA24A
	.string "Own move type: GROUND$"

Help_Text_OwnPokemonGround:: @ 81BA260
	.string "Own POKéMON type: GROUND$"

Help_Text_OwnMoveElectric:: @ 81BA279
	.string "Own move type: ELECTRIC$"

Help_Text_OwnPokemonElectric:: @ 81BA291
	.string "Own POKéMON type: ELECTRIC$"

Help_Text_OwnMovePoison:: @ 81BA2AC
	.string "Own move type: POISON$"

Help_Text_OwnPokemonPoison:: @ 81BA2C2
	.string "Own POKéMON type: POISON$"

Help_Text_OwnMoveDragon:: @ 81BA2DB
	.string "Own move type: DRAGON$"

Help_Text_OwnPokemonDragon:: @ 81BA2F1
	.string "Own POKéMON type: DRAGON$"

Help_Text_OwnMoveNormal:: @ 81BA30A
	.string "Own move type: NORMAL$"

Help_Text_OwnPokemonNormal:: @ 81BA320
	.string "Own POKéMON type: NORMAL$"

Help_Text_OwnMoveSteel:: @ 81BA339
	.string "Own move type: STEEL$"

Help_Text_OwnPokemonSteel:: @ 81BA34E
	.string "Own POKéMON type: STEEL$"

Help_Text_OwnMoveFlying:: @ 81BA366
	.string "Own move type: FLYING$"

Help_Text_OwnPokemonFlying:: @ 81BA37C
	.string "Own POKéMON type: FLYING$"

Help_Text_OwnMoveFire:: @ 81BA395
	.string "Own move type: FIRE$"

Help_Text_OwnPokemonFire:: @ 81BA3A9
	.string "Own POKéMON type: FIRE$"

Help_Text_OwnMoveWater:: @ 81BA3C0
	.string "Own move type: WATER$"

Help_Text_OwnPokemonWater:: @ 81BA3D5
	.string "Own POKéMON type: WATER$"

Help_Text_OwnMoveBug:: @ 81BA3ED
	.string "Own move type: BUG$"

Help_Text_OwnPokemonBug:: @ 81BA400
	.string "Own POKéMON type: BUG$"

Help_Text_HowToUseTypeMatchupList:: @ 81BA416
	.string "Depending on the matchup of the\n"
	.string "move type and the target POKéMON's\l"
	.string "type, the move's effectiveness varies:\l"
	.string "{CIRCLE_DOT}: Super effective!\l"
	.string "{TRIANGLE}: Not very effective\l"
	.string "{BIG_MULT_X}: Not effective at all\l"
	.string "(No changes for other matchups.)$"

Help_Text_TypeMatchupOwnMoveDark:: @ 81BA4E6
	.string "Effect on the opposing POKéMON:\p"
	.string "   {CIRCLE_DOT}: PSYCHIC, GHOST\p"
	.string "   {TRIANGLE}: FIGHTING, DARK, STEEL$"

Help_Text_TypeMatchupOwnPokemonDark:: @ 81BA539
	.string "Effect of foe's move on own POKéMON:\p"
	.string "   {CIRCLE_DOT}: FIGHTING, BUG\p"
	.string "   {TRIANGLE}: GHOST, DARK\p"
	.string "   {BIG_MULT_X}: PSYCHIC$"

Help_Text_TypeMatchupOwnMoveRock:: @ 81BA595
	.string "Effect on the opposing POKéMON:\p"
	.string "   {CIRCLE_DOT}: FIRE, ICE, FLYING, BUG\p"
	.string "   {TRIANGLE}: FIGHTING, GROUND, STEEL$"

Help_Text_TypeMatchupOwnPokemonRock:: @ 81BA5F2
	.string "Effect of foe's move on own POKéMON:\p"
	.string "   {CIRCLE_DOT}: WATER, GRASS, FIGHTING,\n"
	.string "       GROUND, STEEL\p"
	.string "   {TRIANGLE}: NORMAL, FIRE, POISON, FLYING$"

Help_Text_TypeMatchupOwnMovePsychic:: @ 81BA66F
	.string "Effect on the opposing POKéMON:\p"
	.string "   {CIRCLE_DOT}: FIGHTING, POISON\p"
	.string "   {TRIANGLE}: PSYCHIC, STEEL\p"
	.string "   {BIG_MULT_X}: DARK$"

Help_Text_TypeMatchupOwnPokemonPsychic:: @ 81BA6C9
	.string "Effect of foe's move on own POKéMON:\p"
	.string "   {CIRCLE_DOT}: BUG, GHOST, DARK\p"
	.string "   {TRIANGLE}: FIGHTING, PSYCHIC$"

Help_Text_TypeMatchupOwnMoveFighting:: @ 81BA71F
	.string "Effect on the opposing POKéMON:\p"
	.string "   {CIRCLE_DOT}: NORMAL, ICE, ROCK, DARK, STEEL\p"
	.string "   {TRIANGLE}: POISON, FLYING, PSYCHIC, BUG\p"
	.string "   {BIG_MULT_X}: GHOST$"

Help_Text_TypeMatchupOwnPokemonFighting:: @ 81BA796
	.string "Effect of foe's move on own POKéMON:\p"
	.string "   {CIRCLE_DOT}: FLYING, PSYCHIC\p"
	.string "   {TRIANGLE}: BUG, ROCK, DARK$"

Help_Text_TypeMatchupOwnMoveGrass:: @ 81BA7E9
	.string "Effect on the opposing POKéMON:\p"
	.string "   {CIRCLE_DOT}: WATER, GROUND, ROCK\p"
	.string "   {TRIANGLE}: FIRE, GRASS, POISON, FLYING,\n"
	.string "       BUG, DRAGON, STEEL$"

Help_Text_TypeMatchupOwnPokemonGrass:: @ 81BA862
	.string "Effect of foe's move on own POKéMON:\p"
	.string "   {CIRCLE_DOT}: FIRE, ICE, POISON, FLYING, BUG\p"
	.string "   {TRIANGLE}: WATER, ELECTRIC, GRASS, GROUND$"

Help_Text_TypeMatchupOwnMoveGhost:: @ 81BA8D3
	.string "Effect on the opposing POKéMON:\p"
	.string "   {CIRCLE_DOT}: PSYCHIC, GHOST\p"
	.string "   {TRIANGLE}: DARK, STEEL\p"
	.string "   {BIG_MULT_X}: NORMAL$"

Help_Text_TypeMatchupOwnPokemonGhost:: @ 81BA92A
	.string "Effect of foe's move on own POKéMON:\p"
	.string "   {CIRCLE_DOT}: GHOST, DARK\p"
	.string "   {TRIANGLE}: POISON, BUG\p"
	.string "   {BIG_MULT_X}: NORMAL, FIGHTING$"

Help_Text_TypeMatchupOwnMoveIce:: @ 81BA98D
	.string "Effect on the opposing POKéMON:\p"
	.string "   {CIRCLE_DOT}: GRASS, GROUND, FLYING, DRAGON\p"
	.string "   {TRIANGLE}: FIRE, WATER, ICE, STEEL$"

Help_Text_TypeMatchupOwnPokemonIce:: @ 81BA9F1
	.string "Effect of foe's move on own POKéMON:\p"
	.string "   {CIRCLE_DOT}: FIRE, FIGHTING, ROCK, STEEL\p"
	.string "   {TRIANGLE}: ICE$"

Help_Text_TypeMatchupOwnMoveGround:: @ 81BAA44
	.string "Effect on the opposing POKéMON:\p"
	.string "   {CIRCLE_DOT}: FIRE, ELECTRIC, POISON, ROCK,\n"
	.string "       STEEL\p"
	.string "   {TRIANGLE}: GRASS, BUG\n"
	.string "   {BIG_MULT_X}: FLYING$"

Help_Text_TypeMatchupOwnPokemonGround:: @ 81BAAB6
	.string "Effect of foe's move on own POKéMON:\p"
	.string "   {CIRCLE_DOT}: WATER, GRASS, ICE\p"
	.string "   {TRIANGLE}: POISON, ROCK\p"
	.string "   {BIG_MULT_X}: ELECTRIC$"

Help_Text_TypeMatchupOwnMoveElectric:: @ 81BAB18
	.string "Effect on the opposing POKéMON:\p"
	.string "   {CIRCLE_DOT}: WATER, FLYING\p"
	.string "   {TRIANGLE}: ELECTRIC, GRASS, DRAGON\p"
	.string "   {BIG_MULT_X}: GROUND$"

Help_Text_TypeMatchupOwnPokemonElectric:: @ 81BAB7A
	.string "Effect of foe's move on own POKéMON:\p"
	.string "   {CIRCLE_DOT}: GROUND\p"
	.string "   {TRIANGLE}: ELECTRIC, FLYING, STEEL$"

Help_Text_TypeMatchupOwnMovePoison:: @ 81BABCC
	.string "Effect on the opposing POKéMON:\p"
	.string "   {CIRCLE_DOT}: GRASS\p"
	.string "   {TRIANGLE}: POISON, GROUND, ROCK, GHOST\p"
	.string "   {BIG_MULT_X}: STEEL$"

Help_Text_TypeMatchupOwnPokemonPoison:: @ 81BAC29
	.string "Effect of foe's move on own POKéMON:\p"
	.string "   {CIRCLE_DOT}: GROUND, PSYCHIC\p"
	.string "   {TRIANGLE}: GRASS, FIGHTING, POISON, BUG$"

Help_Text_TypeMatchupOwnMoveDragon:: @ 81BAC89
	.string "Effect on the opposing POKéMON:\p"
	.string "   {CIRCLE_DOT}: DRAGON\p"
	.string "   {TRIANGLE}: STEEL$"

Help_Text_TypeMatchupOwnPokemonDragon:: @ 81BACC4
	.string "Effect of foe's move on own POKéMON:\p"
	.string "   {CIRCLE_DOT}: ICE, DRAGON\p"
	.string "   {TRIANGLE}: FIRE, WATER, ELECTRIC, GRASS$"

Help_Text_TypeMatchupOwnMoveNormal:: @ 81BAD20
	.string "Effect on the opposing POKéMON:\p"
	.string "   {TRIANGLE}: ROCK, STEEL\p"
	.string "   {BIG_MULT_X}: GHOST$"

Help_Text_TypeMatchupOwnPokemonNormal:: @ 81BAD60
	.string "Effect of foe's move on own POKéMON:\p"
	.string "   {CIRCLE_DOT}: FIGHTING\p"
	.string "   {BIG_MULT_X}: GHOST$"

Help_Text_TypeMatchupOwnMoveSteel:: @ 81BADA2
	.string "Effect on the opposing POKéMON:\p"
	.string "   {CIRCLE_DOT}: ICE, ROCK\p"
	.string "   {TRIANGLE}: FIRE, WATER, ELECTRIC, STEEL$"

Help_Text_TypeMatchupOwnPokemonSteel:: @ 81BADF7
	.string "Effect of foe's move on own POKéMON:\p"
	.string "   {CIRCLE_DOT}: FIRE, FIGHTING, GROUND\n"
	.string "   {TRIANGLE}: NORMAL, GRASS, ICE, FLYING,\l"
	.string "       PSYCHIC, BUG, ROCK, GHOST,\l"
	.string "       DRAGON, DARK, STEEL\l"
	.string "   {BIG_MULT_X}: POISON$"

Help_Text_TypeMatchupOwnMoveFlying:: @ 81BAEA8
	.string "Effect on the opposing POKéMON:\p"
	.string "   {CIRCLE_DOT}: GRASS, FIGHTING, BUG\p"
	.string "   {TRIANGLE}: ELECTRIC, ROCK, STEEL$"

Help_Text_TypeMatchupOwnPokemonFlying:: @ 81BAF01
	.string "Effect of foe's move on own POKéMON:\p"
	.string "   {CIRCLE_DOT}: ELECTRIC, ICE, ROCK\p"
	.string "   {TRIANGLE}: GRASS, FIGHTING, BUG\p"
	.string "   {BIG_MULT_X}: GROUND$"

Help_Text_TypeMatchupOwnMoveFire:: @ 81BAF6B
	.string "Effect on the opposing POKéMON:\p"
	.string "   {CIRCLE_DOT}: GRASS, ICE, BUG, STEEL\p"
	.string "   {TRIANGLE}: FIRE, WATER, ROCK, DRAGON$"

Help_Text_TypeMatchupOwnPokemonFire:: @ 81BAFCA
	.string "Effect of foe's move on own POKéMON:\p"
	.string "   {CIRCLE_DOT}: WATER, GROUND, ROCK\p"
	.string "   {TRIANGLE}: FIRE, GRASS, ICE, BUG, STEEL$"

Help_Text_TypeMatchupOwnMoveWater:: @ 81BB02E
	.string "Effect on the opposing POKéMON:\p"
	.string "   {CIRCLE_DOT}: FIRE, GROUND, ROCK\p"
	.string "   {TRIANGLE}: WATER, GRASS, DRAGON$"

Help_Text_TypeMatchupOwnPokemonWater:: @ 81BB084
	.string "Effect of foe's move on own POKéMON:\p"
	.string "   {CIRCLE_DOT}: ELECTRIC, GRASS\p"
	.string "   {TRIANGLE}: FIRE, WATER, ICE, STEEL$"

Help_Text_TypeMatchupOwnMoveBug:: @ 81BB0DF
	.string "Effect on the opposing POKéMON:\p"
	.string "   {CIRCLE_DOT}: GRASS, PSYCHIC, DARK\p"
	.string "   {TRIANGLE}: FIRE, FIGHTING, POISON,\n"
	.string "       FLYING, GHOST, STEEL$"

Help_Text_TypeMatchupOwnPokemonBug:: @ 81BB156
	.string "Effect of foe's move on own POKéMON:\p"
	.string "   {CIRCLE_DOT}: FIRE, FLYING, ROCK\p"
	.string "   {TRIANGLE}: GRASS, FIGHTING, GROUND$"