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
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
|
LilycoveCity_ContestLobby_Text_27EF15: @ 827EF15
.string "Oh, hello! You were in a POKéMON\n"
.string "CONTEST, weren’t you?\l"
.string "It’s easy to tell from your POKéMON.\p"
.string "I’m a reporter. I’m working on a story\n"
.string "on POKéMON CONTESTS.\p"
.string "If I may, would you be willing to answer\n"
.string "a few questions?$"
LilycoveCity_ContestLobby_Text_27EFE7: @ 827EFE7
.string "Oh, you will?\n"
.string "Thank you.\p"
.string "Briefly, how would you describe the\n"
.string "CONTEST you just entered?$"
LilycoveCity_ContestLobby_Text_27F03E: @ 827F03E
.string "Ah, I see.\n"
.string "That’s a very edifying comment.\p"
.string "You get a good feel for what\n"
.string "the CONTEST was like.\p"
.string "I’ve got one last question.\p"
.string "When you hear the word “{STR_VAR_2},”\n"
.string "what image do you get?$"
LilycoveCity_ContestLobby_Text_27F0EC: @ 827F0EC
.string "I see!\p"
.string "So that’s how you imagine the concept\n"
.string "of “{STR_VAR_2}” to be.\p"
.string "Thank you!\n"
.string "You’ve given me some good ideas.\p"
.string "I think I can write a good story on\n"
.string "POKéMON CONTESTS now.\p"
.string "Maybe, just maybe, this story will even\n"
.string "make it to television.\l"
.string "I hope you’ll look forward to it!$"
LilycoveCity_ContestLobby_Text_27F1EF: @ 827F1EF
.string "Oh, too bad…\p"
.string "Well, if you come across a good story,\n"
.string "please do share it with me.$"
LilycoveCity_ContestLobby_Text_27F23F: @ 827F23F
.string "I’ll be looking forward to your next\n"
.string "POKéMON CONTEST.$"
gTVBravoTrainerText00:: @ 0827F275
.string "Yeah!\n"
.string "It’s BRAVO TRAINER time!\p"
.string "Today, we’re going to profile a POKéMON\n"
.string "belonging to {STR_VAR_1}.\p"
.string "Now, this POKéMON boasts a {STR_VAR_3}\n"
.string "Rank in the {STR_VAR_2} Category.$"
gTVBravoTrainerText01:: @ 0827F304
.string "Introducing {STR_VAR_2} the\n"
.string "{STR_VAR_1}!\p"
.string "The nickname {STR_VAR_2}…\p"
.string "Even the nickname exudes an air that\n"
.string "proclaims “{STR_VAR_3}”!$"
gTVBravoTrainerText02:: @ 0827F361
.string "Anyway, when the TRAINER {STR_VAR_1}\n"
.string "entered the POKéMON in a CONTEST,\l"
.string "we managed to get a few impassioned\l"
.string "quotes about the trusty partner.$"
gTVBravoTrainerText03:: @ 0827F3E4
.string "Asked about the CONTEST afterwards,\n"
.string "{STR_VAR_1} happily replied with a huge\l"
.string "grin, “{STR_VAR_2}!”\p"
.string "Well, sure, {STR_VAR_1}’s POKéMON came in\n"
.string "number {STR_VAR_3} in the CONTEST.\p"
.string "That line perfectly suits {STR_VAR_1}\n"
.string "right now, I’d say!$"
gTVBravoTrainerText04:: @ 0827F49F
.string "Asked about the CONTEST afterwards,\n"
.string "{STR_VAR_1} replied with a tinge of\l"
.string "bitterness, “{STR_VAR_2}.”\p"
.string "Well, sure, {STR_VAR_1}’s POKéMON came in\n"
.string "number {STR_VAR_3} in the CONTEST.\p"
.string "{STR_VAR_1}’s disappointment comes across\n"
.string "loud and clear, I’d say!$"
gTVBravoTrainerText05:: @ 0827F565
.string "Wouldn’t you also like to know what\n"
.string "{STR_VAR_1} imagines {STR_VAR_2} to be?\p"
.string "You bet we did!\n"
.string "So we asked, of course!\p"
.string "The answer is all perfectly condensed:\n"
.string "“{STR_VAR_3}!”\p"
.string "That’s what the concept of {STR_VAR_2}\n"
.string "represents to {STR_VAR_1}!$"
gTVBravoTrainerText06:: @ 0827F624
.string "The last move {STR_VAR_2} used by\n"
.string "the {STR_VAR_1} is entirely about\l"
.string "“{STR_VAR_3}”!$"
gTVBravoTrainerText07:: @ 0827F65C
.string "Bravo, {STR_VAR_1}!\n"
.string "Bravo, {STR_VAR_2}!\p"
.string "I hope we can count on seeing\n"
.string "{STR_VAR_1} scale even greater heights!\p"
.string "That’s all the time we have!\n"
.string "Until next time, see you!$"
gTVBravoTrainerText08:: @ 0827F6E6
.string "Introducing the TRAINER’s {STR_VAR_1}!$"
BattleFrontier_BattleTowerLobby_Text_27F704:: @ 0827F704
.string "Hello! You’re the TRAINER who just had\n"
.string "a battle, right?\p"
.string "I’m gathering interviews with TRAINERS\n"
.string "all over the place.\p"
.string "May I get a few words from you about\n"
.string "your impressions on battling?$"
BattleFrontier_BattleTowerLobby_Text_27F7BA:: @ 0827F7BA
.string "You will? Really?\n"
.string "Thank you!\l"
.string "Then, uh…\p"
.string "How did things turn out in\n"
.string "the BATTLE TOWER today?\p"
.string "Were you satisfied with the battle?\n"
.string "Or are you unhappy?$"
BattleFrontier_BattleTowerLobby_Text_27F84C:: @ 0827F84C
.string "Oh…\n"
.string "Sorry we disturbed you.\p"
.string "Please give us an interview the next\n"
.string "time you visit the BATTLE TOWER.$"
BattleFrontier_BattleTowerLobby_Text_27F8AE:: @ 0827F8AE
.string "Well, of course!\p"
.string "That unmistakable look of satisfaction\n"
.string "on your face…\p"
.string "It’s obvious that you’ve had a great\n"
.string "battle.$"
BattleFrontier_BattleTowerLobby_Text_27F921:: @ 0827F921
.string "Oh, I see…\p"
.string "Well, it certainly is difficult to make a\n"
.string "battle turn out exactly as planned.$"
BattleFrontier_BattleTowerLobby_Text_27F97A:: @ 0827F97A
.string "Oh, oh, may I ask one more question?\p"
.string "If you were to describe your\n"
.string "impressions about this battle with\l"
.string "one saying, what would it be?$"
BattleFrontier_BattleTowerLobby_Text_27F9FD:: @ 0827F9FD
.string "Oh, that is stunningly cool!\p"
.string "That’s a great line!\n"
.string "I hope you’ll do great next time, too.\p"
.string "I hope to see you again!$"
BattleFrontier_BattleTowerLobby_Text_27FA6F:: @ 0827FA6F
.string "Oh, I see…\p"
.string "Still, being the silent type is also\n"
.string "cool, isn’t it?\p"
.string "I hope you’ll give me the opportunity\n"
.string "to share your thoughts again!$"
BattleFrontier_BattleTowerLobby_Text_27FAF3:: @ 0827FAF3
.string "I’ll be looking forward to your\n"
.string "next battle!$"
gTVBravoTrainerBattleTowerText00:: @ 0827FB20
.string "Yeah!\n"
.string "It’s BRAVO TRAINER time!\p"
.string "Today, we’re going to profile {STR_VAR_1},\n"
.string "who took the BATTLE TOWER challenge!\p"
.string "For the challenge, {STR_VAR_1} entered\n"
.string "one wicked {STR_VAR_2}.$"
gTVBravoTrainerBattleTowerText01:: @ 0827FBB3
.string "The pair set a new record of {STR_VAR_2} wins\n"
.string "in a row in {STR_VAR_1} competition!\l"
.string "Bravo, TRAINER!$"
gTVBravoTrainerBattleTowerText02:: @ 0827FC04
.string "The twosome finally succumbed to\n"
.string "{STR_VAR_1} in match number {STR_VAR_2}.\l"
.string "Nice try, TRAINER!\p"
.string "But, hey, it’s just bad luck to run into\n"
.string "{STR_VAR_1} so early in the challenge.\p"
.string "We asked the TRAINER for impressions\n"
.string "on the match with {STR_VAR_1}.$"
gTVBravoTrainerBattleTowerText03:: @ 0827FCD1
.string "The twosome won it all by defeating\n"
.string "{STR_VAR_1}’s {STR_VAR_2} thoroughly.\l"
.string "Bravo, TRAINER!\p"
.string "Knocking off even {STR_VAR_1}…\n"
.string "It defies belief! Simply astounding!\p"
.string "We asked the TRAINER for impressions\n"
.string "on the moment of glory.$"
gTVBravoTrainerBattleTowerText04:: @ 0827FD91
.string "After a string of wins, the pair finally\n"
.string "succumbed to {STR_VAR_1}’s {STR_VAR_2},\l"
.string "their final hurdle.\p"
.string "Nice try, TRAINER!\p"
.string "Still, you have to give credit.\n"
.string "You don’t see many famous combinations\l"
.string "like {STR_VAR_1} and {STR_VAR_2}.\p"
.string "We asked the TRAINER for impressions\n"
.string "on battling the celebrity pair.$"
gTVBravoTrainerBattleTowerText05:: @ 0827FE93
.string "This is what the TRAINER had to say:\n"
.string "“I’m satisfied!”\p"
.string "Now isn’t that a refreshing reply?\n"
.string "Bravo, TRAINER!\p"
.string "Isn’t it out-and-out awesome to be\n"
.string "able to battle to full satisfaction?\p"
.string "I found out exactly how satisfied\n"
.string "when I heard the TRAINER say this:$"
gTVBravoTrainerBattleTowerText06:: @ 0827FF89
.string "This is what the TRAINER had to say:\n"
.string "“I’m not satisfied…”\p"
.string "Our TRAINER was obviously a little down\n"
.string "when that was uttered.\p"
.string "Still, it’s not easy to be able to battle\n"
.string "with complete satisfaction, am I right?\p"
.string "Anyway, I found out how dissatisfied\n"
.string "our TRAINER was when I heard this:$"
gTVBravoTrainerBattleTowerText07:: @ 0828009C
.string "None$"
gTVBravoTrainerBattleTowerText08:: @ 082800A1
.string "None$"
gTVBravoTrainerBattleTowerText09:: @ 082800A6
.string "None$"
gTVBravoTrainerBattleTowerText10:: @ 082800AB
.string "None$"
gTVBravoTrainerBattleTowerText11:: @ 082800B0
.string "“{STR_VAR_1}.”$"
gTVBravoTrainerBattleTowerText12:: @ 082800B6
.string "“{STR_VAR_1}.”\n"
.string "Now isn’t that great?\p"
.string "It really expresses {STR_VAR_2}’s joy,\n"
.string "I’d say.\p"
.string "That battle with {STR_VAR_3} at the\n"
.string "end… It really was what you’d call\l"
.string "“{STR_VAR_1}”!$"
gTVBravoTrainerBattleTowerText13:: @ 0828013D
.string "“{STR_VAR_1}.”\n"
.string "Now isn’t that fitting?\p"
.string "That battle with {STR_VAR_3} at the\n"
.string "end… You can’t describe it as anything\l"
.string "else but “{STR_VAR_1}”!\p"
.string "{STR_VAR_2}’s disappointment comes across\n"
.string "loud and clear, I’d say!$"
gTVBravoTrainerBattleTowerText14:: @ 082801E6
.string "Bravo, {STR_VAR_1}!\n"
.string "Bravo, {STR_VAR_2}!\p"
.string "I hope we can count on seeing\n"
.string "{STR_VAR_1} scale even greater heights!\p"
.string "That’s all the time we have!\n"
.string "Until next time, see you!$"
SlateportCity_PokemonFanClub_Text_280270: @ 08280270
.string "Wow!\p"
.string "It’s plain to see that you lavish your\n"
.string "love on your {STR_VAR_1}.\p"
.string "Okay, it’s named {STR_VAR_2}.\p"
.string "Can I ask you a favor?\p"
.string "I’m a TV reporter, and I’m running\n"
.string "a survey on POKéMON.\p"
.string "Would you be willing to answer a few\n"
.string "simple questions for me?$"
SlateportCity_PokemonFanClub_Text_28034F: @ 0828034F
.string "Great! Thank you!\p"
.string "Okay, here goes.\n"
.string "I just need quick answers, okay?$"
SlateportCity_PokemonFanClub_Text_280393: @ 08280393
.string "When you first met {STR_VAR_1},\n"
.string "what did you feel?\p"
.string "How would you describe your feelings\n"
.string "at the time?$"
SlateportCity_PokemonFanClub_Text_2803EF: @ 082803EF
.string "Your {STR_VAR_1} is cared for lovingly.\p"
.string "If you were to liken it to something\n"
.string "that you like, what would it be?$"
SlateportCity_PokemonFanClub_Text_280454: @ 08280454
.string "This question also relates to your\n"
.string "beloved {STR_VAR_1}.\p"
.string "What was it about {STR_VAR_1} that\n"
.string "attracted you?$"
SlateportCity_PokemonFanClub_Text_2804AC: @ 082804AC
.string "Okay, that makes sense.\p"
.string "The next question might be a little\n"
.string "on the tough side.\p"
.string "Here goes…\p"
.string "What do POKéMON mean to you?$"
SlateportCity_PokemonFanClub_Text_280523: @ 08280523
.string "I see!\p"
.string "Hmhm…\p"
.string "Okay!\n"
.string "Thanks for helping me out.\p"
.string "It was fun and enlightening\n"
.string "chatting with you.\p"
.string "It’s possible that our interview will\n"
.string "end up on TV. Tune in and check!\p"
.string "Okay, that’s all.\n"
.string "Bye-bye!$"
SlateportCity_PokemonFanClub_Text_2805E2: @ 082805E2
.string "Oh, okay…\p"
.string "Well, if you get the urge to tell me\n"
.string "about POKéMON, I’ll be here!$"
SlateportCity_PokemonFanClub_Text_28062E: @ 0828062E
.string "I enjoy this job--you get to learn\n"
.string "about POKéMON by doing interviews.$"
SlateportCity_PokemonFanClub_Text_280674: @ 08280674
.string "Hi, you seem to be very close to your\n"
.string "{STR_VAR_1}.\p"
.string "Do you know what?\n"
.string "I’m a TV reporter.\p"
.string "I travel around interviewing people\n"
.string "about POKéMON.\p"
.string "I’m wondering if you’d be willing to tell\n"
.string "me a little about your {STR_VAR_1}?$"
SlateportCity_PokemonFanClub_Text_28073B: @ 0828073B
.string "Wow, thank you!\p"
.string "Okay, then, please tell me anything\n"
.string "you’d like about your {STR_VAR_1}.$"
SlateportCity_PokemonFanClub_Text_280789: @ 08280789
.string "Wow…\n"
.string "That’s an interesting account.\p"
.string "You really are tight with {STR_VAR_1},\n"
.string "aren’t you?\p"
.string "I get the feeling that your account\n"
.string "will make a great TV story.\p"
.string "I promise that I’ll turn this into\n"
.string "an entertaining show.\l"
.string "Keep your eyes out for it.\p"
.string "Okay, that’s all.\n"
.string "Bye-bye!$"
gTVFanClubOpinionsText00:: @ 08280886
.string "WE ARE THE POKéMON FAN CLUB!\p"
.string "We’re on the air!\p"
.string "On this program, we get your opinions,\n"
.string "and I shout them out on your behalf!\l"
.string "Isn’t it a fantastic program concept?\p"
.string "Today, we bring you this report from\n"
.string "our reporter, who we sent out to the\l"
.string "POKéMON FAN CLUB.\p"
.string "So, just who is today’s featured\n"
.string "POKéMON fan?\p"
.string "… … … … … … … …\p"
.string "{STR_VAR_1}!\p"
.string "So, let’s hear what {STR_VAR_1} has to\n"
.string "say about {STR_VAR_3} the {STR_VAR_2}.\p"
.string "And, I will shout those words of love\n"
.string "out loud on TV!\p"
.string "Hoo-hah!\p"
.string "Let’s shout!$"
gTVFanClubOpinionsText01:: @ 08280A44
.string "We asked {STR_VAR_1}, “When you first\n"
.string "laid eyes on your {STR_VAR_2}, what was\l"
.string "your initial thought?”\p"
.string "“{STR_VAR_3}!”\p"
.string "Yeahah! That’s a mighty fine shout!\p"
.string "Doesn’t it bring back memories of those\n"
.string "days long gone by?$"
gTVFanClubOpinionsText02:: @ 08280AFC
.string "We asked {STR_VAR_1}, “If you were to\n"
.string "liken your {STR_VAR_2} to something,\l"
.string "it would be…”\p"
.string "… … … … … … … …\p"
.string "“{STR_VAR_3}!”\p"
.string "Whoah-oh, now that’s an original idea!\p"
.string "You sure can sense the intensity of\n"
.string "feeling the TRAINER has for\l"
.string "{STR_VAR_2}.$"
gTVFanClubOpinionsText03:: @ 08280BC4
.string "And let’s see…\n"
.string "What was it about that {STR_VAR_2}\l"
.string "that so attracted {STR_VAR_1}?\p"
.string "… … … … … … … …\p"
.string "“{STR_VAR_3}!”\p"
.string "Whoa! Such a spectacular declaration!\p"
.string "The TRAINER’s love for the {STR_VAR_2}\n"
.string "comes across loud and clear!$"
gTVFanClubOpinionsText04:: @ 08280C7A
.string "Hm? Oh, there’s still more.\n"
.string "Let’s check it out!\p"
.string "Let me see, now…\p"
.string "We asked {STR_VAR_1}, “What do POKéMON\n"
.string "mean to you?”\p"
.string "… … … … … …\p"
.string "“{STR_VAR_3}!”\p"
.string "Bravo!\p"
.string "That’s the best shout I’ve had all day!\p"
.string "“{STR_VAR_3}!”\p"
.string "It makes you want to shout it out loud\n"
.string "again and again!\p"
.string "Now that we’ve had a great shout, it’s\n"
.string "time to say good-bye until next time!\p"
.string "So, let’s all have one last shout!\n"
.string "All together now…\p"
.string "“{STR_VAR_3}!”$"
gTVFanClubText00:: @ 08280DEE
.string "WE ARE THE POKéMON FAN CLUB!\p"
.string "We’re on the air!\p"
.string "Today, we’ll get rolling with the\n"
.string "POKéMON SURVEY CORNER.\p"
.string "Out of all the tales woven by POKéMON\n"
.string "and TRAINERS, what startling new drama\l"
.string "will grab our attention today?\p"
.string "Let me see…\p"
.string "This one!\p"
.string "We’ll start with this letter!\p"
.string "It’s a letter from {STR_VAR_1} about a\n"
.string "beloved {STR_VAR_2}.\p"
.string "Let’s see how passionately our writer\n"
.string "can express love for the {STR_VAR_2}!\l"
.string "Hmhm…$"
gTVFanClubText01:: @ 08280F69
.string "Whoah!\n"
.string "What an amazing letter!$"
gTVFanClubText02:: @ 08280F88
.string "I loved it, so here it is again!$"
gTVFanClubText03:: @ 08280FA9
.string "A great letter bears reading over\n"
.string "and over!$"
gTVFanClubText04:: @ 08280FD5
.string "The bit “{STR_VAR_3},” that really\n"
.string "accentuates emotional impact!\p"
.string "It’s a great letter that has real\n"
.string "heartfelt depth!$"
gTVFanClubText05:: @ 08281040
.string "Especially that “{STR_VAR_3}” bit!\p"
.string "I love how “{STR_VAR_3}” is used!$"
gTVFanClubText06:: @ 08281073
.string "By the way, and it’s not important,\n"
.string "but “{STR_VAR_3}” is a great saying.\p"
.string "I’ve been using “{STR_VAR_3}” a lot\n"
.string "in conversations lately.$"
gTVFanClubText07:: @ 082810E7
.string "If I had to score this letter,\n"
.string "I’d give it {STR_VAR_3} points.\p"
.string "Next time, I’ll be expecting an even\n"
.string "better letter, {STR_VAR_1}!\p"
.string "A-whoops, will you look at the time?\n"
.string "Time to say good-bye until next time!$"
SlateportCity_OceanicMuseum_1F_Text_2811A0: @ 082811A0
.string "Oh?\n"
.string "Do you perhaps like POKéMON?\p"
.string "I’m on assignment with the TV network.\p"
.string "I’m gathering stories on POKéMON and\n"
.string "TRAINERS that occurred recently.\p"
.string "If you don’t mind, could you tell me\n"
.string "something about yourself?$"
SlateportCity_OceanicMuseum_1F_Text_28126D: @ 0828126D
.string "I’m gathering stories on POKéMON and\n"
.string "TRAINERS that occurred recently.\p"
.string "If you don’t mind, could you tell me\n"
.string "something about yourself?$"
SlateportCity_OceanicMuseum_1F_Text_2812F2: @ 082812F2
.string "Oh, you will?\n"
.string "Thank you!\p"
.string "Then, please, tell me anything of\n"
.string "interest that you experienced recently\l"
.string "involving POKéMON.$"
SlateportCity_OceanicMuseum_1F_Text_281367: @ 08281367
.string "Oh, I see…\p"
.string "Well, if you do have an interesting\n"
.string "story to tell, please let me know.$"
SlateportCity_OceanicMuseum_1F_Text_2813B9: @ 082813B9
.string "Oh, what an uplifting story!\p"
.string "I’ll be sure to get your story told\n"
.string "on television.\p"
.string "It should be aired sometime, I think,\n"
.string "so please look forward to it.$"
SlateportCity_OceanicMuseum_1F_Text_28144D: @ 0828144D
.string "Hmmm…\n"
.string "I’ve got a good story for a TV program.\p"
.string "I’d better write it up in a hurry!$"
gTVRecentHappeningsText00:: @ 0828149E
.string "Hello, it’s time for RECENT HAPPENINGS.\p"
.string "For POKéMON TRAINERS, every day\n"
.string "is a storybook tale.\p"
.string "What we want to do is to introduce you\n"
.string "to some of these POKéMON tales.\p"
.string "Today, we bring you the story\n"
.string "of the TRAINER {STR_VAR_1}.\p"
.string "What did {STR_VAR_1} experience recently?\n"
.string "Let’s find out.\p"
.string "Let’s see…$"
gTVRecentHappeningsText01:: @ 082815AF
.string "Wasn’t that enlightening?\p"
.string "The story gives you a clear idea of what\n"
.string "{STR_VAR_1} has experienced recently.\l"
.string "It’s as if we were there as witnesses!$"
gTVRecentHappeningsText02:: @ 08281636
.string "“{STR_VAR_3}.” That\n"
.string "accents the tale and gives it depth.$"
gTVRecentHappeningsText03:: @ 08281666
.string "“{STR_VAR_3}.”\n"
.string "That gives the tale a sense of place.\l"
.string "It lets us envision the tale’s setting.$"
gTVRecentHappeningsText04:: @ 082816BA
.string "The “{STR_VAR_3}”\n"
.string "section of the tale is very expressive.$"
gTVRecentHappeningsText05:: @ 082816EB
.string "{STR_VAR_1} has recounted a wonderful\n"
.string "tale involving POKéMON.\p"
.string "And now {STR_VAR_1}’s tale is indelibly\n"
.string "etched into your soul, too.\p"
.string "That’s it for today.\n"
.string "Please tune in next time.$"
gTVMassOutbreakText00:: @ 0828178A
.string "Greetings!\n"
.string "It’s time for POKéMON NEWS.\p"
.string "We’ve just received word of a very\n"
.string "rare occurrence.\p"
.string "There have been reports of a mass\n"
.string "outbreak of {STR_VAR_2} in the vicinity\l"
.string "of {STR_VAR_1}.\p"
.string "{STR_VAR_2}, as you’re probably aware,\n"
.string "is known as a POKéMON that’s rare\l"
.string "and hard to find.\p"
.string "It sounds like a rare opportunity to\n"
.string "see the mystifying outbreak of\l"
.string "{STR_VAR_2} in the wild.\p"
.string "That’s the news on POKéMON NEWS.$"
gTV3CheersForPokeblocksText00:: @ 082818F4
.string "MC: We hope you’re in good cheer,\n"
.string "“3 CHEERS FOR {POKEBLOCK}S” is here!\p"
.string "Today, we examine the {POKEBLOCK} blended\n"
.string "by {STR_VAR_1} and associates.\p"
.string "Without any delay, let me feed it\n"
.string "to my gourmet POKéMON GULPIN.\p"
.string "… … … … … …\n"
.string "… … … … … …$"
gTV3CheersForPokeblocksText01:: @ 082819C7
.string "GULPIN: Gubi! Gubii!\p"
.string "MC: And the verdict is very {STR_VAR_1}!\n"
.string "GULPIN says it tastes “{STR_VAR_2}!”\p"
.string "Thank you so much, {STR_VAR_3}!$"
gTV3CheersForPokeblocksText02:: @ 08281A2F
.string "{STR_VAR_1}’s blending performance\n"
.string "left something to be desired.\p"
.string "If this TRAINER could blend better,\n"
.string "the {POKEBLOCK} would be much tastier.$"
gTV3CheersForPokeblocksText03:: @ 08281AAC
.string "GULPIN: Gubi! Gubii!\p"
.string "MC: Hmm… It’s too {STR_VAR_1}.\n"
.string "GULPIN says it tastes “{STR_VAR_2}!”\p"
.string "It looks like {STR_VAR_3}’s errors\n"
.string "hurt the blending quality…$"
gTV3CheersForPokeblocksText04:: @ 08281B28
.string "It’s too bad that {STR_VAR_1}’s\n"
.string "leading effort went to waste.\p"
.string "Let’s hope {STR_VAR_2} can turn in\n"
.string "a better showing next time!$"
gTV3CheersForPokeblocksText05:: @ 08281B93
.string "Tune in next time!\n"
.string "Our slogan is “3 CHEERS FOR {POKEBLOCK}S!”$"
LilycoveCity_PokemonTrainerFanClub_Text_281BCB:: @ 8281BCB
.string "Hi, there!\p"
.string "I’m a big fan of {STR_VAR_1}.\n"
.string "What’s your opinion of {STR_VAR_1}?$"
LilycoveCity_PokemonTrainerFanClub_Text_281C06:: @ 8281C06
.string "I see, I see. That’s what you think\n"
.string "about the TRAINER.$"
LilycoveCity_PokemonTrainerFanClub_Text_281C3D:: @ 8281C3D
.string "Have you completely forgotten\n"
.string "about {STR_VAR_1}?$"
LilycoveCity_PokemonTrainerFanClub_Text_281C65:: @ 8281C65
.string "I’m a big fan of {STR_VAR_1}.\n"
.string "What’s your opinion of {STR_VAR_1}?$"
LilycoveCity_PokemonTrainerFanClub_Text_281C95:: @ 8281C95
.string "How strong would you rate {STR_VAR_1}\n"
.string "on a scale of one hundred?$"
LilycoveCity_PokemonTrainerFanClub_Text_281CCD:: @ 8281CCD
.string "Have you completely forgotten\n"
.string "about {STR_VAR_1}?$"
LilycoveCity_PokemonTrainerFanClub_Text_281CF5:: @ 8281CF5
.string "Oh, I see!\n"
.string "You should meet {STR_VAR_1} sometime.\l"
.string "I’m sure you’ll become a fan, too!$"
LilycoveCity_PokemonTrainerFanClub_Text_281D40:: @ 8281D40
.string "I see, I see.\p"
.string "Thank you!\n"
.string "That’s very useful to know.\p"
.string "I’ll share this information with other\n"
.string "{STR_VAR_1} fans and discuss it.$"
LilycoveCity_PokemonTrainerFanClub_Text_281DB4:: @ 8281DB4
.string "There’s going to be a TV special on\n"
.string "{STR_VAR_1} very soon.\p"
.string "I hope you catch it!$"
gTVTrainerFanClubSpecialText00:: @ 08281DFB
.string "TRAINER FAN CLUB\n"
.string "{STR_VAR_1} SPECIAL!\p"
.string "This is a special presentation for\n"
.string "the fans of {STR_VAR_1} all over HOENN!\p"
.string "Today, we ask the question, “What do\n"
.string "people think of {STR_VAR_1}?”\p"
.string "We posed the question to {STR_VAR_2}\n"
.string "as the TRAINER representative.\p"
.string "We asked, “In one word, how would\n"
.string "you describe {STR_VAR_1}?”\p"
.string "The reply: “{STR_VAR_3}.”\p"
.string "Kudos to {STR_VAR_2}!\n"
.string "What a perceptive opinion!\p"
.string "“{STR_VAR_3} {STR_VAR_1}.”\n"
.string "It has such a nice ring to it!\p"
.string "{STR_VAR_2} also scored {STR_VAR_1}’s\n"
.string "strength from 0 to 100.$"
gTVTrainerFanClubSpecialText01:: @ 08281F90
.string "The score was {STR_VAR_3} points!\n"
.string "That is a very high score indeed!\p"
.string "{STR_VAR_2} must obviously hold\n"
.string "{STR_VAR_1} in very high esteem.$"
gTVTrainerFanClubSpecialText02:: @ 08281FFA
.string "The score was {STR_VAR_3} points!\n"
.string "That is quite a good score.\p"
.string "{STR_VAR_2} must consider\n"
.string "{STR_VAR_1} to be a rival.$"
gTVTrainerFanClubSpecialText03:: @ 08282052
.string "The score was {STR_VAR_3} points!\n"
.string "That’s a rather weak score.\p"
.string "{STR_VAR_2} must consider\n"
.string "{STR_VAR_1} to be a mere sidekick.$"
gTVTrainerFanClubSpecialText04:: @ 082820B2
.string "The score was {STR_VAR_3} point(s)!\n"
.string "That’s a terrible score.\p"
.string "{STR_VAR_2} must consider\n"
.string "{STR_VAR_1} to be an underling.$"
gTVTrainerFanClubSpecialText05:: @ 0828210E
.string "There you have it, folks!\p"
.string "I think we all learned something\n"
.string "new about {STR_VAR_1}.\p"
.string "In closing, I’ll leave you with\n"
.string "{STR_VAR_2}’s words.\p"
.string "{STR_VAR_3} {STR_VAR_1}!$"
gTVNameRaterText00:: @ 0828218A
.string "And now, it’s time for…\n"
.string "THE NAME RATER SHOW.\p"
.string "I tell your POKéMON’s fortune from\n"
.string "the nickname you’ve bestowed.\p"
.string "Advice is what I have to give, and it is\n"
.string "helpful advice that I offer.\p"
.string "Today, I shall do a reading of\n"
.string "the nickname {STR_VAR_3} of {STR_VAR_1}’s\l"
.string "POKéMON {STR_VAR_2}.\p"
.string "Hmhm…\p"
.string "Hmm…\n"
.string "This nickname is…$"
gTVNameRaterText01:: @ 0828229E
.string "A nickname that hints at talent in many\n"
.string "different ways.\p"
.string "I urge this TRAINER to take courage\n"
.string "and take on many challenges.$"
gTVNameRaterText02:: @ 08282317
.string "A nickname that perfectly complements\n"
.string "{STR_VAR_1}, the TRAINER’s name.\p"
.string "It suggests that you will forge a fine\n"
.string "partnership with precise timing.$"
gTVNameRaterText03:: @ 0828239D
.string "A nickname fit for a unique individual\n"
.string "of a POKéMON!\p"
.string "If raised properly, this POKéMON’s\n"
.string "uniqueness will bloom excessively!$"
gTVNameRaterText04:: @ 08282418
.string "A nickname that will nurture the caring\n"
.string "and compassionate side of POKéMON.\p"
.string "If raised properly, this POKéMON will\n"
.string "come to exhibit real warmth!$"
gTVNameRaterText05:: @ 082824A6
.string "A very fine nickname that hints at\n"
.string "greatness to come.\p"
.string "I am intrigued about what the future\n"
.string "holds in store for this POKéMON.$"
gTVNameRaterText06:: @ 08282522
.string "A good nickname that should make the\n"
.string "POKéMON hale and hearty!\p"
.string "That POKéMON should remain fit and\n"
.string "robust for a long, long time.$"
gTVNameRaterText07:: @ 082825A1
.string "A good nickname that should make the\n"
.string "POKéMON very active!\p"
.string "I should think that this POKéMON will be\n"
.string "a strong performer in battles.$"
gTVNameRaterText08:: @ 08282623
.string "An appealing nickname that should make\n"
.string "the POKéMON very charming!\p"
.string "I don’t doubt that this POKéMON will be\n"
.string "quite the charmer in POKéMON CONTESTS.$"
gTVNameRaterText09:: @ 082826B4
.string "The nickname {STR_VAR_1} is rooted by\n"
.string "the letter “{STR_VAR_3}.”\p"
.string "That letter is supported by the first\n"
.string "letter “{STR_VAR_2},” which gives it a solid sense\l"
.string "of presence as a nickname.$"
gTVNameRaterText10:: @ 0828274D
.string "The nickname {STR_VAR_1} is very\n"
.string "shapely in a pleasing manner.\p"
.string "The presence of the letters “{STR_VAR_2}” and\n"
.string "“{STR_VAR_3}”--now that is remarkably good!$"
gTVNameRaterText11:: @ 082827CB
.string "The nickname {STR_VAR_1}--it has a\n"
.string "sublime, flowing feel to it.\p"
.string "The flow from the initial letter “{STR_VAR_2}” to\n"
.string "“{STR_VAR_3}” is especially wonderful.$"
gTVNameRaterText12:: @ 08282849
.string "Let’s examine other examples of fine\n"
.string "nicknames, shall we?$"
gTVNameRaterText13:: @ 08282883
.string "Try this example. Take a part of the\n"
.string "TRAINER name of {STR_VAR_1}, and end\l"
.string "up with the fine nickname {STR_VAR_2}{STR_VAR_3}.$"
gTVNameRaterText14:: @ 082828E4
.string "The nickname {STR_VAR_2}{STR_VAR_3} would also work\n"
.string "quite well.$"
gTVNameRaterText15:: @ 08282912
.string "The POKéMON’s species name of\n"
.string "{STR_VAR_2} could be used as the basis\l"
.string "for making the nickname {STR_VAR_1}{STR_VAR_3}.$"
gTVNameRaterText16:: @ 0828296C
.string "{STR_VAR_1}{STR_VAR_3} would also be an effective\n"
.string "nickname.$"
gTVNameRaterText17:: @ 08282996
.string "What should always be avoided is using\n"
.string "another POKéMON species name.\p"
.string "For instance, avoid taking the name of\n"
.string "{STR_VAR_2} to make the nickname {STR_VAR_1}{STR_VAR_3}.\l"
.string "That is unacceptable.$"
gTVNameRaterText18:: @ 08282A36
.string "I must say that {STR_VAR_1} is quite\n"
.string "a good nickname.\p"
.string "I hope that the TRAINER will continue\n"
.string "to treat {STR_VAR_1} with love.\p"
.string "That’s it for today’s show.\n"
.string "May we meet again.$"
gTVPokemonAnglerText00:: @ 08282ACF
.string "{STR_VAR_2} ANGLER\p"
.string "ANNOUNCER: Hello! Today, we’ll get tips\n"
.string "on fishing for {STR_VAR_2}.\p"
.string "GURU, what advice can you give for\n"
.string "catching {STR_VAR_2}?\p"
.string "GURU: Hm? Catching {STR_VAR_2}?\n"
.string "Well, let me tell you, be patient and\l"
.string "wait. That’s the bottom line.\p"
.string "Do you see {STR_VAR_1} over there?\n"
.string "That TRAINER makes a good example.\p"
.string "That TRAINER’s already had\n"
.string "{STR_VAR_3} POKéMON get away.\p"
.string "But there {STR_VAR_1} waits. No giving up.\n"
.string "That’s the law for catching {STR_VAR_2}.\p"
.string "ANNOUNCER: I see…\p"
.string "Oh! {STR_VAR_1} has finally landed an\n"
.string "elusive {STR_VAR_2}!\p"
.string "The TRAINER appears close to tears\n"
.string "out of sheer joy!\p"
.string "Seeing that elated look, I’m getting\n"
.string "the itch to go fishing, too!\p"
.string "Viewers, why not take this as a cue to\n"
.string "try some {STR_VAR_2} fishing?\p"
.string "Until our next broadcast, farewell and\n"
.string "good fishing to you all!$"
gTVPokemonAnglerText01:: @ 08282D7C
.string "{STR_VAR_2} ANGLER\p"
.string "ANNOUNCER: Hello! Today, we’ll get tips\n"
.string "on fishing for {STR_VAR_2}.\p"
.string "GURU, what advice can you give for\n"
.string "catching {STR_VAR_2}?\p"
.string "GURU: Hm? Catching {STR_VAR_2}?\n"
.string "Well, let me tell you, use your fishing\l"
.string "ROD with vigor!\p"
.string "Do you see {STR_VAR_1} over there?\n"
.string "See how the ROD is handled?\p"
.string "That TRAINER’s already caught\n"
.string "{STR_VAR_3} in a row.\p"
.string "ANNOUNCER: It’s incredible!\n"
.string "It looks like a storm…\p"
.string "Seeing technique of that caliber, I’m\n"
.string "getting the itch to go fishing, too.\p"
.string "Viewers, why not take this as a cue to\n"
.string "try some {STR_VAR_2} fishing?\p"
.string "Until our next broadcast, farewell and\n"
.string "good fishing to you all!$"
gTVPokemonTodayFailedText00:: @ 08282F9B
.string "Hello!\p"
.string "It’s time for POKéMON TODAY!\p"
.string "BIG SIS: Hi! Is everyone peachy and\n"
.string "perky today?\p"
.string "Today, we’re going to look at {STR_VAR_1}’s\n"
.string "POKéMON {STR_VAR_2}!\p"
.string "BIG BRO: Yeah! That’s what we’re going\n"
.string "to do!$"
gTVPokemonTodayFailedText01:: @ 0828304D
.string "Oh!\n"
.string "Speaking of {STR_VAR_1}…\p"
.string "BIG SIS, I saw the TRAINER with my very\n"
.string "own eyes!\p"
.string "BIG SIS: Oh, what did you see?\p"
.string "BIG BRO: Well, I had to go on a trip to\n"
.string "{STR_VAR_2}.\p"
.string "That’s when I happened to come across\n"
.string "{STR_VAR_1}, who was trying to catch the\l"
.string "POKéMON {STR_VAR_3}, but…$"
gTVPokemonTodayFailedText02:: @ 08283135
.string "The POKéMON managed to get away!\p"
.string "It ended up wasting this many\n"
.string "POKé BALLS: {STR_VAR_2}!\p"
.string "You should have seen the expression\n"
.string "of frustration on {STR_VAR_1}’s face when\l"
.string "the POKéMON took off!$"
gTVPokemonTodayFailedText03:: @ 082831DF
.string "But {STR_VAR_1} goofed and made the\n"
.string "POKéMON faint!\p"
.string "It ended up wasting this many\n"
.string "POKé BALLS: {STR_VAR_2}!\p"
.string "You should have seen the expression\n"
.string "of stunned dismay on {STR_VAR_1}’s face\l"
.string "when the POKéMON fainted!$"
gTVPokemonTodayFailedText04:: @ 08283294
.string "BIG SIS: Hey, there!\n"
.string "That’s not nice!\p"
.string "You shouldn’t be laughing at other\n"
.string "people’s misfortune!\p"
.string "Oh, poor {STR_VAR_1}.\n"
.string "What a shame!\p"
.string "BIG BRO: That’s true!\n"
.string "Sorry for laughing.$"
gTVPokemonTodayFailedText05:: @ 08283337
.string "BIG SIS: Bufufu…\p"
.string "BIG BRO: Hey!\n"
.string "You just laughed, too!\p"
.string "BIG SIS: Huh?!\p"
.string "I didn’t laugh!\n"
.string "Honestly, I didn’t!\p"
.string "Oh, poor {STR_VAR_1}.\n"
.string "What a shame!\p"
.string "BIG BRO: …$"
gTVPokemonTodayFailedText06:: @ 082833C6
.string "BIG SIS: That’s enough silliness!\n"
.string "Let’s look at today’s POKéMON…\p"
.string "Huh?\n"
.string "We’re out of time already?\p"
.string "Aww!\n"
.string "We couldn’t profile a POKéMON today!\p"
.string "BIG BRO: See you again next time!\p"
.string "BIG SIS: Hey, don’t end the show\n"
.string "without me!$"
gTVPokemonTodaySuccessfulText00:: @ 082834A0
.string "Hello!\p"
.string "It’s time for POKéMON TODAY!\p"
.string "BIG SIS: Hi! Is everyone peachy and\n"
.string "perky today?\p"
.string "Today, we’re going to look at {STR_VAR_1}’s\n"
.string "POKéMON {STR_VAR_2}!\p"
.string "BIG BRO: Yeah! That’s what we’re going\n"
.string "to do!$"
gTVPokemonTodaySuccessfulText01:: @ 08283552
.string "BIG SIS: {STR_VAR_1} gave the nickname\n"
.string "{STR_VAR_3} to the {STR_VAR_2}!\p"
.string "It sounds like {STR_VAR_3} is getting\n"
.string "good, loving care!$"
gTVPokemonTodaySuccessfulText02:: @ 082835AE
.string "BIG BRO: The TRAINER had to throw this\n"
.string "many POKé BALLS to catch it: {STR_VAR_3}!\p"
.string "It finally took a single {STR_VAR_2}\n"
.string "to catch it!$"
gTVPokemonTodaySuccessfulText03:: @ 0828361F
.string "BIG SIS: If it was that easy to catch,\n"
.string "it must have been destiny that brought\l"
.string "{STR_VAR_1} and the {STR_VAR_2} together!$"
gTVPokemonTodaySuccessfulText04:: @ 08283685
.string "BIG SIS: Wow! That’s so neat!\p"
.string "But you know what they say, a POKéMON\n"
.string "that takes a lot of effort to catch\l"
.string "earns the love of its TRAINER!$"
gTVPokemonTodaySuccessfulText05:: @ 0828370C
.string "BIG SIS: {STR_VAR_1}’s {STR_VAR_2} is a\n"
.string "memorable POKéMON because it took an\l"
.string "invaluable MASTER BALL to catch!\p"
.string "BIG BRO: Wow! That’s mega-awesome!\p"
.string "BIG SIS: {STR_VAR_1} must have really\n"
.string "wanted that {STR_VAR_2}, for sure!$"
gTVPokemonTodaySuccessfulText06:: @ 082837C2
.string "BIG BRO: Then to give the nickname\n"
.string "{STR_VAR_3} to that {STR_VAR_2}…\p"
.string "You really get a good idea about\n"
.string "{STR_VAR_1}’s TRAINER sense.\p"
.string "BIG SIS: I second that notion!$"
gTVPokemonTodaySuccessfulText07:: @ 08283848
.string "If it were me, I’d give that nickname\n"
.string "to something like this {STR_VAR_3}!\p"
.string "BIG BRO: Whoa! That could be the start\n"
.string "of something new!$"
gTVPokemonTodaySuccessfulText08:: @ 082838C2
.string "{STR_VAR_2} the {STR_VAR_1}?\n"
.string "Doesn’t that sound perfect?\p"
.string "The letters and everything--they\n"
.string "sound just right for the POKéMON\l"
.string "{STR_VAR_1}!\p"
.string "BIG BRO: Yeah, true, that!$"
gTVPokemonTodaySuccessfulText09:: @ 0828394A
.string "As far as I know, no TRAINER has ever\n"
.string "given the nickname {STR_VAR_2} to their\l"
.string "{STR_VAR_1}!\p"
.string "BIG BRO: That just goes to show what\n"
.string "great taste the TRAINER has in picking\l"
.string "nicknames!$"
gTVPokemonTodaySuccessfulText10:: @ 082839EA
.string "The next time I catch a POKéMON,\n"
.string "I should give it the name {STR_VAR_2}.\p"
.string "BIG BRO: Huh? Me, too!\n"
.string "I’ll use the nickname {STR_VAR_2}, too!$"
gTVPokemonTodaySuccessfulText11:: @ 08283A5F
.string "BIG SIS: Oh, no!\n"
.string "Look at the time!\p"
.string "Well, gang, this is it for today.\n"
.string "See you again next time!\p"
.string "BIG BRO: Remember, it could be your\n"
.string "POKéMON in the spotlight next time!$"
gTVTodaysSmartShopperText00:: @ 08283B05
.string "Hello!\p"
.string "It’s time for TODAY’S SMART SHOPPER.\p"
.string "INTERVIEWER: How are you, viewers?\p"
.string "Today we’re visiting a shop\n"
.string "in {STR_VAR_2}.\p"
.string "Let’s check on what the hot sellers\n"
.string "have been recently.$"
gTVTodaysSmartShopperText01:: @ 08283BAF
.string "Let’s interview the clerk to get the\n"
.string "lowdown.\p"
.string "Hi, how’s your business?\p"
.string "CLERK: Oh, we’re doing excellent.\p"
.string "Recently, {STR_VAR_2} has been\n"
.string "selling especially strongly.\p"
.string "Why, just the other day a TRAINER\n"
.string "named {STR_VAR_1} bought {STR_VAR_3}.$"
gTVTodaysSmartShopperText02:: @ 08283C81
.string "INTERVIEWER: The TRAINER bought\n"
.string "{STR_VAR_3} {STR_VAR_2}S? That’s a haul!\p"
.string "If I may say so, {STR_VAR_1} must have\n"
.string "been stocking up for a long journey\l"
.string "to far-off places.\p"
.string "For traveling, {STR_VAR_2}S are so\n"
.string "important!$"
gTVTodaysSmartShopperText03:: @ 08283D32
.string "INTERVIEWER: Speaking of the item\n"
.string "{STR_VAR_2}, I just bought {STR_VAR_3} of\l"
.string "them recently.\p"
.string "After all, {STR_VAR_2}’s a great item!$"
gTVTodaysSmartShopperText04:: @ 08283D99
.string "INTERVIEWER: {STR_VAR_2}?!\n"
.string "But {STR_VAR_3} of them?!\p"
.string "I didn’t think there would be anyone\n"
.string "buying that many.\p"
.string "My goodness, I can only afford one or\n"
.string "two at a time…$"
gTVTodaysSmartShopperText05:: @ 08283E28
.string "INTERVIEWER: One time, I bought\n"
.string "a whole lot of the item {STR_VAR_2}.\p"
.string "But it turned out to be too many.\n"
.string "I ended up regretting it…\p"
.string "Since then, I only buy strictly what\n"
.string "I absolutely need…\p"
.string "Oops!\p"
.string "There’s no point talking about me!$"
gTVTodaysSmartShopperText06:: @ 08283F01
.string "CLERK: {STR_VAR_1} also bought the item\n"
.string "{STR_VAR_2} in bulk, taking {STR_VAR_3}.\p"
.string "INTERVIEWER: Oh, that’s smart.\n"
.string "{STR_VAR_2}’s a very good item, too.$"
gTVTodaysSmartShopperText07:: @ 08283F72
.string "CLERK: And, the TRAINER also bought\n"
.string "{STR_VAR_3} of the item {STR_VAR_2}.$"
gTVTodaysSmartShopperText08:: @ 08283FA9
.string "CLERK: Plus, it was during a big sale.\n"
.string "That’s smart shopping.$"
gTVTodaysSmartShopperText09:: @ 08283FE7
.string "INTERVIEWER: Hmm… {STR_VAR_1} sounds like\n"
.string "quite the shrewd bargain hunter!\p"
.string "In total, {STR_VAR_1}’s purchases came to…\p"
.string "¥{STR_VAR_2}?!\n"
.string "What an amazing sum!\p"
.string "Oops! We’re out of time!\n"
.string "See you on our next broadcast!$"
gTVTodaysSmartShopperText10:: @ 0828409E
.string "CLERK: {STR_VAR_1} is a VIP customer,\n"
.string "no doubt about it.$"
gTVTodaysSmartShopperText11:: @ 082840CE
.string "Let’s interview the clerk to get the\n"
.string "lowdown.\p"
.string "Hi, how’s your business?\p"
.string "CLERK: Oh, we’re doing unbelievable\n"
.string "business. It’s almost overwhelming.\p"
.string "Recently, a TRAINER named {STR_VAR_1}\n"
.string "bought the item {STR_VAR_2} in bulk.\p"
.string "The TRAINER almost cleared out our\n"
.string "entire stock of {STR_VAR_2}S.\p"
.string "I never dreamt that any customer\n"
.string "would ever need so many {STR_VAR_2}S.\l"
.string "It’s just unheard of!\p"
.string "INTERVIEWER: So that would be like 100\n"
.string "or 200 sold?\p"
.string "CLERK: Oh, no, much more than that!\p"
.string "INTERVIEWER: Oh, my goodness!\n"
.string "{STR_VAR_1} must be a special shopper!\p"
.string "CLERK: {STR_VAR_1} is a VIP customer,\n"
.string "no doubt about it.$"
gTVTodaysSmartShopperText12:: @ 082842E6
.string "INTERVIEWER: Hmm…\n"
.string "That is amazing.\p"
.string "But why would the TRAINER need to buy\n"
.string "so many?\p"
.string "… …\p"
.string "The mystery deepens, but this is all\n"
.string "the time we have today.\l"
.string "See you on our next broadcast!\p"
.string "Still, {STR_VAR_1} is certainly an enigma…$"
gTVWorldOfMastersText00:: @ 082843BA
.string "THE WORLD OF MASTERS\p"
.string "Hello, viewers.\p"
.string "Perhaps you are aware of a TRAINER\n"
.string "named {STR_VAR_1}.\p"
.string "{STR_VAR_1} is famous as a master at\n"
.string "catching POKéMON.\p"
.string "{STR_VAR_1}’s quest for POKéMON depends\n"
.string "entirely on a careful search on foot.\p"
.string "On one memorable day, the TRAINER\n"
.string "walked some {STR_VAR_2} steps.\p"
.string "The total number of POKéMON caught\n"
.string "that day reached an impressive {STR_VAR_3}!$"
gTVWorldOfMastersText01:: @ 082844FD
.string "That remarkable feat must have been\n"
.string "possible because of the trust between\l"
.string "the TRAINER and {STR_VAR_1}.$"
gTVWorldOfMastersText02:: @ 0828455B
.string "The master caught the day’s last\n"
.string "{STR_VAR_3} near {STR_VAR_2}.\p"
.string "That POKéMON apparently enjoys\n"
.string "a special status as a record holder.\p"
.string "Skilled TRAINERS should be encouraged\n"
.string "to challenge this fine record.\p"
.string "That’s all for today.\n"
.string "Please tune in next time.$"
gTVTodaysRivalTrainerText00:: @ 08284641
.string "TODAY’S RIVAL TRAINER!\p"
.string "Hello, fellow POKéMON TRAINERS!\n"
.string "How are we all doing today?\p"
.string "Today, like every other day,\n"
.string "we’ll examine one of our rivals!$"
gTVTodaysRivalTrainerText07:: @ 082846D2
.string "Today’s rival TRAINER is {STR_VAR_1},\n"
.string "who’s around {STR_VAR_3} now.\p"
.string "{STR_VAR_1} has so far registered\n"
.string "{STR_VAR_2} POKéMON in the POKéDEX.$"
gTVTodaysRivalTrainerText08:: @ 08284738
.string "Today’s rival TRAINER is {STR_VAR_1},\n"
.string "who’s in a SECRET BASE now.\p"
.string "{STR_VAR_1} has so far registered\n"
.string "{STR_VAR_2} POKéMON in the POKéDEX.$"
gTVTodaysRivalTrainerText09:: @ 082847A5
.string "Today’s rival TRAINER is {STR_VAR_1}.\p"
.string "So far, {STR_VAR_1} has registered\n"
.string "{STR_VAR_2} POKéMON in the POKéDEX.$"
gTVTodaysRivalTrainerText10:: @ 082847F7
.string "Today’s rival TRAINER is {STR_VAR_1},\n"
.string "who’s on a ferry now.\p"
.string "{STR_VAR_1} has so far registered\n"
.string "{STR_VAR_2} POKéMON in the POKéDEX.$"
.string "$"
gTVTodaysRivalTrainerText01:: @ 0828485F
.string "And how many BADGES does our rival\n"
.string "have? The number is {STR_VAR_1}!$"
gTVTodaysRivalTrainerText02:: @ 0828489A
.string "But our rival hasn’t obtained\n"
.string "a single BADGE yet!$"
gTVTodaysRivalTrainerText03:: @ 082848CC
.string "Our rival hasn’t obtained a single\n"
.string "BATTLE FRONTIER Symbol yet.$"
gTVTodaysRivalTrainerText04:: @ 0828490B
.string "Let’s see how many BATTLE FRONTIER\n"
.string "Symbols our rival has.\p"
.string "Gold Symbols: {STR_VAR_1}!\n"
.string "Silver Symbols: {STR_VAR_2}!$"
gTVTodaysRivalTrainerText05:: @ 0828496B
.string "Our rival has collected {STR_VAR_1} Battle\n"
.string "Point(s) at the BATTLE FRONTIER.$"
gTVTodaysRivalTrainerText06:: @ 082849AE
.string "So, how did you measure up in\n"
.string "comparison to {STR_VAR_1}?\p"
.string "The adventure rolls on!\p"
.string "Fellow TRAINERS!\p"
.string "Let’s all keep moving forward\n"
.string "and ahead of our rivals!$"
gTVDewfordTrendWatcherNetworkText00:: @ 08284A3E
.string "DEWFORD TREND-WATCHER NETWORK!\p"
.string "MC: Wassup?\n"
.string "We’ll keep it real with the latest on\l"
.string "what’s hip and happening in DEWFORD.\p"
.string "Our guest today is this old cat whose\n"
.string "claim to fame is being the authority\l"
.string "on all things in DEWFORD.\p"
.string "Old man: Glad to be here.\p"
.string "MC: Let’s cut to the chase, right on.\p"
.string "What’s your word on what’s groovin’\n"
.string "the good folks of DEWFORD?\p"
.string "Old man: {STR_VAR_1} {STR_VAR_2}.\p"
.string "MC: {STR_VAR_1} {STR_VAR_2},\n"
.string "you say?\p"
.string "Old man: No.\p"
.string "{STR_VAR_1} {STR_VAR_2} never\n"
.string "did get popular at all.\p"
.string "Would you like to hear about it?\p"
.string "MC: Uh, no. What we want to know is\n"
.string "what’s the in thing of the moment…$"
gTVDewfordTrendWatcherNetworkText01:: @ 08284C55
.string "Old man: {STR_VAR_1} {STR_VAR_2}\n"
.string "was what {STR_VAR_3} from LITTLEROOT\l"
.string "taught me as being trendy…$"
gTVDewfordTrendWatcherNetworkText02:: @ 08284C9B
.string "Old man: {STR_VAR_1} {STR_VAR_2}\n"
.string "was what {STR_VAR_3} from LITTLEROOT\l"
.string "taught me as being trendy…$"
gTVDewfordTrendWatcherNetworkText03:: @ 08284CE1
.string "But it was utterly hopeless.\p"
.string "{STR_VAR_1} {STR_VAR_2} festival!\p"
.string "{STR_VAR_1} {STR_VAR_2} contest!\p"
.string "I tried teaching everyone the best\n"
.string "I could, but…\p"
.string "Perhaps the {STR_VAR_1} part just\n"
.string "wasn’t right…\p"
.string "MC: Uh, excuse me, compadre, I need\n"
.string "to hear about what’s in now…$"
gTVDewfordTrendWatcherNetworkText04:: @ 08284DB6
.string "Old man: {STR_VAR_3}!\n"
.string "Please, tell me something bigger than\l"
.string "that {STR_VAR_1} {STR_VAR_2}!$"
gTVDewfordTrendWatcherNetworkText05:: @ 08284DF5
.string "Old man: {STR_VAR_3}!\n"
.string "Please, tell me something bigger than\l"
.string "that {STR_VAR_1} {STR_VAR_2}!$"
gTVDewfordTrendWatcherNetworkText06:: @ 08284E34
.string "MC: …Uh… So, there you have it,\n"
.string "all you trendy, hep cats out there!\p"
.string "{STR_VAR_1} {STR_VAR_2}…uh…\n"
.string "Didn’t get hip or happening in DEWFORD!\p"
.string "My time is up. Catch you on the fly!\p"
.string "Old man: {STR_VAR_1} {STR_VAR_2}!$"
gTVHoennTreasureInvestigatorsText00:: @ 08284EDF
.string "HOENN TREASURE INVESTIGATORS!\p"
.string "Hi, gang!\n"
.string "Score any secret items lately?\p"
.string "As always, we’ll examine eyewitness\n"
.string "reports of secrets from all over!\p"
.string "Let’s start with a letter.\n"
.string "It says, “{STR_VAR_1} discovered!”$"
gTVHoennTreasureInvestigatorsText01:: @ 08284FA1
.string "Wow, we’d better check this letter\n"
.string "out! Let me read it to you.\p"
.string "…Dear INVESTIGATORS,\n"
.string "I hope you are well.\p"
.string "I recently saw {STR_VAR_2} somewhere\n"
.string "around {STR_VAR_3}.\p"
.string "The TRAINER found the item\n"
.string "{STR_VAR_1}. It made me envious.\p"
.string "…Well, good going, {STR_VAR_2}!\p"
.string "Viewers, let that motivate you to\n"
.string "fire up your ITEMFINDERS and search!\p"
.string "I’ll be waiting for exciting news\n"
.string "from all of you!$"
gTVHoennTreasureInvestigatorsText02:: @ 082850F5
.string "Wow, we’d better check this letter\n"
.string "out! Let me read it to you.\p"
.string "…Dear INVESTIGATORS,\n"
.string "I hope you are well.\p"
.string "I recently saw {STR_VAR_2} on a ferry.\p"
.string "The TRAINER found the item\n"
.string "{STR_VAR_1}. It made me envious.\p"
.string "…Well, good going, {STR_VAR_2}!\p"
.string "Viewers, let that motivate you to\n"
.string "fire up your ITEMFINDERS and search!\p"
.string "I’ll be waiting for exciting news\n"
.string "from all of you!$"
gTVFindThatGamerText00:: @ 08285240
.string "FIND THAT GAMER!\p"
.string "Hey, all you gamers!\n"
.string "How’s your {STR_VAR_2} spinning?\p"
.string "Like always, we’ll cast our spotlight\n"
.string "on a rare TRAINER who’s visited the\l"
.string "GAME CORNER!\p"
.string "Today, our no. 1 gamer is…\n"
.string "{STR_VAR_1}!$"
gTVFindThatGamerText01:: @ 082852F4
.string "{STR_VAR_1} played the {STR_VAR_2} game\n"
.string "and won a rare {STR_VAR_3} COINS.\p"
.string "“When {STR_VAR_1} comes, we need to\n"
.string "make sure we have enough COINS.”\p"
.string "That’s what the GAME CORNER clerks\n"
.string "mutter when our gamer is in play!\p"
.string "Viewers, it’s best to watch your COINS\n"
.string "like {STR_VAR_1} if you visit the GAME\l"
.string "CORNER and play the {STR_VAR_2} game.\p"
.string "This is live from the GAME CORNER--\n"
.string "where you can feel the excitement!\p"
.string "That’s all for today!$"
gTVFindThatGamerText02:: @ 08285463
.string "{STR_VAR_1} played the {STR_VAR_2} game\n"
.string "and lost {STR_VAR_3} COINS.\p"
.string "“When {STR_VAR_1} comes, our COIN\n"
.string "sales seem to increase.”\p"
.string "That’s what the GAME CORNER clerks\n"
.string "say when our gamer is in play!$"
gTVFindThatGamerText03:: @ 08285500
.string "Viewers, it’s best to watch your COINS\n"
.string "like {STR_VAR_1} if you visit the GAME\l"
.string "CORNER and play the {STR_VAR_2} game.\p"
.string "This is live from the GAME CORNER--\n"
.string "where you can feel the excitement!\p"
.string "That’s all for today!$"
gTVBreakingNewsText00:: @ 082855BF
.string "BREAKING NEWS TV!$"
gTVBreakingNewsText01:: @ 082855D1
.string "Rare {STR_VAR_2} caught by\n"
.string "{STR_VAR_1}!\p"
.string "We’re live from the vicinity of\n"
.string "{STR_VAR_3}!\p"
.string "{STR_VAR_1} successfully captured\n"
.string "a rare {STR_VAR_2} earlier here!$"
gTVBreakingNewsText02:: @ 0828563C
.string "When {STR_VAR_1} encountered the rare\n"
.string "{STR_VAR_2}, the TRAINER sent out\l"
.string "the POKéMON {STR_VAR_3}.$"
gTVBreakingNewsText03:: @ 08285682
.string "In the battle, the number of POKé\n"
.string "BALLS thrown by the TRAINER was {STR_VAR_1}.\p"
.string "Ultimately, the rare POKéMON was\n"
.string "caught by the {STR_VAR_2} used last.$"
gTVBreakingNewsText04:: @ 08285705
.string "In that instant, {STR_VAR_2}\n"
.string "echoed with {STR_VAR_1}’s roars of\l"
.string "triumphant joy.\p"
.string "I must say I’m a little envious of\n"
.string "{STR_VAR_1}. I’d love to roar, too.\p"
.string "…That ends the live feed from\n"
.string "the happy scene!$"
gTVBreakingNewsText05:: @ 082857B0
.string "{STR_VAR_1} fails to capture a rare\n"
.string "{STR_VAR_2}!\p"
.string "We’re live from the vicinity of\n"
.string "{STR_VAR_3}!\p"
.string "It was here that {STR_VAR_1} failed\n"
.string "to capture a rare {STR_VAR_2}!$"
gTVBreakingNewsText06:: @ 08285824
.string "When {STR_VAR_1} encountered the rare\n"
.string "{STR_VAR_2}, the TRAINER sent out\l"
.string "the POKéMON {STR_VAR_3}.$"
gTVBreakingNewsText07:: @ 0828586A
.string "The TRAINER made the {STR_VAR_2}\n"
.string "use the move {STR_VAR_1}.\p"
.string "Without meaning to, the TRAINER\n"
.string "made the rare POKéMON faint…$"
gTVBreakingNewsText12:: @ 082858D0
.string "However, {STR_VAR_1} panicked at\n"
.string "the sight of the rare {STR_VAR_2}.\p"
.string "In confusion, the TRAINER ordered\n"
.string "{STR_VAR_3} to attack.\p"
.string "Without meaning to, the TRAINER\n"
.string "made the rare POKéMON faint.$"
gTVBreakingNewsText08:: @ 0828596F
.string "In that instant, {STR_VAR_2}\n"
.string "echoed with {STR_VAR_1}’s shrieks of\l"
.string "frustration…$"
gTVBreakingNewsText09:: @ 082859AC
.string "However, {STR_VAR_1} seemed to run\n"
.string "out of POKé BALLS.\p"
.string "The TRAINER had to break off\n"
.string "the battle with the rare {STR_VAR_2}.\p"
.string "In that instant, {STR_VAR_3}\n"
.string "echoed with {STR_VAR_1}’s shrieks of\l"
.string "frustration…$"
gTVBreakingNewsText10:: @ 08285A50
.string "However, the {STR_VAR_2} fled without\n"
.string "warning.\p"
.string "In that instant, {STR_VAR_3}\n"
.string "echoed with {STR_VAR_1}’s shrieks of\l"
.string "frustration…$"
gTVBreakingNewsText11:: @ 08285AB3
.string "I must say I feel for {STR_VAR_1}.\n"
.string "Why, it makes me want to shriek, too.\p"
.string "…That ends the live feed from\n"
.string "the melancholy scene!$"
gTVSecretBaseVisitText00:: @ 08285B27
.string "Hello, folks!\n"
.string "It’s time again for\l"
.string "a SECRET BASE VISIT.\p"
.string "Today, we visit the SECRET BASE\n"
.string "of {STR_VAR_1}.\p"
.string "How has {STR_VAR_1} personalized\n"
.string "the SECRET BASE?\p"
.string "Let’s find out!\n"
.string "… … … … … …$"
gTVSecretBaseVisitText01:: @ 08285BCA
.string "Oh!\n"
.string "How marvelous!\p"
.string "This {STR_VAR_2}…\n"
.string "It’s not what one would expect to\l"
.string "find here!$"
gTVSecretBaseVisitText02:: @ 08285C13
.string "Oh!\n"
.string "How remarkable!\p"
.string "There isn’t a single piece\n"
.string "of furniture or interior goods!\p"
.string "Mere mortals couldn’t hope to\n"
.string "imitate this bold statement!\p"
.string "It’s simple, but it bursts, yes,\n"
.string "bursts with wildness!\p"
.string "My hat’s off to you, {STR_VAR_1}.\n"
.string "It had to be you!$"
gTVSecretBaseVisitText03:: @ 08285CFF
.string "Oh! I see!\n"
.string "With perfect clarity, I see it!\p"
.string "This {STR_VAR_2} being here…\n"
.string "It sends an effective message!$"
gTVSecretBaseVisitText04:: @ 08285D5D
.string "Oh! I see!\n"
.string "With perfect clarity, I see it!\p"
.string "This space is kept deliberately\n"
.string "clear of interior items!\p"
.string "It sends an effective message!$"
gTVSecretBaseVisitText05:: @ 08285DE0
.string "Wheeew!\p"
.string "The pairing of the {STR_VAR_2}\n"
.string "with the {STR_VAR_3}!\p"
.string "It’s a dream combination if there\n"
.string "ever was one!$"
gTVSecretBaseVisitText06:: @ 08285E3B
.string "Wheeew!\p"
.string "The placement of this {STR_VAR_2}\n"
.string "right here…\p"
.string "It has a presence that fills\n"
.string "the entire SECRET BASE!$"
gTVSecretBaseVisitText07:: @ 08285E9D
.string "Wheeew!\p"
.string "There’s nothing in place here.\p"
.string "This empty space has an effect on\n"
.string "the entire SECRET BASE.$"
gTVSecretBaseVisitText08:: @ 08285EFE
.string "Oh!\n"
.string "Here comes {STR_VAR_1}!\l"
.string "Let’s challenge the TRAINER!\p"
.string "… … … … … …\n"
.string "… … … … … …$"
gTVSecretBaseVisitText09:: @ 08285F46
.string "Sigh…\n"
.string "I’ve got to hand it to {STR_VAR_1}.\p"
.string "The TRAINER’s POKéMON were truly\n"
.string "worthy of the CHAMPION’s title.\p"
.string "They gave ample proof of {STR_VAR_1}’s\n"
.string "toughness as a TRAINER.\p"
.string "That the {STR_VAR_2} knew the move\n"
.string "{STR_VAR_3}…\p"
.string "It shows you what sort of a TRAINER\n"
.string "{STR_VAR_1} is.\p"
.string "Certainly, it was quite a lesson!$"
gTVSecretBaseVisitText10:: @ 08286049
.string "Aiyeeh!\n"
.string "I’ve got to hand it to {STR_VAR_1}.\p"
.string "The TRAINER’s POKéMON were\n"
.string "monstrously tough!\p"
.string "They gave ample proof of {STR_VAR_1}’s\n"
.string "tenacity as a TRAINER.\p"
.string "That the {STR_VAR_2} knew the move\n"
.string "{STR_VAR_3}…\p"
.string "It shows you what sort of a TRAINER\n"
.string "{STR_VAR_1} is.\p"
.string "Certainly, it was quite a lesson!$"
gTVSecretBaseVisitText11:: @ 0828613A
.string "Wheeew!\n"
.string "I’ve got to hand it to {STR_VAR_1}.\p"
.string "The TRAINER’s POKéMON were clearly\n"
.string "raised in a well-balanced manner.\p"
.string "They gave ample proof of {STR_VAR_1}’s\n"
.string "thoughtfulness as a TRAINER.\p"
.string "That the {STR_VAR_2} knew the move\n"
.string "{STR_VAR_3}…\p"
.string "It shows you what sort of a TRAINER\n"
.string "{STR_VAR_1} is.\p"
.string "Certainly, it was quite a lesson!$"
gTVSecretBaseVisitText12:: @ 08286248
.string "Well, well!\n"
.string "I’ve got to hand it to {STR_VAR_1}.\p"
.string "The TRAINER’s POKéMON showed\n"
.string "great promise for future growth.\p"
.string "They represented {STR_VAR_1}’s\n"
.string "hopes and dreams.\p"
.string "That the {STR_VAR_2} knew the move\n"
.string "{STR_VAR_3}…\p"
.string "It shows you what sort of a TRAINER\n"
.string "{STR_VAR_1} is.\p"
.string "Certainly, it was quite a lesson!$"
gTVSecretBaseVisitText13:: @ 08286340
.string "I must say, what a superb SECRET BASE\n"
.string "it was!\p"
.string "Viewers, if you have the chance,\n"
.string "do visit {STR_VAR_1}’s SECRET BASE.\p"
.string "Until next time, I bid you adieu!$"
gTVPokemonLotteryWinnerFlashReportText00:: @ 082863CC
.string "It’s exciting!\n"
.string "It’s dramatic!\p"
.string "It’s the POKéMON LOTTERY\n"
.string "WINNER FLASH REPORT!\p"
.string "Hello! We’re coming at you live from\n"
.string "the POKéMON LOTTERY CORNER on\l"
.string "the ground floor of the LILYCOVE\l"
.string "DEPARTMENT STORE!\p"
.string "Like it always happens, another\n"
.string "lucky TRAINER appeared today!\p"
.string "That TRAINER’s name…\n"
.string "{STR_VAR_1}!\p"
.string "{STR_VAR_1} won the {STR_VAR_2} prize\n"
.string "and took home the {STR_VAR_3}!\p"
.string "{STR_VAR_1}!\n"
.string "Congratulations!\p"
.string "Viewers, don’t just watch,\n"
.string "get in on the action!\p"
.string "All of us at the LILYCOVE DEPARTMENT\n"
.string "STORE look forward to your next visit!\p"
.string "This has been a live broadcast from\n"
.string "the LILYCOVE DEPARTMENT STORE,\l"
.string "offering you the greatest selection\l"
.string "in all HOENN!$"
gTVThePokemonBattleSeminarText00:: @ 08286616
.string "THE POKéMON BATTLE SEMINAR!\p"
.string "We examine battles to see what\n"
.string "lessons we may learn from others.\p"
.string "Today’s case study is on {STR_VAR_1}’s\n"
.string "battle.\p"
.string "{STR_VAR_1}’s {STR_VAR_2} was\n"
.string "battling one {STR_VAR_3}…$"
gTVThePokemonBattleSeminarText01:: @ 082866B6
.string "And it used the move {STR_VAR_3}\n"
.string "on the {STR_VAR_2}…\p"
.string "Hmm… {STR_VAR_1}!\n"
.string "That’s the wrong thing to do!$"
gTVThePokemonBattleSeminarText02:: @ 08286700
.string "In addition to the doomed move,\n"
.string "the TRAINER’s {STR_VAR_1} also knew$"
gTVThePokemonBattleSeminarText03:: @ 0828673B
.string "the moves {STR_VAR_1}, {STR_VAR_2},\n"
.string "and {STR_VAR_3}.$"
gTVThePokemonBattleSeminarText04:: @ 08286755
.string "the moves {STR_VAR_1} and\n"
.string "{STR_VAR_2}.$"
gTVThePokemonBattleSeminarText05:: @ 0828676A
.string "the move {STR_VAR_2}.$"
gTVThePokemonBattleSeminarText06:: @ 08286777
.string "So, in this situation, what should\n"
.string "the TRAINER have used?\p"
.string "… … … … … …\n"
.string "The move {STR_VAR_1}!\p"
.string "The move {STR_VAR_1} would have been\n"
.string "absolutely better than {STR_VAR_2}.\p"
.string "Viewers, I urge you to learn from this\n"
.string "case and battle with intelligence!\p"
.string "Until next time, farewell!$"
gTVTrainerFanClubText00:: @ 08286866
.string "All together now!\n"
.string "TRAINER FAN CLUB!\p"
.string "MC: How’s everyone groovin’?\n"
.string "Today, we’ve rounded up the fans of\l"
.string "the hyper-popular TRAINER {STR_VAR_1}!\p"
.string "FANS: Wrooooooaaaaah!\p"
.string "FANS: {STR_VAR_1}!\p"
.string "MC: Everyone!\n"
.string "How do you like {STR_VAR_1}?!\p"
.string "FANS: We love {STR_VAR_1}!\p"
.string "MC: What do you love about\n"
.string "{STR_VAR_1}?!$"
gTVTrainerFanClubText01:: @ 0828695E
.string "FANS: Their cool way of throwing\n"
.string "POKé BALLS!$"
gTVTrainerFanClubText02:: @ 0828698B
.string "FANS: Their adorable way of running!$"
gTVTrainerFanClubText03:: @ 082869B0
.string "FANS: How the TRAINER turns tough\n"
.string "when the going gets tough!$"
gTVTrainerFanClubText04:: @ 082869ED
.string "FANS: The TRAINER’s knowledge of\n"
.string "POKéMON!$"
gTVTrainerFanClubText05:: @ 08286A17
.string "FANS: The TRAINER’s kindness toward\n"
.string "all POKéMON!$"
gTVTrainerFanClubText06:: @ 08286A48
.string "FANS: The TRAINER’s amazing\n"
.string "BIKE-riding techniques!$"
gTVTrainerFanClubText07:: @ 08286A7C
.string "FANS: The TRAINER’s impressive\n"
.string "item-buying style!$"
gTVTrainerFanClubText08:: @ 08286AAE
.string "FANS: The TRAINER’s charming way\n"
.string "of nicknaming POKéMON!$"
gTVTrainerFanClubText09:: @ 08286AE6
.string "FANS: The TRAINER’s nifty style of\n"
.string "decorating a SECRET BASE!$"
gTVTrainerFanClubText10:: @ 08286B23
.string "FANS: The TRAINER’s bold ways of\n"
.string "using TMs!$"
gTVTrainerFanClubText11:: @ 08286B4F
.string "MC: As you’ve just seen, {STR_VAR_1}\n"
.string "is hot! Like, too hot to touch, yow!\p"
.string "Among {STR_VAR_1}’s FANS\n"
.string "there’s a special slogan!\p"
.string "MC: When I say {STR_VAR_1},\n"
.string "you say…\p"
.string "FANS: {STR_VAR_2}!\p"
.string "FANS: {STR_VAR_3}!\p"
.string "FANS: {STR_VAR_2}!\p"
.string "FANS: {STR_VAR_3}!\p"
.string "MC: That’s right, when someone says,\n"
.string "“{STR_VAR_1}”…\p"
.string "Come back with, “{STR_VAR_2}\n"
.string "{STR_VAR_3}!”\p"
.string "That has such a unique ring to it!\n"
.string "I can see why people become FANS\l"
.string "of {STR_VAR_1}!\p"
.string "Okay, you, in front of the TV, join us!\n"
.string "All together now!\p"
.string "MC: When I say {STR_VAR_1},\n"
.string "you say…\p"
.string "FANS: {STR_VAR_2}!\p"
.string "FANS: {STR_VAR_3}!\p"
.string "FANS: {STR_VAR_2}!\p"
.string "FANS: {STR_VAR_3}!\p"
.string "MC: Thanks for joining us, all you\n"
.string "wild FANS of {STR_VAR_1}!\l"
.string "That’s the show! See you again!\p"
.string "MC: When I say {STR_VAR_1},\n"
.string "you say…\p"
.string "FANS: {STR_VAR_2}!\p"
.string "FANS: {STR_VAR_3}!$"
gTVCutiesText00:: @ 08286D8F
.string "SPOT THE CUTIES!\n"
.string "POKéMON IN RIBBONS!\p"
.string "Hello, my sweet viewers!\p"
.string "I just know you’ll agree, but a POKéMON\n"
.string "wearing RIBBONS is simply divine!\p"
.string "Today, I want to share with you\n"
.string "a lovely POKéMON I spotted while\l"
.string "out on a stroll in town.\p"
.string "Today’s featured pretty POKéMON\n"
.string "is {STR_VAR_1}’s {STR_VAR_2}.$"
gTVCutiesText01:: @ 08286E9D
.string "The number of RIBBONS that\n"
.string "{STR_VAR_2} wears is {STR_VAR_3}.\p"
.string "It says a lot about how much\n"
.string "{STR_VAR_1} adores the POKéMON.$"
gTVCutiesText02:: @ 08286EFC
.string "{STR_VAR_2} wears an amazing\n"
.string "{STR_VAR_3} RIBBONS!\p"
.string "It speaks volumes about {STR_VAR_1}’s\n"
.string "commitment to the POKéMON!$"
gTVCutiesText03:: @ 08286F54
.string "{STR_VAR_2} wears an incredible\n"
.string "{STR_VAR_3} RIBBONS!\p"
.string "It shows you {STR_VAR_1}’s total\n"
.string "dedication as a collector!$"
gTVCutiesText04:: @ 08286FAA
.string "Let us take a closer look at the many\n"
.string "RIBBONS worn by {STR_VAR_2}.$"
gTVCutiesText05:: @ 08286FE4
.string "The CHAMPION RIBBON is especially\n"
.string "fetching.\p"
.string "{STR_VAR_2} received it upon entering\n"
.string "the HALL OF FAME.\p"
.string "It verily draws out the bravery\n"
.string "of {STR_VAR_2}.\p"
.string "{STR_VAR_2} and the CHAMP RIBBON!\n"
.string "The combination is super effective!$"
gTVCutiesText06:: @ 082870A3
.string "The COOL RIBBON is especially\n"
.string "fetching.\p"
.string "{STR_VAR_2} received it for winning\n"
.string "a COOL CONTEST.\p"
.string "It verily draws out the coolness\n"
.string "of {STR_VAR_2}.\p"
.string "{STR_VAR_2} and the COOL RIBBON!\n"
.string "The combination is super effective!$"
gTVCutiesText07:: @ 0828715A
.string "The BEAUTY RIBBON is especially\n"
.string "fetching.\p"
.string "{STR_VAR_2} received it for winning\n"
.string "a BEAUTY CONTEST.\p"
.string "It verily draws out the beauty\n"
.string "of {STR_VAR_2}.\p"
.string "{STR_VAR_2} and the BEAUTY RIBBON!\n"
.string "The combination is super effective!$"
gTVCutiesText08:: @ 08287215
.string "The CUTE RIBBON is especially\n"
.string "fetching.\p"
.string "{STR_VAR_2} received it for winning\n"
.string "a CUTE CONTEST.\p"
.string "It verily draws out the cuteness\n"
.string "of {STR_VAR_2}.\p"
.string "{STR_VAR_2} and the CUTE RIBBON!\n"
.string "The combination is super effective!$"
gTVCutiesText09:: @ 082872CC
.string "The SMART RIBBON is especially\n"
.string "fetching.\p"
.string "{STR_VAR_2} received it for winning\n"
.string "a SMART CONTEST.\p"
.string "It verily draws out the smartness\n"
.string "of {STR_VAR_2}.\p"
.string "{STR_VAR_2} and the SMART RIBBON!\n"
.string "The combination is super effective!$"
gTVCutiesText10:: @ 08287387
.string "The TOUGH RIBBON is especially\n"
.string "fetching.\p"
.string "{STR_VAR_2} received it for winning\n"
.string "a TOUGH CONTEST.\p"
.string "It verily draws out the toughness\n"
.string "of {STR_VAR_2}.\p"
.string "{STR_VAR_2} and the TOUGH RIBBON!\n"
.string "The combination is super effective!$"
gTVCutiesText11:: @ 08287442
.string "The WINNING RIBBON is especially\n"
.string "fetching.\p"
.string "{STR_VAR_2} received it for its feats\n"
.string "at the BATTLE TOWER.\p"
.string "It verily draws out the mightiness\n"
.string "of {STR_VAR_2}.\p"
.string "{STR_VAR_2} and the WINNING RIBBON!\n"
.string "The combination is super effective!$"
gTVCutiesText12:: @ 08287508
.string "The VICTORY RIBBON is especially\n"
.string "fetching.\p"
.string "{STR_VAR_2} received it for its feats\n"
.string "at the BATTLE TOWER.\p"
.string "It verily draws out the incredible\n"
.string "mightiness of {STR_VAR_2}.\p"
.string "{STR_VAR_2} and the VICTORY RIBBON!\n"
.string "The combination is super effective!$"
gTVCutiesText13:: @ 082875D9
.string "The ARTIST RIBBON is especially\n"
.string "fetching.\p"
.string "{STR_VAR_2} received it for being\n"
.string "the model for an artist.\p"
.string "It verily draws out the pop-star charm\n"
.string "of {STR_VAR_2}.\p"
.string "{STR_VAR_2} and the ARTIST RIBBON!\n"
.string "The combination is super effective!$"
gTVCutiesText14:: @ 082876A1
.string "The Hard Worker RIBBON is\n"
.string "especially fetching.\p"
.string "{STR_VAR_2} received it for being\n"
.string "an especially dedicated worker.\p"
.string "It verily draws out the determination\n"
.string "of {STR_VAR_2}.\p"
.string "{STR_VAR_2} and the Hard Worker RIBBON!\n"
.string "The combination is super effective!$"
gTVCutiesText15:: @ 08287779
.string "…Sigh…\p"
.string "RIBBONS and POKéMON…\n"
.string "They go so wonderfully together!\p"
.string "Before I swoon,\n"
.string "I bid you all farewell!$"
gTVPokemonNewsBattleFrontierText00:: @ 082877DE
.string "Greetings!\n"
.string "It’s time for POKéMON NEWS.\p"
.string "We’ve got some uplifting news from\n"
.string "the BATTLE FRONTIER.$"
gTVPokemonNewsBattleFrontierText01:: @ 0828783D
.string "The TRAINER {STR_VAR_1} set a new\n"
.string "{STR_VAR_2}-win-streak record while on\l"
.string "the BATTLE TOWER’s SINGLE BATTLE\l"
.string "ROOM challenge.\p"
.string "Here’s to {STR_VAR_1}!$"
gTVPokemonNewsBattleFrontierText02:: @ 082878B3
.string "The TRAINER {STR_VAR_1} set a new\n"
.string "{STR_VAR_2}-win-streak record while on\l"
.string "the BATTLE TOWER’s DOUBLE BATTLE\l"
.string "ROOM challenge.\p"
.string "Here’s to {STR_VAR_1}!$"
gTVPokemonNewsBattleFrontierText03:: @ 08287929
.string "The TRAINER {STR_VAR_1} set a new\n"
.string "{STR_VAR_2}-win-streak record while on\l"
.string "the BATTLE TOWER’s MULTI BATTLE\l"
.string "ROOM challenge.\p"
.string "Here’s to {STR_VAR_1}!$"
gTVPokemonNewsBattleFrontierText04:: @ 0828799E
.string "The TRAINER {STR_VAR_1} set a new\n"
.string "{STR_VAR_2}-win-streak record while on\l"
.string "the BATTLE TOWER’s LINK MULTI BATTLE\l"
.string "ROOM challenge.\p"
.string "Here’s to {STR_VAR_1}!$"
gTVPokemonNewsBattleFrontierText05:: @ 08287A18
.string "The TRAINER {STR_VAR_1} set a new\n"
.string "{STR_VAR_2}-championship-streak record\l"
.string "competing in the BATTLE DOME’s\l"
.string "SINGLE BATTLE Tournaments.\p"
.string "Here’s to {STR_VAR_1}!$"
gTVPokemonNewsBattleFrontierText06:: @ 08287A97
.string "The TRAINER {STR_VAR_1} set a new\n"
.string "{STR_VAR_2}-championship-streak record\l"
.string "competing in the BATTLE DOME’s\l"
.string "DOUBLE BATTLE Tournaments.\p"
.string "Here’s to {STR_VAR_1}!$"
gTVPokemonNewsBattleFrontierText07:: @ 08287B16
.string "The TRAINER {STR_VAR_1} set a new\n"
.string "{STR_VAR_2}-win-streak record while on\l"
.string "the BATTLE FACTORY’s Battle\l"
.string "Swap Single challenge.\p"
.string "Here’s to {STR_VAR_1}!$"
gTVPokemonNewsBattleFrontierText08:: @ 08287B8E
.string "The TRAINER {STR_VAR_1} set a new\n"
.string "{STR_VAR_2}-win-streak record while on\l"
.string "the BATTLE FACTORY’s Battle\l"
.string "Swap Double challenge.\p"
.string "Here’s to {STR_VAR_1}!$"
gTVPokemonNewsBattleFrontierText09:: @ 08287C06
.string "The TRAINER {STR_VAR_1} set a new\n"
.string "record of clearing {STR_VAR_2} rooms\l"
.string "while on the BATTLE PIKE’s Battle\l"
.string "Choice challenge.\p"
.string "Here’s to {STR_VAR_1}!$"
gTVPokemonNewsBattleFrontierText10:: @ 08287C7D
.string "The TRAINER {STR_VAR_1} set a new\n"
.string "{STR_VAR_2}-win-streak record while\l"
.string "competing in the BATTLE ARENA’s\l"
.string "Set KO Tournaments.\p"
.string "Here’s to {STR_VAR_1}!$"
gTVPokemonNewsBattleFrontierText11:: @ 08287CF3
.string "The TRAINER {STR_VAR_1} set a new\n"
.string "{STR_VAR_2}-win-streak record while on\l"
.string "the BATTLE PALACE’s SINGLE BATTLE\l"
.string "HALL challenge.\p"
.string "Here’s to {STR_VAR_1}!$"
gTVPokemonNewsBattleFrontierText12:: @ 08287D6A
.string "The TRAINER {STR_VAR_1} set a new\n"
.string "{STR_VAR_2}-win-streak record while on\l"
.string "the BATTLE PALACE’s DOUBLE BATTLE\l"
.string "HALL challenge.\p"
.string "Here’s to {STR_VAR_1}!$"
gTVPokemonNewsBattleFrontierText13:: @ 08287DE1
.string "The TRAINER {STR_VAR_1} set a new\n"
.string "record of clearing {STR_VAR_2} floors\l"
.string "while on the BATTLE PYRAMID’s\l"
.string "Battle Quest challenge.\p"
.string "Here’s to {STR_VAR_1}!$"
gTVPokemonNewsBattleFrontierText14:: @ 08287E5B
.string "And to the three POKéMON, {STR_VAR_1},\n"
.string "{STR_VAR_2}, and {STR_VAR_3}!\p"
.string "Congratulations for your\n"
.string "record-breaking performance!$"
gTVPokemonNewsBattleFrontierText15:: @ 08287EBB
.string "And to the two POKéMON, {STR_VAR_1}\n"
.string "and {STR_VAR_2}!\p"
.string "Congratulations for your\n"
.string "record-breaking performance!$"
gTVPokemonNewsBattleFrontierText16:: @ 08287F14
.string "And to the four POKéMON: {STR_VAR_1}!\p"
.string "{STR_VAR_2}!\p"
.string "{STR_VAR_3}!$"
gTVPokemonNewsBattleFrontierText17:: @ 08287F39
.string "And {STR_VAR_1}!\p"
.string "Congratulations for your\n"
.string "record-breaking performance!$"
gTVPokemonNewsBattleFrontierText18:: @ 08287F77
.string "Let’s hope for more record-setting\n"
.string "feats from {STR_VAR_1} and the loyal\l"
.string "POKéMON!\p"
.string "That’s the news on POKéMON NEWS!$"
gTVWhatsNo1InHoennTodayText00:: @ 08287FE0
.string "WHAT’S NO. 1 IN HOENN TODAY?\n"
.string "Yes, it’s that time again!\p"
.string "Hello, viewers! Are you giving your\n"
.string "best at whatever you do?\p"
.string "Let’s have a look at the TRAINER\n"
.string "who did the very best today!\p"
.string "Today’s no. 1 TRAINER is none other\n"
.string "than {STR_VAR_1}!$"
gTVWhatsNo1InHoennTodayText01:: @ 082880C0
.string "In one day, {STR_VAR_1} spun the SLOTS\n"
.string "at the GAME CORNER {STR_VAR_2} times.\p"
.string "While playing, {STR_VAR_1} was heard\n"
.string "murmuring, “For me, the reels don’t\l"
.string "even move…”\l"
.string "Isn’t that interesting?$"
gTVWhatsNo1InHoennTodayText02:: @ 0828815F
.string "In one day, {STR_VAR_1} played\n"
.string "the ROULETTE game at the GAME\l"
.string "CORNER {STR_VAR_2} times.\p"
.string "While playing, {STR_VAR_1} shouted,\n"
.string "“Let the balls decide!”\p"
.string "The TRAINER’s eyes were focused and\n"
.string "the face showed concentration.$"
gTVWhatsNo1InHoennTodayText03:: @ 0828821A
.string "In one day, {STR_VAR_1} battled\n"
.string "wild POKéMON {STR_VAR_2} times!\p"
.string "Apparently, {STR_VAR_1}’s POKéMON\n"
.string "have grown incomparably stronger.\p"
.string "They appear eager to battle anywhere,\n"
.string "anytime, and anyhow!$"
gTVWhatsNo1InHoennTodayText04:: @ 082882BE
.string "In just one day, {STR_VAR_1} spun\n"
.string "the BERRY BLENDER {STR_VAR_2} times!\p"
.string "Toward the end, even {STR_VAR_1}\n"
.string "seemed to get dizzy.\p"
.string "The TRAINER appeared to totter\n"
.string "around like a SPINDA!$"
gTVWhatsNo1InHoennTodayText05:: @ 08288355
.string "In just one day, {STR_VAR_1} planted\n"
.string "{STR_VAR_2} BERRIES!\p"
.string "As a result, {STR_VAR_1}’s clothes\n"
.string "became filthy with dirt.\p"
.string "Where the TRAINER planted, countless\n"
.string "flowers have burst into bloom.\p"
.string "The flowers are said to soothe\n"
.string "the emotions of people.$"
gTVWhatsNo1InHoennTodayText06:: @ 0828842B
.string "In just one day, {STR_VAR_1} picked\n"
.string "{STR_VAR_2} BERRIES!\p"
.string "{STR_VAR_1}’s BAG became so filled\n"
.string "with BERRIES, the TRAINER had trouble\l"
.string "walking afterward!$"
gTVWhatsNo1InHoennTodayText07:: @ 082884A5
.string "In just one day, {STR_VAR_1} obtained\n"
.string "{STR_VAR_2} Battle Points!\p"
.string "{STR_VAR_1} was later seen wrestling\n"
.string "with the choice of exchanging\l"
.string "the Battle Points for a cool item or\l"
.string "a nifty interior decoration.\p"
.string "The TRAINER reportedly was grinning\n"
.string "while mulling options.$"
gTVWhatsNo1InHoennTodayText08:: @ 0828858B
.string "Well, isn’t that something!\p"
.string "{STR_VAR_1}!\n"
.string "You’re today’s no. 1 TRAINER!\p"
.string "Viewers, take heart from {STR_VAR_1}!\n"
.string "You, too, can be no. 1 every day!$"
gTVSecretBaseSecretsText00:: @ 08288608
.string "SECRET BASE SECRETS!\p"
.string "What do TRAINERS do in the secrecy\n"
.string "of SECRET BASES?\p"
.string "Today, we investigate {STR_VAR_1}’s\n"
.string "SECRET BASE.\p"
.string "Oh? It looks like {STR_VAR_2} has come\n"
.string "for a visit.\p"
.string "Let’s have a peek!\p"
.string "What will {STR_VAR_2} do?$"
gTVSecretBaseSecretsText01:: @ 082886C8
.string "What will {STR_VAR_2} do next?$"
gTVSecretBaseSecretsText02:: @ 082886DE
.string "And now, what will {STR_VAR_2} do?$"
gTVSecretBaseSecretsText03:: @ 082886F8
.string "In the end, {STR_VAR_2} took {STR_VAR_3} steps\n"
.string "in {STR_VAR_1}’s SECRET BASE before\l"
.string "leaving.$"
gTVSecretBaseSecretsText04:: @ 08288739
.string "Hmm…\p"
.string "It appears as if {STR_VAR_1}’s SECRET\n"
.string "BASE failed to interest {STR_VAR_2}…$"
gTVSecretBaseSecretsText05:: @ 08288777
.string "{STR_VAR_2} appears to have enjoyed\n"
.string "{STR_VAR_1}’s SECRET BASE thoroughly.$"
gTVSecretBaseSecretsText06:: @ 082887AF
.string "{STR_VAR_2} appears to have become\n"
.string "a huge fan of {STR_VAR_1}’s\l"
.string "SECRET BASE.$"
gTVSecretBaseSecretsText07:: @ 082887E9
.string "Viewers may want to check out\n"
.string "{STR_VAR_1}’s SECRET BASE, too.\p"
.string "Tune in next time as we visit another\n"
.string "SECRET BASE! Thanks for joining us!$"
gTVSecretBaseSecretsText08:: @ 08288868
.string "The visitor has stopped!\p"
.string "The visitor isn’t moving at all!\p"
.string "Was {STR_VAR_1}’s SECRET BASE\n"
.string "that unimpressive?$"
gTVSecretBaseSecretsText09:: @ 082888CA
.string "The visitor has stopped!\p"
.string "The visitor isn’t moving at all!\p"
.string "Is it fatigue?\n"
.string "Has the visitor grown weary?$"
gTVSecretBaseSecretsText10:: @ 08288930
.string "The visitor sat down on a chair!\n"
.string "The visitor is seated!\p"
.string "Look at that look of delight!\p"
.string "That chair must be very comfortable\n"
.string "to get that response!$"
gTVSecretBaseSecretsText11:: @ 082889C0
.string "The visitor charged at a balloon!\p"
.string "It burst!\n"
.string "Oh, my goodness, it popped!\p"
.string "The visitor appears startled by\n"
.string "the sudden noise!$"
gTVSecretBaseSecretsText12:: @ 08288A3A
.string "The visitor entered a TENT!\p"
.string "The visitor is running around!\p"
.string "Oh, my, the visitor is frolicking!\p"
.string "The visitor appears surprised by\n"
.string "the TENT’s size!$"
gTVSecretBaseSecretsText13:: @ 08288ACA
.string "The visitor is examining\n"
.string "a potted plant!\p"
.string "The visitor has surprisingly\n"
.string "mature taste!$"
gTVSecretBaseSecretsText14:: @ 08288B1E
.string "The visitor is examining\n"
.string "a GOLD SHIELD!\p"
.string "The visitor’s eyes appear to be\n"
.string "lit up with wonder!$"
gTVSecretBaseSecretsText15:: @ 08288B7A
.string "The visitor is examining\n"
.string "a SILVER SHIELD!\p"
.string "The visitor appears to be wide-eyed!$"
gTVSecretBaseSecretsText16:: @ 08288BC9
.string "The visitor is examining\n"
.string "a GLASS ORNAMENT!\p"
.string "Oh, no!\p"
.string "The visitor is touching it!\p"
.string "It’s getting covered with\n"
.string "fingerprints…$"
gTVSecretBaseSecretsText17:: @ 08288C40
.string "The visitor is watching television!\p"
.string "Looks like we have a big fan of TV!$"
gTVSecretBaseSecretsText18:: @ 08288C88
.string "The visitor stomped on a MUD BALL!\p"
.string "The visitor looks delighted!$"
gTVSecretBaseSecretsText19:: @ 08288CC8
.string "…Oh?\p"
.string "The visitor is reaching for their own\n"
.string "BAG and rummaging about in it!\p"
.string "The visitor pulled out\n"
.string "one {STR_VAR_2}!\p"
.string "Look at the visitor smile while\n"
.string "holding up the {STR_VAR_2}!\p"
.string "It’s like a TV commercial!$"
gTVSecretBaseSecretsText20:: @ 08288D7F
.string "The visitor grabs a cushion and…$"
gTVSecretBaseSecretsText21:: @ 08288DA0
.string "…begins hitting it!\p"
.string "Is the visitor under a lot of stress?$"
gTVSecretBaseSecretsText22:: @ 08288DDA
.string "…hugs it tight!\p"
.string "Could the visitor be feeling happy\n"
.string "about something?$"
gTVSecretBaseSecretsText23:: @ 08288E1E
.string "The visitor is chatting with\n"
.string "{STR_VAR_1}!\p"
.string "It looks like they’re going to\n"
.string "have a battle!\p"
.string "And…\p"
.string "It’s the visitor!\n"
.string "The visitor won an away match!\p"
.string "The visitor is doing\n"
.string "a victory dance!$"
gTVSecretBaseSecretsText24:: @ 08288EC9
.string "The visitor is chatting with\n"
.string "{STR_VAR_1}!\p"
.string "It looks like they’re going to\n"
.string "have a battle!\p"
.string "And…\p"
.string "It’s {STR_VAR_1}!\n"
.string "The visitor has lost!\p"
.string "The visitor looks dejected!$"
gTVSecretBaseSecretsText25:: @ 08288F58
.string "The visitor is chatting with\n"
.string "{STR_VAR_1}!\p"
.string "It looks like they’re going to\n"
.string "have a battle!\p"
.string "And…\p"
.string "No, the visitor has refused!\p"
.string "There won’t be a battle after all!\p"
.string "Did the visitor find {STR_VAR_1}\n"
.string "unappealing?$"
gTVSecretBaseSecretsText26:: @ 08289011
.string "The visitor is staring intently\n"
.string "at a poster!\p"
.string "Is the poster to the visitor’s\n"
.string "liking?\p"
.string "…But… There’s something disturbing\n"
.string "about the visitor’s stares.$"
gTVSecretBaseSecretsText27:: @ 082890A4
.string "The visitor stepped on a NOTE MAT!\p"
.string "…Hmm…\n"
.string "The visitor composed a funny tune!$"
gTVSecretBaseSecretsText28:: @ 082890F0
.string "The visitor is chatting with\n"
.string "{STR_VAR_1}!\p"
.string "It looks like they’re going to\n"
.string "have a battle!\p"
.string "And…\p"
.string "It’s a draw!\n"
.string "Nothing’s resolved!\p"
.string "Both TRAINERS appear to be very\n"
.string "disappointed!$"
gTVSecretBaseSecretsText29:: @ 08289193
.string "The visitor stepped on\n"
.string "a SPIN MAT!\p"
.string "It looks like the visitor is dizzy!\p"
.string "The visitor is tottering about!\n"
.string "Look out!$"
gTVSecretBaseSecretsText30:: @ 08289204
.string "The visitor is reaching for\n"
.string "a SAND ORNAMENT!\p"
.string "Oh!\p"
.string "It crumbled!\n"
.string "It’s fallen apart!\p"
.string "The visitor looks sheepish\n"
.string "and guilty!$"
gTVSecretBaseSecretsText31:: @ 0828927C
.string "The visitor is rubbing a desktop\n"
.string "with their finger!\p"
.string "Apparently, the visitor disapproves\n"
.string "of dust!\p"
.string "The visitor is surprisingly concerned\n"
.string "about neatness!$"
gTVSecretBaseSecretsText32:: @ 08289313
.string "The visitor is staring at a BRICK!\p"
.string "Perhaps the visitor is thinking about\n"
.string "the object on the BRICK.$"
gTVSecretBaseSecretsText33:: @ 08289375
.string "The visitor is walking across\n"
.string "the SOLID BOARD.\p"
.string "The visitor keeps looking down.\p"
.string "The visitor appears to be surprisingly\n"
.string "timid and cautious!$"
gTVSecretBaseSecretsText34:: @ 082893FF
.string "The visitor is looking intently\n"
.string "at a FENCE!\p"
.string "Has a new idea for a trap popped\n"
.string "into the visitor’s head?$"
gTVSecretBaseSecretsText35:: @ 08289465
.string "The visitor stepped on\n"
.string "a GLITTER MAT!\p"
.string "The visitor is striking a variety\n"
.string "of poses!\p"
.string "The visitor appears to be fantasizing\n"
.string "about being an idol!$"
gTVSecretBaseSecretsText36:: @ 082894F2
.string "The visitor is staring intently\n"
.string "at a TIRE!\p"
.string "Could the visitor be thinking about\n"
.string "the kind of car that would use it?$"
gTVSecretBaseSecretsText37:: @ 08289564
.string "The visitor climbed a STAND!\p"
.string "The visitor is looking out across\n"
.string "{STR_VAR_1}’s BASE from high up!\p"
.string "And…\p"
.string "Lets loose a roar!\n"
.string "The visitor is roaring!$"
gTVSecretBaseSecretsText38:: @ 082895EB
.string "The visitor charged headlong into\n"
.string "a BREAKABLE DOOR!\p"
.string "The visitor is laughing uproariously!$"
gTVSecretBaseSecretsText39:: @ 08289645
.string "The visitor is talking to a DOLL!\p"
.string "…It’s a little creepy…$"
gTVSecretBaseSecretsText40:: @ 0828967E
.string "The visitor is climbing the ladder\n"
.string "on a SLIDE!\p"
.string "And…\p"
.string "The visitor slid down!\p"
.string "Looks like the visitor is having\n"
.string "a grand old time!$"
gTVSecretBaseSecretsText41:: @ 082896FC
.string "The visitor is climbing the ladder\n"
.string "on a SLIDE!\p"
.string "And…\p"
.string "The visitor went back down\n"
.string "the ladder!\p"
.string "Did the visitor suddenly chicken out?$"
gTVSecretBaseSecretsText42:: @ 0828977D
.string "The visitor stepped on\n"
.string "a JUMP MAT!\p"
.string "The visitor jumped once!\p"
.string "Jumped twice!\p"
.string "And a successful landing!\p"
.string "The visitor is clapping!\n"
.string "What a solo performance!$"
gTVSafariFanClubText00:: @ 08289813
.string "SAFARI FAN CLUB!\p"
.string "REPORTER: All right, mates!\n"
.string "Tossing them SAFARI BALLS, are you?\p"
.string "You can bet I am here in the SAFARI\n"
.string "ZONE chock-full of amazing POKéMON!\p"
.string "Let’s get with it and have a chat with\n"
.string "this good fellow of a SAFARI GUIDE!\p"
.string "All right, mate, how are the visiting\n"
.string "TRAINERS looking?$"
gTVSafariFanClubText01:: @ 0828992F
.string "GUIDE: Everyone seems to be going\n"
.string "hard at it.\p"
.string "{STR_VAR_1} is doing especially well.\p"
.string "Why, before, {STR_VAR_1} caught\n"
.string "{STR_VAR_2} POKéMON.$"
gTVSafariFanClubText02:: @ 0828999D
.string "The TRAINER is clever with {POKEBLOCK}S.\n"
.string "Used {STR_VAR_2} that time, I think.$"
gTVSafariFanClubText03:: @ 082899DC
.string "The TRAINER didn’t use a single\n"
.string "{POKEBLOCK}! Not a one!\p"
.string "There’s an expert for you.$"
gTVSafariFanClubText04:: @ 08289A29
.string "REPORTER: Is that right, then?\p"
.string "Sounds like our mate {STR_VAR_1}\n"
.string "is a stout SAFARI master!\p"
.string "GUIDE: I hope the TRAINER comes back\n"
.string "and shows us that great technique.$"
gTVSafariFanClubText05:: @ 08289AC2
.string "GUIDE: No one seems to be doing\n"
.string "very well.\p"
.string "{STR_VAR_1} had it especially bad.\p"
.string "Why, before, the TRAINER only\n"
.string "managed to catch {STR_VAR_2} POKéMON.$"
gTVSafariFanClubText06:: @ 08289B42
.string "GUIDE: No one seems to be doing\n"
.string "very well.\p"
.string "{STR_VAR_1} had it especially bad.\p"
.string "Why, before, the TRAINER didn’t\n"
.string "catch one POKéMON. Not a one!$"
gTVSafariFanClubText07:: @ 08289BC5
.string "The TRAINER does use {POKEBLOCK}S.\n"
.string "Used {STR_VAR_2} that time, I think.\p"
.string "But, boy, I wish the TRAINER would\n"
.string "get a bit better at this.$"
gTVSafariFanClubText08:: @ 08289C3B
.string "I think the TRAINER would have better\n"
.string "luck using {POKEBLOCK}S, which weren’t\l"
.string "used at all that time.$"
gTVSafariFanClubText09:: @ 08289C99
.string "REPORTER: Is that right, then?\p"
.string "Sounds like our mate {STR_VAR_1}\n"
.string "needs more SAFARI seasoning.\p"
.string "GUIDE: I hope the TRAINER visits\n"
.string "over and over to get the hang of it.$"
gTVSafariFanClubText10:: @ 08289D33
.string "REPORTER: Quite right, it is!\n"
.string "Facing up to challenges is important!\p"
.string "Viewers, come on down to the SAFARI\n"
.string "and make the challenge yourself!\p"
.string "Until next time, cheerio!$"
gTVContestLiveUpdatesText00:: @ 08289DD6
.string "“POKéMON CONTEST LIVE UPDATES!”\p"
.string "MC: Thanks for joining us!\p"
.string "We’re live from the just-ended\n"
.string "{STR_VAR_1} site.\p"
.string "The hall is still filled with\n"
.string "an audience unwilling to leave.\p"
.string "Spectator: {STR_VAR_2}!\p"
.string "Spectator: {STR_VAR_3}!\p"
.string "MC: As you’ve just heard, the CONTEST\n"
.string "was won by the POKéMON {STR_VAR_2}\l"
.string "of {STR_VAR_3}.\p"
.string "Spectator: {STR_VAR_2}!\n"
.string "You’re the best!\p"
.string "Spectator: {STR_VAR_3}!\n"
.string "Way to go!\p"
.string "MC: Let’s hear what the fans have\n"
.string "to say about this CONTEST.$"
gTVContestLiveUpdatesText01:: @ 08289F53
.string "Spectator: The {STR_VAR_2} was tops in\n"
.string "both primary and secondary judging!\p"
.string "That {STR_VAR_2} will keep winning!$"
gTVContestLiveUpdatesText02:: @ 08289FB0
.string "Spectator: The {STR_VAR_2} didn’t do\n"
.string "well in the primary judging, but it\l"
.string "cleaned up in the secondary judging!\p"
.string "It was a miraculous comeback\n"
.string "for that {STR_VAR_2}. Yippee!$"
gTVContestLiveUpdatesText03:: @ 0828A047
.string "Spectator: The {STR_VAR_2} remained\n"
.string "consistent throughout both primary\l"
.string "and secondary judging.\p"
.string "{STR_VAR_3} and the {STR_VAR_2},\n"
.string "they’re no ordinary combo!$"
gTVContestLiveUpdatesText04:: @ 0828A0C6
.string "Spectator: In terms of being {STR_VAR_1},\n"
.string "that {STR_VAR_2} was outstanding.\p"
.string "I hope it makes better appeals\n"
.string "next time, though.$"
gTVContestLiveUpdatesText05:: @ 0828A132
.string "Spectator: When the {STR_VAR_2} got\n"
.string "nervous, I couldn’t stop myself from\l"
.string "shouting encouragement.\p"
.string "I’d like to say this to that\n"
.string "{STR_VAR_2}, “Congratulations!”$"
gTVContestLiveUpdatesText06:: @ 0828A1BE
.string "Spectator: That {STR_VAR_2}’s appeal\n"
.string "startled even me!\p"
.string "{STR_VAR_2}, you were awesome!$"
gTVContestLiveUpdatesText07:: @ 0828A202
.string "Spectator: That {STR_VAR_2}’s combo\n"
.string "appeal was stunning!\p"
.string "It’s shaken me to the core!$"
gTVContestLiveUpdatesText08:: @ 0828A24E
.string "Spectator: The winning {STR_VAR_2}’s\n"
.string "appeal got my heart pounding!$"
gTVContestLiveUpdatesText09:: @ 0828A288
.string "{STR_VAR_2}!\n"
.string "You were cool!$"
gTVContestLiveUpdatesText10:: @ 0828A29B
.string "{STR_VAR_2}!\n"
.string "You were beautiful!$"
gTVContestLiveUpdatesText11:: @ 0828A2B3
.string "{STR_VAR_2}!\n"
.string "You were cute!$"
gTVContestLiveUpdatesText12:: @ 0828A2C6
.string "{STR_VAR_2}!\n"
.string "You were smart!$"
gTVContestLiveUpdatesText13:: @ 0828A2DA
.string "{STR_VAR_2}!\n"
.string "You were tough!$"
gTVContestLiveUpdatesText14:: @ 0828A2EE
.string "Spectator: The winning {STR_VAR_2}’s\n"
.string "appeal still has my heart pounding!$"
gTVContestLiveUpdatesText15:: @ 0828A32E
.string "{STR_VAR_2}!\n"
.string "You’re the last word in cool!$"
gTVContestLiveUpdatesText16:: @ 0828A350
.string "{STR_VAR_2}!\n"
.string "You’re the most beautiful!$"
gTVContestLiveUpdatesText17:: @ 0828A36F
.string "{STR_VAR_2}!\n"
.string "You’re simply the cutest!$"
gTVContestLiveUpdatesText18:: @ 0828A38D
.string "{STR_VAR_2}!\n"
.string "You’re the smartest among the smart!$"
gTVContestLiveUpdatesText19:: @ 0828A3B6
.string "{STR_VAR_2}!\n"
.string "You’re the toughest of the tough!$"
gTVContestLiveUpdatesText20:: @ 0828A3DC
.string "Spectator: Even when the {STR_VAR_2}\n"
.string "took a break from making appeals,\l"
.string "I couldn’t take my eyes off it.\p"
.string "I’m captivated by that {STR_VAR_2}.$"
gTVContestLiveUpdatesText21:: @ 0828A455
.string "Spectator: When the {STR_VAR_2} was\n"
.string "startled by another POKéMON’s appeal,\l"
.string "I was close to tears.\p"
.string "{STR_VAR_2}, you were resilient!\n"
.string "Way to go!$"
gTVContestLiveUpdatesText22:: @ 0828A4CF
.string "Spectator: Oh…\n"
.string "That {STR_VAR_2}’s {STR_VAR_3}!\l"
.string "{STR_VAR_2}’s {STR_VAR_3}!\l"
.string "{STR_VAR_2}’s {STR_VAR_3}!\l"
.string "How could it be so wonderful?$"
gTVContestLiveUpdatesText23:: @ 0828A51C
.string "MC: Well, there you have it. This place\n"
.string "is full of the {STR_VAR_1}’s fans!\p"
.string "I should also mention that another\n"
.string "POKéMON, {STR_VAR_2}’s {STR_VAR_3}, \l"
.string "caught my eye.\p"
.string "{STR_VAR_2}’s {STR_VAR_3}…$"
gTVContestLiveUpdatesText24:: @ 0828A5AC
.string "It failed to make a single appeal during\n"
.string "secondary judging out of nervousness.\p"
.string "Next time, I would like to see this\n"
.string "{STR_VAR_1} make even one appeal.$"
gTVContestLiveUpdatesText25:: @ 0828A638
.string "It came dead last in both primary\n"
.string "and secondary judging.\p"
.string "I hope that {STR_VAR_1} will retrain this\n"
.string "{STR_VAR_2} and erase the shame of\l"
.string "this undisputed last-place finish.$"
gTVContestLiveUpdatesText26:: @ 0828A6CF
.string "It failed to take advantage of\n"
.string "the audience’s excitement and make\l"
.string "an appropriate appeal.\p"
.string "We hope {STR_VAR_1} will learn how to get\n"
.string "a feel for the audience and whip their\l"
.string "excitement to a fever pitch next time.$"
gTVContestLiveUpdatesText27:: @ 0828A797
.string "While finishing first in the primary\n"
.string "judging, its appeals in the secondary\l"
.string "judging failed to click.\p"
.string "It suffered a humiliating come-from-\n"
.string "behind loss.\p"
.string "I’m sure {STR_VAR_1} is studying how to\n"
.string "make more effective appeals now.$"
gTVContestLiveUpdatesText28:: @ 0828A86D
.string "The audience never got excited by its\n"
.string "appeals during the secondary judging.\p"
.string "We hope it will stop worrying about\n"
.string "other POKéMON and learn to pitch\l"
.string "its appeals to the audience more.$"
gTVContestLiveUpdatesText29:: @ 0828A920
.string "It lost to {STR_VAR_1}’s {STR_VAR_2}\n"
.string "by only a small margin.\p"
.string "It must be heartbreaking to come\n"
.string "so close to victory only to fail.\p"
.string "I wouldn’t be surprised if {STR_VAR_3}\n"
.string "were weeping over this outcome.$"
gTVContestLiveUpdatesText30:: @ 0828A9CC
.string "It disappointed the JUDGE by\n"
.string "repeating the same appeals.\p"
.string "It’s an unforgivable error in any\n"
.string "CONTEST, and the POKéMON paid.\p"
.string "{STR_VAR_1} should feel guilty for\n"
.string "this sorry showing.$"
gTVContestLiveUpdatesText31:: @ 0828AA74
.string "{STR_VAR_1} turned in a valiant effort,\n"
.string "but…\p"
.string "It was all for naught, finishing last.\p"
.string "{STR_VAR_1} should learn from this loss\n"
.string "and put the knowledge to good use.$"
gTVContestLiveUpdatesText32:: @ 0828AB01
.string "I’d like to end this program with our\n"
.string "usual farewell to the winners.\p"
.string "This time, it’s {STR_VAR_1} and\n"
.string "the {STR_VAR_2}!\p"
.string "MC: Is everyone ready?\n"
.string "All together now!\p"
.string "Audience: {STR_VAR_1}! {STR_VAR_2}!\n"
.string "Congratulations!\l"
.string "You’re the CONTEST winner!$"
gTVPokemonBattleUpdateText00:: @ 0828ABCC
.string "“POKéMON BATTLE UPDATE!”\p"
.string "Bringing you the results of POKéMON\n"
.string "battles as they come in!$"
gTVPokemonBattleUpdateText01:: @ 0828AC22
.string "The TRAINERS {STR_VAR_1} and\n"
.string "{STR_VAR_2} faced each other in\l"
.string "a {STR_VAR_3} BATTLE.\p"
.string "This match ended in victory for\n"
.string "{STR_VAR_1}!$"
gTVPokemonBattleUpdateText02:: @ 0828AC7E
.string "In the battle, {STR_VAR_1}’s\n"
.string "{STR_VAR_2} was a formidable force\l"
.string "using {STR_VAR_3}!$"
gTVPokemonBattleUpdateText03:: @ 0828ACB6
.string "{STR_VAR_1}’s {STR_VAR_2} had a weak\n"
.string "showing that really hurt.$"
gTVPokemonBattleUpdateText04:: @ 0828ACE3
.string "Congratulations on your victory,\n"
.string "{STR_VAR_1}!\p"
.string "And for the defeated {STR_VAR_2},\n"
.string "we hope for a better result next time!\p"
.string "This concludes this episode of\n"
.string "“POKéMON BATTLE UPDATE!”$"
gTVPokemonBattleUpdateText05:: @ 0828AD80
.string "The teams of TRAINERS {STR_VAR_1} and\n"
.string "{STR_VAR_2} met in a MULTI BATTLE.\p"
.string "This match ended in victory for\n"
.string "{STR_VAR_1}’s team.$"
gTVPokemonBattleUpdateText06:: @ 0828ADE2
.string "In the battle, the {STR_VAR_2} on\n"
.string "{STR_VAR_1}’s team was a formidable\l"
.string "force using {STR_VAR_3}.$"
gTVPokemonBattleUpdateText07:: @ 0828AE26
.string "The weak showing by the {STR_VAR_3}\n"
.string "on {STR_VAR_2}’s team really hurt.\p"
.string "Congratulations on your team’s\n"
.string "victory, {STR_VAR_1}!\p"
.string "As for the defeated {STR_VAR_2}’s team,\n"
.string "we hope for a better result next time!\p"
.string "This concludes this episode of\n"
.string "“POKéMON BATTLE UPDATE!”$"
Route111_Text_28AF05: @ 0828AF05
.string "GABBY: Oh! We’ve just spotted a tough-\n"
.string "looking TRAINER here of all places!\p"
.string "Okay, roll camera!\n"
.string "Let’s get this interview.$"
Route111_Text_28AF7D: @ 0828AF7D
Route118_Text_28AF7D: @ 0828AF7D
Route120_Text_28AF7D: @ 0828AF7D
.string "GABBY: Oh! You’re {PLAYER}! Hi!\n"
.string "Do you remember us from last time?\p"
.string "Can you show us how much stronger\n"
.string "you’ve become? Okay, cue interview!$"
Route111_Text_28B000: @ 0828B000
.string "GABBY: My eyes didn’t lie!\n"
.string "I did discover an astonishing TRAINER!$"
Route111_Text_28B042: @ 0828B042
.string "GABBY: Awesome! Awesome!\n"
.string "Who are you?!\p"
.string "I knew we were onto something wild\n"
.string "when we spotted you!\p"
.string "Oh, please let me explain. We travel\n"
.string "around everywhere interviewing all\l"
.string "sorts of TRAINERS.\p"
.string "So, would you give us a bit of your time\n"
.string "for an interview?$"
Route111_Text_28B137: @ 0828B137
.string "GABBY: “{STR_VAR_1}!”\p"
.string "Remember? That’s the quote you gave\n"
.string "us as the battle clincher last time.\p"
.string "I never, ever forget stuff like that!$"
Route111_Text_28B1B3: @ 0828B1B3
.string "The last time we battled, you stomped\n"
.string "us before we could brace ourselves…\p"
.string "Anyway, what do you think?\n"
.string "Do you want to be interviewed again?$"
Route111_Text_28B23D: @ 0828B23D
.string "The last time we battled, didn’t you\n"
.string "throw a POKé BALL at us?\p"
.string "We were shocked! So we told everyone,\n"
.string "just everyone, about it!\p"
.string "Anyway, what do you think?\n"
.string "Do you want to be interviewed again?$"
Route111_Text_28B2FA: @ 0828B2FA
.string "The last time we battled, your item\n"
.string "skills cleverly did us in.\p"
.string "Anyway, what do you think?\n"
.string "Do you want to be interviewed again?$"
Route111_Text_28B379: @ 0828B379
.string "The last time we battled, we managed\n"
.string "to look respectable.\p"
.string "Anyway, what do you think?\n"
.string "Do you want to be interviewed again?$"
Route111_Text_28B3F3: @ 0828B3F3
.string "Anyway, what do you think?\n"
.string "Do you want to be interviewed again?$"
Route111_Text_28B433: @ 0828B433
.string "You will?\n"
.string "Thank you!\p"
.string "Okay, I need you to describe your\n"
.string "feelings about our battle, but it\l"
.string "has to be short and sweet. Go!$"
Route111_Text_28B4AB: @ 0828B4AB
.string "GABBY: Mmm, yeah!\n"
.string "That’s the perfect clincher!\p"
.string "I get the feeling that this will make\n"
.string "a great TV show.\p"
.string "There’s a chance that they’ll air this\n"
.string "on TV, so make sure to look for us!\p"
.string "Okay!\n"
.string "We’ll be seeing you!$"
Route111_Text_28B577: @ 0828B577
.string "GABBY: Oh…\p"
.string "Okay, but don’t give up!\n"
.string "We’ll be keeping an eye out for you!$"
Route111_Text_28B5C0: @ 0828B5C0
Route118_Text_28B5C0: @ 0828B5C0
Route120_Text_28B5C0: @ 0828B5C0
.string "GABBY: We’ll be keeping an eye out\n"
.string "for you!$"
Route111_Text_28B5EC: @ 0828B5EC
Route118_Text_28B5EC: @ 0828B5EC
Route120_Text_28B5EC: @ 0828B5EC
.string "GABBY: Is there a strong TRAINER\n"
.string "anywhere with a lot of POKéMON?$"
Route111_Text_28B62D: @ 0828B62D
.string "GABBY: Wow, you are something!\p"
.string "You’ve gotten a lot stronger--a lot--\n"
.string "since we last battled.\p"
.string "We were right about you when we\n"
.string "spotted you as a hot TRAINER.\p"
.string "So, anyway, what do you think?\n"
.string "Are you willing to give us an interview\l"
.string "this time?$"
Route111_Text_28B719: @ 0828B719
Route118_Text_28B719: @ 0828B719
Route120_Text_28B719: @ 0828B719
.string "GABBY: That was an intense battle!\n"
.string "Did you get all that on camera?$"
Route111_Text_28B75C: @ 0828B75C
.string "TY: Hey, lookie here! A tough-looking\n"
.string "TRAINER here, of all places!\l"
.string "Camera’s rolling!$"
Route111_Text_28B7B1: @ 0828B7B1
Route118_Text_28B7B1: @ 0828B7B1
Route120_Text_28B7B1: @ 0828B7B1
.string "TY: Hey, lookie here!\n"
.string "I remember you!\p"
.string "I’ll get this battle all on this\n"
.string "here camera!$"
Route111_Text_28B805: @ 0828B805
Route118_Text_28B805: @ 0828B805
Route120_Text_28B805: @ 0828B805
.string "TY: You’re a natural!\n"
.string "Got me some prime footage right here!$"
Route111_Text_28B841: @ 0828B841
Route118_Text_28B841: @ 0828B841
Route120_Text_28B841: @ 0828B841
.string "TY: Do you only have the one POKéMON\n"
.string "and that’s it?\p"
.string "If you had more POKéMON, it’d make for\n"
.string "better footage, but…$"
Route111_Text_28B8B1: @ 0828B8B1
.string "TY: Yep, we sure spotted a hot TRAINER.\n"
.string "This is a huge scoop for us!$"
Route111_Text_28B8F6: @ 0828B8F6
Route118_Text_28B8F6: @ 0828B8F6
Route120_Text_28B8F6: @ 0828B8F6
.string "TY: Yep, I got it all.\n"
.string "That whole battle’s on camera.$"
gTVInSearchOfTrainersText00:: @ 0828B92C
.string "IN SEARCH OF TRAINERS…\p"
.string "GABBY: Hi! Today I’m visiting an area\n"
.string "near {STR_VAR_1}.\p"
.string "We’re trying to spot some up-and-\n"
.string "coming new talent in the field.\p"
.string "Today, we turned our lens on the\n"
.string "TRAINER {PLAYER}.\p"
.string "There’s something about this TRAINER\n"
.string "that piqued our interest.$"
gTVInSearchOfTrainersText01:: @ 0828BA20
.string "We’ve battled {PLAYER} before, but we\n"
.string "can attest that the TRAINER has most\l"
.string "definitely improved from before.\p"
.string "I knew we were onto someone special\n"
.string "when we spotted this TRAINER!$"
gTVInSearchOfTrainersText02:: @ 0828BAC8
.string "The best way to determine how strong\n"
.string "a TRAINER is…\p"
.string "Well, the fastest way is to battle.\n"
.string "And so we began our investigation!\p"
.string "… …\p"
.string "That’s how we ended up in battle\n"
.string "with {PLAYER}.\p"
.string "In a dominating performance, we were\n"
.string "flattened, rolled up, and tossed aside!\p"
.string "{PLAYER} is ruthlessly strong…\p"
.string "Here’s our impressions after having\n"
.string "battled our featured TRAINER.$"
gTVInSearchOfTrainersText03:: @ 0828BC18
.string "The combination of {STR_VAR_1} and\n"
.string "{STR_VAR_3} was divine!\p"
.string "The sight of them--{STR_VAR_1} and\n"
.string "{STR_VAR_3}--selflessly supporting\l"
.string "each other in the thick of battle…\p"
.string "It was a marvelous sight to behold!\p"
.string "{STR_VAR_2} was the move the TRAINER\n"
.string "used last in our battle.\p"
.string "The move {STR_VAR_2} is {STR_VAR_1}\n"
.string "and {STR_VAR_3}’s sign of friendship!$"
gTVInSearchOfTrainersText04:: @ 0828BD20
.string "…I lost confidence in myself as\n"
.string "a result of our encounter.\p"
.string "We were beaten before we could launch\n"
.string "a single attack.\l"
.string "Ohhh… Snivel…\p"
.string "In spite of that, {PLAYER}’s battles\n"
.string "are worth seeing.\p"
.string "I recommend confident TRAINERS to\n"
.string "challenge {PLAYER}.$"
gTVInSearchOfTrainersText05:: @ 0828BE01
.string "There’s only one thing to be said.\n"
.string "Don’t you dare throw a POKé BALL during\l"
.string "a TRAINER battle!\p"
.string "{PLAYER} is certainly strong, but has\n"
.string "no clue about the basic rules.\p"
.string "To our TV audience, I have a request.\p"
.string "If you see {PLAYER}, please caution\n"
.string "the TRAINER!$"
gTVInSearchOfTrainersText06:: @ 0828BEEE
.string "{PLAYER} is adept at reading the\n"
.string "opponent’s actions.\p"
.string "The timing of item usage was remarkably\n"
.string "effective!$"
gTVInSearchOfTrainersText07:: @ 0828BF50
.string "Honestly speaking, I thought that\n"
.string "I might even be pretty good.\p"
.string "While we did end up losing, we did have\n"
.string "a hotly contested battle.\p"
.string "But if you’re struggling against me,\n"
.string "you have a ways to go, {PLAYER}!$"
gTVInSearchOfTrainersText08:: @ 0828C011
.string "After our battle, we asked {PLAYER} for\n"
.string "a succinct summary.\p"
.string "The TRAINER replied, “{STR_VAR_1}.”\p"
.string "{PLAYER}’s POKéMON {STR_VAR_2} and\n"
.string "{STR_VAR_3}…\l"
.string "And “{STR_VAR_1}”…\p"
.string "Mmm! That’s deep! There’s deep\n"
.string "significance behind that quote!\p"
.string "It’s no surprise--a good TRAINER has\n"
.string "good things to say.\p"
.string "That’s all for today!\n"
.string "See you again on our next broadcast!$"
gTVPokemonContestLiveUpdates2Text00:: @ 0828C137
.string "“POKéMON CONTEST LIVE UPDATES!”\p"
.string "MC: Sorry to interrupt the regular\n"
.string "programming, and thanks for joining us!\p"
.string "We bring you this live from\n"
.string "the scene of a just-completed\l"
.string "{STR_VAR_1}!\p"
.string "Spectators: ?!!!!\p"
.string "MC: Oh! It looks like the CONTEST\n"
.string "participants are headed this way!\p"
.string "I’ll try to get an impromptu interview\n"
.string "for you folks at home!\p"
.string "Spectators: ?!!!!\n"
.string "?!!!!$"
gTVPokemonContestLiveUpdates2Text01:: @ 0828C28C
.string "MC: Excuse me!\n"
.string "Thanks for joining us on live TV!\p"
.string "May I congratulate you on your win?\p"
.string "What was the key factor in today’s\n"
.string "stunning victory?\p"
.string "BEAUTY: We gave it our best effort\n"
.string "today, my {STR_VAR_2} and I!\p"
.string "But I’m sure we wouldn’t have made it\n"
.string "if it weren’t for all the help we\l"
.string "received leading up to the CONTEST!\p"
.string "MC: Do you have a special someone\n"
.string "with whom you’d like to share your joy?\l"
.string "Let’s hear it live!\p"
.string "BEAUTY: Hey, out there!\p"
.string "{STR_VAR_3}! Are you watching?\n"
.string "We did it!\l"
.string "Thank you!$"
gTVPokemonContestLiveUpdates2Text02:: @ 0828C45B
.string "MC: Excuse me!\n"
.string "Thanks for joining us on live TV!\p"
.string "You must be disappointed by that turn\n"
.string "of events. Do you have any comments?\p"
.string "BEAUTY: It’s heartbreaking…\n"
.string "My {STR_VAR_2} and I, we did our best…\p"
.string "But I feel like I’ve let down everyone\n"
.string "who has supported us through this.\p"
.string "MC: I hate to say it, but the POKéMON’s\n"
.string "coloration is a little wanting.\p"
.string "BEAUTY: {STR_VAR_3}, I’m so sorry…\n"
.string "I’ll do better next time, I swear…\l"
.string "…Sniff… Waaaaah!\p"
.string "Spectators: See that?\n"
.string "The poor girl!\p"
.string "MC: Uh… Uh-oh…\p"
.string "Uh… That’s all the time we have today!\n"
.string "Thanks for tuning in!$"
gTVPokemonContestLiveUpdates2Text03:: @ 0828C662
.string "MC: Excuse me!\n"
.string "Thanks for joining us on live TV!\p"
.string "How did your CONTEST appearance go?\p"
.string "BEAUTY: Nothing went right…\n"
.string "For some reason, my {STR_VAR_2}\l"
.string "couldn’t attract any popularity.\p"
.string "MC: I hate to say it, but the POKéMON’s\n"
.string "coloration is a little wanting.\p"
.string "BEAUTY: … … … … … …\n"
.string "…Sniff… Waaaaah!\p"
.string "Spectators: See that?\n"
.string "The poor girl!\p"
.string "MC: Uh… Uh-oh…\p"
.string "Uh… That’s all the time we have today!\n"
.string "Thanks for tuning in!$"
|