summaryrefslogtreecommitdiff
path: root/data/scripts/trainers.inc
blob: d08364a6a743fa297123caf3ea9525dcb8786693 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
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
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
Route3_EventScript_1A93C9:: @ 81A93C9
	trainerbattle_single TRAINER_YOUNGSTER_BEN, Text_183560, Text_1835A0
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A93F0
	msgbox Text_1835B4, MSGBOX_AUTOCLOSE
	end

EventScript_1A93F0:: @ 81A93F0
	trainerbattle_rematch TRAINER_YOUNGSTER_BEN, Text_1C149D, Text_1835A0
	msgbox Text_1835B4, MSGBOX_AUTOCLOSE
	end

Route3_EventScript_1A9407:: @ 81A9407
	trainerbattle_single TRAINER_YOUNGSTER_CALVIN, Text_183786, Text_1837BD
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A942E
	msgbox Text_1837CF, MSGBOX_AUTOCLOSE
	end

EventScript_1A942E:: @ 81A942E
	trainerbattle_rematch TRAINER_YOUNGSTER_CALVIN, Text_1C1588, Text_1837BD
	msgbox Text_1837CF, MSGBOX_AUTOCLOSE
	end

Route3_EventScript_1A9445:: @ 81A9445
	trainerbattle_single TRAINER_BUG_CATCHER_COLTON, Text_1834E6, Text_183509
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A946C
	msgbox Text_18351C, MSGBOX_AUTOCLOSE
	end

EventScript_1A946C:: @ 81A946C
	trainerbattle_rematch TRAINER_BUG_CATCHER_COLTON, Text_1C147A, Text_183509
	msgbox Text_18351C, MSGBOX_AUTOCLOSE
	end

Route3_EventScript_1A9483:: @ 81A9483
	trainerbattle_single TRAINER_BUG_CATCHER_GREG, Text_183682, Text_1836B3
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A94AA
	msgbox Text_1836D9, MSGBOX_AUTOCLOSE
	end

EventScript_1A94AA:: @ 81A94AA
	trainerbattle_rematch TRAINER_BUG_CATCHER_GREG, Text_1C1521, Text_1836B3
	msgbox Text_1836D9, MSGBOX_AUTOCLOSE
	end

Route3_EventScript_1A94C1:: @ 81A94C1
	trainerbattle_single TRAINER_BUG_CATCHER_JAMES, Text_183807, Text_183837
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A94E8
	msgbox Text_183849, MSGBOX_AUTOCLOSE
	end

EventScript_1A94E8:: @ 81A94E8
	trainerbattle_rematch TRAINER_BUG_CATCHER_JAMES, Text_1C15C5, Text_183837
	msgbox Text_183849, MSGBOX_AUTOCLOSE
	end

Route3_EventScript_1A94FF:: @ 81A94FF
	trainerbattle_single TRAINER_LASS_JANICE, Text_183616, Text_18363F
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9526
	msgbox Text_18364C, MSGBOX_AUTOCLOSE
	end

EventScript_1A9526:: @ 81A9526
	trainerbattle_rematch TRAINER_LASS_JANICE, Text_1C14F3, Text_18363F
	msgbox Text_18364C, MSGBOX_AUTOCLOSE
	end

Route3_EventScript_1A953D:: @ 81A953D
	trainerbattle_single TRAINER_LASS_SALLY, Text_18371B, Text_183746
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9564
	msgbox Text_18374F, MSGBOX_AUTOCLOSE
	end

EventScript_1A9564:: @ 81A9564
	trainerbattle_rematch TRAINER_LASS_SALLY, Text_1C155D, Text_183746
	msgbox Text_18374F, MSGBOX_AUTOCLOSE
	end

Route3_EventScript_1A957B:: @ 81A957B
	trainerbattle_single TRAINER_LASS_ROBIN, Text_18387A, Text_183891
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A95A2
	msgbox Text_18389C, MSGBOX_AUTOCLOSE
	end

EventScript_1A95A2:: @ 81A95A2
	trainerbattle_rematch TRAINER_LASS_ROBIN, Text_1C15F9, Text_183891
	msgbox Text_18389C, MSGBOX_AUTOCLOSE
	end

Route4_EventScript_1A95B9:: @ 81A95B9
	trainerbattle_single TRAINER_LASS_CRISSY, Text_183906, Text_183938
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A95E0
	msgbox Text_183957, MSGBOX_AUTOCLOSE
	end

EventScript_1A95E0:: @ 81A95E0
	trainerbattle_rematch TRAINER_LASS_CRISSY, Text_1C160F, Text_183938
	msgbox Text_183957, MSGBOX_AUTOCLOSE
	end

Route24_EventScript_1A95F7:: @ 81A95F7
	trainerbattle_single TRAINER_YOUNGSTER_TIMMY, Text_188F76, Text_188F95
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A961E
	msgbox Text_188FA7, MSGBOX_AUTOCLOSE
	end

EventScript_1A961E:: @ 81A961E
	trainerbattle_rematch TRAINER_YOUNGSTER_TIMMY, Text_1C3657, Text_188F95
	msgbox Text_188FA7, MSGBOX_AUTOCLOSE
	end

Route24_EventScript_1A9635:: @ 81A9635
	trainerbattle_single TRAINER_BUG_CATCHER_CALE, Text_18901B, Text_18908C
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A965C
	msgbox Text_18909E, MSGBOX_AUTOCLOSE
	end

EventScript_1A965C:: @ 81A965C
	trainerbattle_rematch TRAINER_BUG_CATCHER_CALE, Text_1C36DA, Text_18908C
	msgbox Text_18909E, MSGBOX_AUTOCLOSE
	end

Route24_EventScript_1A9673:: @ 81A9673
	trainerbattle_single TRAINER_LASS_RELI, Text_188F2C, Text_188F46
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A969A
	msgbox Text_188F53, MSGBOX_AUTOCLOSE
	end

EventScript_1A969A:: @ 81A969A
	trainerbattle_rematch TRAINER_LASS_RELI, Text_1C3624, Text_188F46
	msgbox Text_188F53, MSGBOX_AUTOCLOSE
	end

Route24_EventScript_1A96B1:: @ 81A96B1
	trainerbattle_single TRAINER_LASS_ALI, Text_188FC9, Text_188FE7
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A96D8
	msgbox Text_188FF9, MSGBOX_AUTOCLOSE
	end

EventScript_1A96D8:: @ 81A96D8
	trainerbattle_rematch TRAINER_LASS_ALI, Text_1C3685, Text_188FE7
	msgbox Text_188FF9, MSGBOX_AUTOCLOSE
	end

Route24_EventScript_1A96EF:: @ 81A96EF
	trainerbattle_single TRAINER_CAMPER_SHANE, Text_188E74, Text_188E94
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9716
	msgbox Text_188EA3, MSGBOX_AUTOCLOSE
	end

EventScript_1A9716:: @ 81A9716
	trainerbattle_rematch TRAINER_CAMPER_SHANE, Text_1C35EE, Text_188E94
	msgbox Text_188EA3, MSGBOX_AUTOCLOSE
	end

Route24_EventScript_1A972D:: @ 81A972D
	trainerbattle_single TRAINER_CAMPER_ETHAN, Text_188ED9, Text_188EFA
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9754
	msgbox Text_188F0A, MSGBOX_AUTOCLOSE
	end

EventScript_1A9754:: @ 81A9754
	trainerbattle_rematch TRAINER_CAMPER_ETHAN, Text_1C360E, Text_188EFA
	msgbox Text_188F0A, MSGBOX_AUTOCLOSE
	end

Route25_EventScript_1A976B:: @ 81A976B
	trainerbattle_single TRAINER_YOUNGSTER_JOEY, Text_1890C0, Text_1890E6
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9792
	msgbox Text_1890F5, MSGBOX_AUTOCLOSE
	end

EventScript_1A9792:: @ 81A9792
	trainerbattle_rematch TRAINER_YOUNGSTER_JOEY, Text_1C33E7, Text_1890E6
	msgbox Text_1890F5, MSGBOX_AUTOCLOSE
	end

Route25_EventScript_1A97A9:: @ 81A97A9
	trainerbattle_single TRAINER_YOUNGSTER_DAN, Text_189165, Text_1891A6
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A97D0
	msgbox Text_1891B3, MSGBOX_AUTOCLOSE
	end

EventScript_1A97D0:: @ 81A97D0
	trainerbattle_rematch TRAINER_YOUNGSTER_DAN, Text_1C3404, Text_1891A6
	msgbox Text_1891B3, MSGBOX_AUTOCLOSE
	end

Route25_EventScript_1A97E7:: @ 81A97E7
	trainerbattle_single TRAINER_YOUNGSTER_CHAD, Text_1892A9, Text_1892D9
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A980E
	msgbox Text_1892EF, MSGBOX_AUTOCLOSE
	end

EventScript_1A980E:: @ 81A980E
	trainerbattle_rematch TRAINER_YOUNGSTER_CHAD, Text_1C34D4, Text_1892D9
	msgbox Text_1892EF, MSGBOX_AUTOCLOSE
	end

Route25_EventScript_1A9825:: @ 81A9825
	trainerbattle_single TRAINER_PICNICKER_KELSEY, Text_189247, Text_189261
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A984C
	msgbox Text_189281, MSGBOX_AUTOCLOSE
	end

EventScript_1A984C:: @ 81A984C
	trainerbattle_rematch TRAINER_PICNICKER_KELSEY, Text_1C349C, Text_189261
	msgbox Text_189281, MSGBOX_AUTOCLOSE
	end

Route25_EventScript_1A9863:: @ 81A9863
	trainerbattle_single TRAINER_LASS_HALEY, Text_189333, Text_189364
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A988A
	msgbox Text_189378, MSGBOX_AUTOCLOSE
	end

EventScript_1A988A:: @ 81A988A
	trainerbattle_rematch TRAINER_LASS_HALEY, Text_1C350A, Text_189364
	msgbox Text_189378, MSGBOX_AUTOCLOSE
	end

Route25_EventScript_1A98A1:: @ 81A98A1
	trainerbattle_single TRAINER_HIKER_FRANKLIN, Text_1893A7, Text_1893EA
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A98C8
	msgbox Text_1893FB, MSGBOX_AUTOCLOSE
	end

EventScript_1A98C8:: @ 81A98C8
	trainerbattle_rematch TRAINER_HIKER_FRANKLIN, Text_1C353B, Text_1893EA
	msgbox Text_1893FB, MSGBOX_AUTOCLOSE
	end

Route25_EventScript_1A98DF:: @ 81A98DF
	trainerbattle_single TRAINER_HIKER_NOB, Text_189423, Text_189459
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9906
	msgbox Text_18947E, MSGBOX_AUTOCLOSE
	end

EventScript_1A9906:: @ 81A9906
	trainerbattle_rematch TRAINER_HIKER_NOB, Text_1C357E, Text_189459
	msgbox Text_18947E, MSGBOX_AUTOCLOSE
	end

Route25_EventScript_1A991D:: @ 81A991D
	trainerbattle_single TRAINER_HIKER_WAYNE, Text_1894DE, Text_18950A
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9944
	msgbox Text_18951C, MSGBOX_AUTOCLOSE
	end

EventScript_1A9944:: @ 81A9944
	trainerbattle_rematch TRAINER_HIKER_WAYNE, Text_1C35BC, Text_18950A
	msgbox Text_18951C, MSGBOX_AUTOCLOSE
	end

Route25_EventScript_1A995B:: @ 81A995B
	trainerbattle_single TRAINER_CAMPER_FLINT, Text_1891EB, Text_189212
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9982
	msgbox Text_18921D, MSGBOX_AUTOCLOSE
	end

EventScript_1A9982:: @ 81A9982
	trainerbattle_rematch TRAINER_CAMPER_FLINT, Text_1C3445, Text_189212
	msgbox Text_18921D, MSGBOX_AUTOCLOSE
	end

Route6_EventScript_1A9999:: @ 81A9999
	trainerbattle_single TRAINER_BUG_CATCHER_KEIGO, Text_183E9F, Text_183EC0
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A99C0
	msgbox Text_183ED4, MSGBOX_AUTOCLOSE
	end

EventScript_1A99C0:: @ 81A99C0
	trainerbattle_rematch TRAINER_BUG_CATCHER_KEIGO, Text_1C16E2, Text_183EC0
	msgbox Text_183ED4, MSGBOX_AUTOCLOSE
	end

Route6_EventScript_1A99D7:: @ 81A99D7
	trainerbattle_single TRAINER_BUG_CATCHER_ELIJAH, Text_183FF0, Text_18401A
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A99FE
	msgbox Text_18402B, MSGBOX_AUTOCLOSE
	end

EventScript_1A99FE:: @ 81A99FE
	trainerbattle_rematch TRAINER_BUG_CATCHER_ELIJAH, Text_1C176B, Text_18401A
	msgbox Text_18402B, MSGBOX_AUTOCLOSE
	end

Route6_EventScript_1A9A15:: @ 81A9A15
	trainerbattle_single TRAINER_CAMPER_RICKY, Text_183E04, Text_183E2A
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9A3C
	msgbox Text_183E3C, MSGBOX_AUTOCLOSE
	end

EventScript_1A9A3C:: @ 81A9A3C
	trainerbattle_rematch TRAINER_CAMPER_RICKY, Text_1C163C, Text_183E2A
	msgbox Text_183E3C, MSGBOX_AUTOCLOSE
	end

Route6_EventScript_1A9A53:: @ 81A9A53
	trainerbattle_single TRAINER_CAMPER_JEFF, Text_183F07, Text_183F24
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9A7A
	msgbox Text_183F51, MSGBOX_AUTOCLOSE
	end

EventScript_1A9A7A:: @ 81A9A7A
	trainerbattle_rematch TRAINER_CAMPER_JEFF, Text_1C1723, Text_183F24
	msgbox Text_183F51, MSGBOX_AUTOCLOSE
	end

Route6_EventScript_1A9A91:: @ 81A9A91
	trainerbattle_single TRAINER_PICNICKER_NANCY, Text_183E4E, Text_183E79
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9AB8
	msgbox Text_183E8D, MSGBOX_AUTOCLOSE
	end

EventScript_1A9AB8:: @ 81A9AB8
	trainerbattle_rematch TRAINER_PICNICKER_NANCY, Text_1C166D, Text_183E79
	msgbox Text_183E8D, MSGBOX_AUTOCLOSE
	end

Route6_EventScript_1A9ACF:: @ 81A9ACF
	trainerbattle_single TRAINER_PICNICKER_ISABELLE, Text_183F90, Text_183FAB
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9AF6
	msgbox Text_183FC4, MSGBOX_AUTOCLOSE
	end

EventScript_1A9AF6:: @ 81A9AF6
	trainerbattle_rematch TRAINER_PICNICKER_ISABELLE, Text_1C1746, Text_183FAB
	msgbox Text_183FC4, MSGBOX_AUTOCLOSE
	end

Route11_EventScript_1A9B0D:: @ 81A9B0D
	trainerbattle_single TRAINER_YOUNGSTER_EDDIE, Text_184FBD, Text_184FD8
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9B34
	msgbox Text_184FEF, MSGBOX_AUTOCLOSE
	end

EventScript_1A9B34:: @ 81A9B34
	trainerbattle_rematch TRAINER_YOUNGSTER_EDDIE, Text_1C1DB5, Text_184FD8
	msgbox Text_184FEF, MSGBOX_AUTOCLOSE
	end

Route11_EventScript_1A9B4B:: @ 81A9B4B
	trainerbattle_single TRAINER_YOUNGSTER_DILLON, Text_18506A, Text_18509B
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9B72
	msgbox Text_1850CF, MSGBOX_AUTOCLOSE
	end

EventScript_1A9B72:: @ 81A9B72
	trainerbattle_rematch TRAINER_YOUNGSTER_DILLON, Text_1C1E1F, Text_18509B
	msgbox Text_1850CF, MSGBOX_AUTOCLOSE
	end

Route11_EventScript_1A9B89:: @ 81A9B89
	trainerbattle_single TRAINER_YOUNGSTER_YASU, Text_18517B, Text_1851AC
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9BB0
	msgbox Text_1851D2, MSGBOX_AUTOCLOSE
	end

EventScript_1A9BB0:: @ 81A9BB0
	trainerbattle_rematch TRAINER_YOUNGSTER_YASU, Text_1C1EE2, Text_1851AC
	msgbox Text_1851D2, MSGBOX_AUTOCLOSE
	end

Route11_EventScript_1A9BC7:: @ 81A9BC7
	trainerbattle_single TRAINER_YOUNGSTER_DAVE, Text_185285, Text_1852C1
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9BEE
	msgbox Text_1852E3, MSGBOX_AUTOCLOSE
	end

EventScript_1A9BEE:: @ 81A9BEE
	trainerbattle_rematch TRAINER_YOUNGSTER_DAVE, Text_1C1F40, Text_1852C1
	msgbox Text_1852E3, MSGBOX_AUTOCLOSE
	end

Route11_EventScript_1A9C05:: @ 81A9C05
	trainerbattle_single TRAINER_ENGINEER_BRAXTON, Text_185011, Text_185037
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9C2C
	msgbox Text_18504A, MSGBOX_AUTOCLOSE
	end

EventScript_1A9C2C:: @ 81A9C2C
	trainerbattle_rematch TRAINER_ENGINEER_BRAXTON, Text_1C1DE1, Text_185037
	msgbox Text_18504A, MSGBOX_AUTOCLOSE
	end

Route11_EventScript_1A9C43:: @ 81A9C43
	trainerbattle_single TRAINER_ENGINEER_BERNIE, Text_185236, Text_185250
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9C6A
	msgbox Text_185266, MSGBOX_AUTOCLOSE
	end

EventScript_1A9C6A:: @ 81A9C6A
	trainerbattle_rematch TRAINER_ENGINEER_BERNIE, Text_1C1F1D, Text_185250
	msgbox Text_185266, MSGBOX_AUTOCLOSE
	end

Route11_EventScript_1A9C81:: @ 81A9C81
	trainerbattle_single TRAINER_GAMER_HUGO, Text_184F01, Text_184F15
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9CA8
	msgbox Text_184F2E, MSGBOX_AUTOCLOSE
	end

EventScript_1A9CA8:: @ 81A9CA8
	trainerbattle_rematch TRAINER_GAMER_HUGO, Text_1C1D50, Text_184F15
	msgbox Text_184F2E, MSGBOX_AUTOCLOSE
	end

Route11_EventScript_1A9CBF:: @ 81A9CBF
	trainerbattle_single TRAINER_GAMER_JASPER, Text_184F5D, Text_184F7E
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9CE6
	msgbox Text_184F8E, MSGBOX_AUTOCLOSE
	end

EventScript_1A9CE6:: @ 81A9CE6
	trainerbattle_rematch TRAINER_GAMER_JASPER, Text_1C1D79, Text_184F7E
	msgbox Text_184F8E, MSGBOX_AUTOCLOSE
	end

Route11_EventScript_1A9CFD:: @ 81A9CFD
	trainerbattle_single TRAINER_GAMER_DIRK, Text_1850E9, Text_185105
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9D24
	msgbox Text_185114, MSGBOX_AUTOCLOSE
	end

EventScript_1A9D24:: @ 81A9D24
	trainerbattle_rematch TRAINER_GAMER_DIRK, Text_1C1E57, Text_185105
	msgbox Text_185114, MSGBOX_AUTOCLOSE
	end

Route11_EventScript_1A9D3B:: @ 81A9D3B
	trainerbattle_single TRAINER_GAMER_DARIAN, Text_185135, Text_18514E
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9D62
	msgbox Text_185161, MSGBOX_AUTOCLOSE
	end

EventScript_1A9D62:: @ 81A9D62
	trainerbattle_rematch TRAINER_GAMER_DARIAN, Text_1C1E9F, Text_18514E
	msgbox Text_185161, MSGBOX_AUTOCLOSE
	end

Route9_EventScript_1A9D79:: @ 81A9D79
	trainerbattle_single TRAINER_BUG_CATCHER_BRENT, Text_184A2F, Text_184A6A
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9DA0
	msgbox Text_184A8C, MSGBOX_AUTOCLOSE
	end

EventScript_1A9DA0:: @ 81A9DA0
	trainerbattle_rematch TRAINER_BUG_CATCHER_BRENT, Text_1C1B83, Text_184A6A
	msgbox Text_184A8C, MSGBOX_AUTOCLOSE
	end

Route9_EventScript_1A9DB7:: @ 81A9DB7
	trainerbattle_single TRAINER_BUG_CATCHER_CONNER, Text_184B18, Text_184B32
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9DDE
	msgbox Text_184B3B, MSGBOX_AUTOCLOSE
	end

EventScript_1A9DDE:: @ 81A9DDE
	trainerbattle_rematch TRAINER_BUG_CATCHER_CONNER, Text_1C1BDC, Text_184B32
	msgbox Text_184B3B, MSGBOX_AUTOCLOSE
	end

Route9_EventScript_1A9DF5:: @ 81A9DF5
	trainerbattle_single TRAINER_CAMPER_CHRIS, Text_184844, Text_18487E
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9E1C
	msgbox Text_184890, MSGBOX_AUTOCLOSE
	end

EventScript_1A9E1C:: @ 81A9E1C
	trainerbattle_rematch TRAINER_CAMPER_CHRIS, Text_1C1A5D, Text_18487E
	msgbox Text_184890, MSGBOX_AUTOCLOSE
	end

Route9_EventScript_1A9E33:: @ 81A9E33
	trainerbattle_single TRAINER_CAMPER_DREW, Text_18489E, Text_1848CC
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9E5A
	msgbox Text_1848DE, MSGBOX_AUTOCLOSE
	end

EventScript_1A9E5A:: @ 81A9E5A
	trainerbattle_rematch TRAINER_CAMPER_DREW, Text_1C1A9B, Text_1848CC
	msgbox Text_1848DE, MSGBOX_AUTOCLOSE
	end

Route9_EventScript_1A9E71:: @ 81A9E71
	trainerbattle_single TRAINER_PICNICKER_ALICIA, Text_1847B7, Text_1847DF
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9E98
	msgbox Text_1847F0, MSGBOX_AUTOCLOSE
	end

EventScript_1A9E98:: @ 81A9E98
	trainerbattle_rematch TRAINER_PICNICKER_ALICIA, Text_1C1A2E, Text_1847DF
	msgbox Text_1847F0, MSGBOX_AUTOCLOSE
	end

Route9_EventScript_1A9EAF:: @ 81A9EAF
	trainerbattle_single TRAINER_PICNICKER_CAITLIN, Text_1848FF, Text_18491C
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9ED6
	msgbox Text_184931, MSGBOX_AUTOCLOSE
	end

EventScript_1A9ED6:: @ 81A9ED6
	trainerbattle_rematch TRAINER_PICNICKER_CAITLIN, Text_1C1AFB, Text_18491C
	msgbox Text_184931, MSGBOX_AUTOCLOSE
	end

Route9_EventScript_1A9EED:: @ 81A9EED
	trainerbattle_single TRAINER_HIKER_ALAN, Text_184ABE, Text_184AD5
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9F14
	msgbox Text_184AF1, MSGBOX_AUTOCLOSE
	end

EventScript_1A9F14:: @ 81A9F14
	trainerbattle_rematch TRAINER_HIKER_ALAN, Text_1C1BBE, Text_184AD5
	msgbox Text_184AF1, MSGBOX_AUTOCLOSE
	end

Route9_EventScript_1A9F2B:: @ 81A9F2B
	trainerbattle_single TRAINER_HIKER_BRICE, Text_1849DF, Text_184A04
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9F52
	msgbox Text_184A11, MSGBOX_AUTOCLOSE
	end

EventScript_1A9F52:: @ 81A9F52
	trainerbattle_rematch TRAINER_HIKER_BRICE, Text_1C1B5E, Text_184A04
	msgbox Text_184A11, MSGBOX_AUTOCLOSE
	end

Route9_EventScript_1A9F69:: @ 81A9F69
	trainerbattle_single TRAINER_HIKER_JEREMY, Text_18495E, Text_18497F
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9F90
	msgbox Text_1849B0, MSGBOX_AUTOCLOSE
	end

EventScript_1A9F90:: @ 81A9F90
	trainerbattle_rematch TRAINER_HIKER_JEREMY, Text_1C1B37, Text_18497F
	msgbox Text_1849B0, MSGBOX_AUTOCLOSE
	end

Route10_EventScript_1A9FA7:: @ 81A9FA7
	trainerbattle_single TRAINER_PICNICKER_HEIDI, Text_184CF1, Text_184D31
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1A9FCE
	msgbox Text_184D4D, MSGBOX_AUTOCLOSE
	end

EventScript_1A9FCE:: @ 81A9FCE
	trainerbattle_rematch TRAINER_PICNICKER_HEIDI, Text_1C1C9A, Text_184D31
	msgbox Text_184D4D, MSGBOX_AUTOCLOSE
	end

Route10_EventScript_1A9FE5:: @ 81A9FE5
	trainerbattle_single TRAINER_PICNICKER_CAROL, Text_184E04, Text_184E3B
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA00C
	msgbox Text_184E5E, MSGBOX_AUTOCLOSE
	end

EventScript_1AA00C:: @ 81AA00C
	trainerbattle_rematch TRAINER_PICNICKER_CAROL, Text_1C1D14, Text_184E3B
	msgbox Text_184E5E, MSGBOX_AUTOCLOSE
	end

Route10_EventScript_1AA023:: @ 81AA023
	trainerbattle_single TRAINER_POKEMANIAC_MARK, Text_184B8A, Text_184BE5
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA04A
	msgbox Text_184BFB, MSGBOX_AUTOCLOSE
	end

EventScript_1AA04A:: @ 81AA04A
	trainerbattle_rematch TRAINER_POKEMANIAC_MARK, Text_1C1BFA, Text_184BE5
	msgbox Text_184BFB, MSGBOX_AUTOCLOSE
	end

Route10_EventScript_1AA061:: @ 81AA061
	trainerbattle_single TRAINER_POKEMANIAC_HERMAN, Text_184C86, Text_184CA7
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA088
	msgbox Text_184CBB, MSGBOX_AUTOCLOSE
	end

EventScript_1AA088:: @ 81AA088
	trainerbattle_rematch TRAINER_POKEMANIAC_HERMAN, Text_1C1C76, Text_184CA7
	msgbox Text_184CBB, MSGBOX_AUTOCLOSE
	end

Route10_EventScript_1AA09F:: @ 81AA09F
	trainerbattle_single TRAINER_HIKER_CLARK, Text_184C1D, Text_184C2D
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA0C6
	msgbox Text_184C60, MSGBOX_AUTOCLOSE
	end

EventScript_1AA0C6:: @ 81AA0C6
	trainerbattle_rematch TRAINER_HIKER_CLARK, Text_1C1C4F, Text_184C2D
	msgbox Text_184C60, MSGBOX_AUTOCLOSE
	end

Route10_EventScript_1AA0DD:: @ 81AA0DD
	trainerbattle_single TRAINER_HIKER_TRENT, Text_184DAA, Text_184DCE
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA104
	msgbox Text_184DE4, MSGBOX_AUTOCLOSE
	end

EventScript_1AA104:: @ 81AA104
	trainerbattle_rematch TRAINER_HIKER_TRENT, Text_1C1CD3, Text_184DCE
	msgbox Text_184DE4, MSGBOX_AUTOCLOSE
	end

Route8_EventScript_1AA11B:: @ 81AA11B
	trainerbattle_single TRAINER_LASS_PAIGE, Text_1841ED, Text_184210
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA142
	msgbox Text_18421B, MSGBOX_AUTOCLOSE
	end

EventScript_1AA142:: @ 81AA142
	trainerbattle_rematch TRAINER_LASS_PAIGE, Text_1C1834, Text_184210
	msgbox Text_18421B, MSGBOX_AUTOCLOSE
	end

Route8_EventScript_1AA159:: @ 81AA159
	trainerbattle_single TRAINER_LASS_ANDREA, Text_184321, Text_184346
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA180
	msgbox Text_184350, MSGBOX_AUTOCLOSE
	end

EventScript_1AA180:: @ 81AA180
	trainerbattle_rematch TRAINER_LASS_ANDREA, Text_1C18AA, Text_184346
	msgbox Text_184350, MSGBOX_AUTOCLOSE
	end

Route8_EventScript_1AA197:: @ 81AA197
	trainerbattle_single TRAINER_LASS_MEGAN, Text_18437A, Text_1843A6
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA1BE
	msgbox Text_1843D2, MSGBOX_AUTOCLOSE
	end

EventScript_1AA1BE:: @ 81AA1BE
	trainerbattle_rematch TRAINER_LASS_MEGAN, Text_1C18DC, Text_1843A6
	msgbox Text_1843D2, MSGBOX_AUTOCLOSE
	end

Route8_EventScript_1AA1D5:: @ 81AA1D5
	trainerbattle_single TRAINER_LASS_JULIA, Text_1844AC, Text_1844D6
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA1FC
	msgbox Text_1844FD, MSGBOX_AUTOCLOSE
	end

EventScript_1AA1FC:: @ 81AA1FC
	trainerbattle_rematch TRAINER_LASS_JULIA, Text_1C1955, Text_1844D6
	msgbox Text_1844FD, MSGBOX_AUTOCLOSE
	end

Route8_EventScript_1AA213:: @ 81AA213
	trainerbattle_single TRAINER_SUPER_NERD_AIDAN, Text_1840C5, Text_184100
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA23A
	msgbox Text_18410E, MSGBOX_AUTOCLOSE
	end

EventScript_1AA23A:: @ 81AA23A
	trainerbattle_rematch TRAINER_SUPER_NERD_AIDAN, Text_1C1793, Text_184100
	msgbox Text_18410E, MSGBOX_AUTOCLOSE
	end

Route8_EventScript_1AA251:: @ 81AA251
	trainerbattle_single TRAINER_SUPER_NERD_GLENN, Text_18417C, Text_1841B6
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA278
	msgbox Text_1841C8, MSGBOX_AUTOCLOSE
	end

EventScript_1AA278:: @ 81AA278
	trainerbattle_rematch TRAINER_SUPER_NERD_GLENN, Text_1C17F1, Text_1841B6
	msgbox Text_1841C8, MSGBOX_AUTOCLOSE
	end

Route8_EventScript_1AA28F:: @ 81AA28F
	trainerbattle_single TRAINER_SUPER_NERD_LESLIE, Text_184257, Text_18427A
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA2B6
	msgbox Text_1842B3, MSGBOX_AUTOCLOSE
	end

EventScript_1AA2B6:: @ 81AA2B6
	trainerbattle_rematch TRAINER_SUPER_NERD_LESLIE, Text_1C1873, Text_18427A
	msgbox Text_1842B3, MSGBOX_AUTOCLOSE
	end

Route8_EventScript_1AA2CD:: @ 81AA2CD
	trainerbattle_single TRAINER_GAMER_STAN, Text_18412F, Text_18414D
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA2F4
	msgbox Text_184162, MSGBOX_AUTOCLOSE
	end

EventScript_1AA2F4:: @ 81AA2F4
	trainerbattle_rematch TRAINER_GAMER_STAN, Text_1C17CD, Text_18414D
	msgbox Text_184162, MSGBOX_AUTOCLOSE
	end

Route8_EventScript_1AA30B:: @ 81AA30B
	trainerbattle_single TRAINER_GAMER_RICH, Text_184432, Text_18444F
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA332
	msgbox Text_184466, MSGBOX_AUTOCLOSE
	end

EventScript_1AA332:: @ 81AA332
	trainerbattle_rematch TRAINER_GAMER_RICH, Text_1C191F, Text_18444F
	msgbox Text_184466, MSGBOX_AUTOCLOSE
	end

Route8_EventScript_1AA349:: @ 81AA349
	trainerbattle_double TRAINER_TWINS_ELI_ANNE, Text_1845A4, Text_1845D0, Text_184616
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA374
	msgbox Text_1845F2, MSGBOX_AUTOCLOSE
	end

EventScript_1AA374:: @ 81AA374
	trainerbattle_rematch_double TRAINER_TWINS_ELI_ANNE, Text_1C19E5, Text_1845D0, Text_184616
	msgbox Text_1845F2, MSGBOX_AUTOCLOSE
	end

Route8_EventScript_1AA38F:: @ 81AA38F
	trainerbattle_double TRAINER_TWINS_ELI_ANNE, Text_18464A, Text_184675, Text_1846AF
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA3BA
	msgbox Text_18468B, MSGBOX_AUTOCLOSE
	end

EventScript_1AA3BA:: @ 81AA3BA
	trainerbattle_rematch_double TRAINER_TWINS_ELI_ANNE, Text_1C1A0D, Text_184675, Text_1846AF
	msgbox Text_18468B, MSGBOX_AUTOCLOSE
	end

Route8_EventScript_1AA3D5:: @ 81AA3D5
	trainerbattle_single TRAINER_BIKER_RICARDO, Text_1846E2, Text_1846FC
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA3FC
	msgbox Text_184719, MSGBOX_AUTOCLOSE
	end

EventScript_1AA3FC:: @ 81AA3FC
	trainerbattle_rematch TRAINER_BIKER_RICARDO, Text_1C199C, Text_1846FC
	msgbox Text_184719, MSGBOX_AUTOCLOSE
	end

Route8_EventScript_1AA413:: @ 81AA413
	trainerbattle_single TRAINER_BIKER_JAREN, Text_184742, Text_184767
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA43A
	msgbox Text_18477A, MSGBOX_AUTOCLOSE
	end

EventScript_1AA43A:: @ 81AA43A
	trainerbattle_rematch TRAINER_BIKER_JAREN, Text_1C19BC, Text_184767
	msgbox Text_18477A, MSGBOX_AUTOCLOSE
	end

Route12_EventScript_1AA451:: @ 81AA451
	trainerbattle_single TRAINER_FISHERMAN_NED, Text_185402, Text_18541B
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA478
	msgbox Text_185432, MSGBOX_AUTOCLOSE
	end

EventScript_1AA478:: @ 81AA478
	trainerbattle_rematch TRAINER_FISHERMAN_NED, Text_1C1F9D, Text_18541B
	msgbox Text_185432, MSGBOX_AUTOCLOSE
	end

Route12_EventScript_1AA48F:: @ 81AA48F
	trainerbattle_single TRAINER_FISHERMAN_CHIP, Text_18544E, Text_185475
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA4B6
	msgbox Text_185488, MSGBOX_AUTOCLOSE
	end

EventScript_1AA4B6:: @ 81AA4B6
	trainerbattle_rematch TRAINER_FISHERMAN_CHIP, Text_1C1FD8, Text_185475
	msgbox Text_185488, MSGBOX_AUTOCLOSE
	end

Route12_EventScript_1AA4CD:: @ 81AA4CD
	trainerbattle_single TRAINER_FISHERMAN_HANK, Text_1855E1, Text_185606
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA4F4
	msgbox Text_185616, MSGBOX_AUTOCLOSE
	end

EventScript_1AA4F4:: @ 81AA4F4
	trainerbattle_rematch TRAINER_FISHERMAN_HANK, Text_1C209C, Text_185606
	msgbox Text_185616, MSGBOX_AUTOCLOSE
	end

Route12_EventScript_1AA50B:: @ 81AA50B
	trainerbattle_single TRAINER_FISHERMAN_ELLIOT, Text_185682, Text_1856D0
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA532
	msgbox Text_1856DF, MSGBOX_AUTOCLOSE
	end

EventScript_1AA532:: @ 81AA532
	trainerbattle_rematch TRAINER_FISHERMAN_ELLIOT, Text_1C20D4, Text_1856D0
	msgbox Text_1856DF, MSGBOX_AUTOCLOSE
	end

Route12_EventScript_1AA549:: @ 81AA549
	trainerbattle_single TRAINER_FISHERMAN_ANDREW, Text_18570E, Text_185744
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA570
	msgbox Text_18574D, MSGBOX_AUTOCLOSE
	end

EventScript_1AA570:: @ 81AA570
	trainerbattle_rematch TRAINER_FISHERMAN_ANDREW, Text_1C2134, Text_185744
	msgbox Text_18574D, MSGBOX_AUTOCLOSE
	end

Route12_EventScript_1AA587:: @ 81AA587
	trainerbattle_single TRAINER_ROCKER_LUCA, Text_185547, Text_18559B
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA5AE
	msgbox Text_1855A6, MSGBOX_AUTOCLOSE
	end

EventScript_1AA5AE:: @ 81AA5AE
	trainerbattle_rematch TRAINER_ROCKER_LUCA, Text_1C203B, Text_18559B
	msgbox Text_1855A6, MSGBOX_AUTOCLOSE
	end

Route12_EventScript_1AA5C5:: @ 81AA5C5
	trainerbattle_single TRAINER_CAMPER_JUSTIN, Text_1854B9, Text_1854ED
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA5EC
	msgbox Text_1854F2, MSGBOX_AUTOCLOSE
	end

EventScript_1AA5EC:: @ 81AA5EC
	trainerbattle_rematch TRAINER_CAMPER_JUSTIN, Text_1C2008, Text_1854ED
	msgbox Text_1854F2, MSGBOX_AUTOCLOSE
	end

Route12_EventScript_1AA603:: @ 81AA603
	trainerbattle_double TRAINER_YOUNG_COUPLE_GIA_JES, Text_1857C5, Text_1857F1, Text_185842
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA62E
	msgbox Text_18581F, MSGBOX_AUTOCLOSE
	end

EventScript_1AA62E:: @ 81AA62E
	trainerbattle_rematch_double TRAINER_YOUNG_COUPLE_GIA_JES, Text_1C216B, Text_1857F1, Text_185842
	msgbox Text_18581F, MSGBOX_AUTOCLOSE
	end

Route12_EventScript_1AA649:: @ 81AA649
	trainerbattle_double TRAINER_YOUNG_COUPLE_GIA_JES, Text_1858A6, Text_1858D0, Text_185908
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA674
	msgbox Text_1858E2, MSGBOX_AUTOCLOSE
	end

EventScript_1AA674:: @ 81AA674
	trainerbattle_rematch_double TRAINER_YOUNG_COUPLE_GIA_JES, Text_1C219B, Text_1858D0, Text_185908
	msgbox Text_1858E2, MSGBOX_AUTOCLOSE
	end

Route13_EventScript_1AA68F:: @ 81AA68F
	trainerbattle_single TRAINER_BIKER_JARED, Text_185D05, Text_185D1D
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA6B6
	msgbox Text_185D33, MSGBOX_AUTOCLOSE
	end

EventScript_1AA6B6:: @ 81AA6B6
	trainerbattle_rematch TRAINER_BIKER_JARED, Text_1C236B, Text_185D1D
	msgbox Text_185D33, MSGBOX_AUTOCLOSE
	end

Route13_EventScript_1AA6CD:: @ 81AA6CD
	trainerbattle_single TRAINER_BEAUTY_LOLA, Text_185BFC, Text_185C1F
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA6F4
	msgbox Text_185C35, MSGBOX_AUTOCLOSE
	end

EventScript_1AA6F4:: @ 81AA6F4
	trainerbattle_rematch TRAINER_BEAUTY_LOLA, Text_1C2306, Text_185C1F
	msgbox Text_185C35, MSGBOX_AUTOCLOSE
	end

Route13_EventScript_1AA70B:: @ 81AA70B
	trainerbattle_single TRAINER_BEAUTY_SHEILA, Text_185C69, Text_185C95
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA732
	msgbox Text_185CA8, MSGBOX_AUTOCLOSE
	end

EventScript_1AA732:: @ 81AA732
	trainerbattle_rematch TRAINER_BEAUTY_SHEILA, Text_1C2340, Text_185C95
	msgbox Text_185CA8, MSGBOX_AUTOCLOSE
	end

Route13_EventScript_1AA749:: @ 81AA749
	trainerbattle_single TRAINER_BIRD_KEEPER_SEBASTIAN, Text_185955, Text_18597E
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA770
	msgbox Text_1859A2, MSGBOX_AUTOCLOSE
	end

EventScript_1AA770:: @ 81AA770
	trainerbattle_rematch TRAINER_BIRD_KEEPER_SEBASTIAN, Text_1C21EE, Text_18597E
	msgbox Text_1859A2, MSGBOX_AUTOCLOSE
	end

Route13_EventScript_1AA787:: @ 81AA787
	trainerbattle_single TRAINER_BIRD_KEEPER_PERRY, Text_185B8F, Text_185BCA
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA7AE
	msgbox Text_185BDB, MSGBOX_AUTOCLOSE
	end

EventScript_1AA7AE:: @ 81AA7AE
	trainerbattle_rematch TRAINER_BIRD_KEEPER_PERRY, Text_1C22CA, Text_185BCA
	msgbox Text_185BDB, MSGBOX_AUTOCLOSE
	end

Route13_EventScript_1AA7C5:: @ 81AA7C5
	trainerbattle_single TRAINER_BIRD_KEEPER_ROBERT, Text_185D3D, Text_185D7B
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA7EC
	msgbox Text_185D89, MSGBOX_AUTOCLOSE
	end

EventScript_1AA7EC:: @ 81AA7EC
	trainerbattle_rematch TRAINER_BIRD_KEEPER_ROBERT, Text_1C2383, Text_185D7B
	msgbox Text_185D89, MSGBOX_AUTOCLOSE
	end

Route13_EventScript_1AA803:: @ 81AA803
	trainerbattle_single TRAINER_PICNICKER_ALMA, Text_185B12, Text_185B48
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA82A
	msgbox Text_185B67, MSGBOX_AUTOCLOSE
	end

EventScript_1AA82A:: @ 81AA82A
	trainerbattle_rematch TRAINER_PICNICKER_ALMA, Text_1C2299, Text_185B48
	msgbox Text_185B67, MSGBOX_AUTOCLOSE
	end

Route13_EventScript_1AA841:: @ 81AA841
	trainerbattle_single TRAINER_PICNICKER_SUSIE, Text_1859CF, Text_1859EC
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA868
	msgbox Text_1859F9, MSGBOX_AUTOCLOSE
	end

EventScript_1AA868:: @ 81AA868
	trainerbattle_rematch TRAINER_PICNICKER_SUSIE, Text_1C220C, Text_1859EC
	msgbox Text_1859F9, MSGBOX_AUTOCLOSE
	end

Route13_EventScript_1AA87F:: @ 81AA87F
	trainerbattle_single TRAINER_PICNICKER_VALERIE, Text_185A37, Text_185A56
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA8A6
	msgbox Text_185A62, MSGBOX_AUTOCLOSE
	end

EventScript_1AA8A6:: @ 81AA8A6
	trainerbattle_rematch TRAINER_PICNICKER_VALERIE, Text_1C223C, Text_185A56
	msgbox Text_185A62, MSGBOX_AUTOCLOSE
	end

Route13_EventScript_1AA8BD:: @ 81AA8BD
	trainerbattle_single TRAINER_PICNICKER_GWEN, Text_185A91, Text_185AC1
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA8E4
	msgbox Text_185ADE, MSGBOX_AUTOCLOSE
	end

EventScript_1AA8E4:: @ 81AA8E4
	trainerbattle_rematch TRAINER_PICNICKER_GWEN, Text_1C225B, Text_185AC1
	msgbox Text_185ADE, MSGBOX_AUTOCLOSE
	end

Route14_EventScript_1AA8FB:: @ 81AA8FB
	trainerbattle_single TRAINER_BIKER_MALIK, Text_186344, Text_186362
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA922
	msgbox Text_18636E, MSGBOX_AUTOCLOSE
	end

EventScript_1AA922:: @ 81AA922
	trainerbattle_rematch TRAINER_BIKER_MALIK, Text_1C25D6, Text_186362
	msgbox Text_18636E, MSGBOX_AUTOCLOSE
	end

Route14_EventScript_1AA939:: @ 81AA939
	trainerbattle_single TRAINER_BIKER_LUKAS, Text_1861F7, Text_186223
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA960
	msgbox Text_186239, MSGBOX_AUTOCLOSE
	end

EventScript_1AA960:: @ 81AA960
	trainerbattle_rematch TRAINER_BIKER_LUKAS, Text_1C2531, Text_186223
	msgbox Text_186239, MSGBOX_AUTOCLOSE
	end

Route14_EventScript_1AA977:: @ 81AA977
	trainerbattle_single TRAINER_BIKER_ISAAC, Text_186263, Text_186291
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA99E
	msgbox Text_18629D, MSGBOX_AUTOCLOSE
	end

EventScript_1AA99E:: @ 81AA99E
	trainerbattle_rematch TRAINER_BIKER_ISAAC, Text_1C2572, Text_186291
	msgbox Text_18629D, MSGBOX_AUTOCLOSE
	end

Route14_EventScript_1AA9B5:: @ 81AA9B5
	trainerbattle_single TRAINER_BIKER_GERALD, Text_1862BD, Text_1862EF
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AA9DC
	msgbox Text_1862F8, MSGBOX_AUTOCLOSE
	end

EventScript_1AA9DC:: @ 81AA9DC
	trainerbattle_rematch TRAINER_BIKER_GERALD, Text_1C259E, Text_1862EF
	msgbox Text_1862F8, MSGBOX_AUTOCLOSE
	end

Route14_EventScript_1AA9F3:: @ 81AA9F3
	trainerbattle_single TRAINER_BIRD_KEEPER_DONALD, Text_1860D9, Text_18610A
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AAA1A
	msgbox Text_18611D, MSGBOX_AUTOCLOSE
	end

EventScript_1AAA1A:: @ 81AAA1A
	trainerbattle_rematch TRAINER_BIRD_KEEPER_DONALD, Text_1C24CB, Text_18610A
	msgbox Text_18611D, MSGBOX_AUTOCLOSE
	end

Route14_EventScript_1AAA31:: @ 81AAA31
	trainerbattle_single TRAINER_BIRD_KEEPER_BENNY, Text_18618E, Text_1861B3
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AAA58
	msgbox Text_1861BE, MSGBOX_AUTOCLOSE
	end

EventScript_1AAA58:: @ 81AAA58
	trainerbattle_rematch TRAINER_BIRD_KEEPER_BENNY, Text_1C2505, Text_1861B3
	msgbox Text_1861BE, MSGBOX_AUTOCLOSE
	end

Route14_EventScript_1AAA6F:: @ 81AAA6F
	trainerbattle_single TRAINER_BIRD_KEEPER_CARTER, Text_185E4D, Text_185E81
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AAA96
	msgbox Text_185E9C, MSGBOX_AUTOCLOSE
	end

EventScript_1AAA96:: @ 81AAA96
	trainerbattle_rematch TRAINER_BIRD_KEEPER_CARTER, Text_1C23C1, Text_185E81
	msgbox Text_185E9C, MSGBOX_AUTOCLOSE
	end

Route14_EventScript_1AAAAD:: @ 81AAAAD
	trainerbattle_single TRAINER_BIRD_KEEPER_MITCH, Text_185EDF, Text_185F0B
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AAAD4
	msgbox Text_185F1A, MSGBOX_AUTOCLOSE
	end

EventScript_1AAAD4:: @ 81AAAD4
	trainerbattle_rematch TRAINER_BIRD_KEEPER_MITCH, Text_1C23EF, Text_185F0B
	msgbox Text_185F1A, MSGBOX_AUTOCLOSE
	end

Route14_EventScript_1AAAEB:: @ 81AAAEB
	trainerbattle_single TRAINER_BIRD_KEEPER_BECK, Text_185F46, Text_185FAE
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AAB12
	msgbox Text_185FBB, MSGBOX_AUTOCLOSE
	end

EventScript_1AAB12:: @ 81AAB12
	trainerbattle_rematch TRAINER_BIRD_KEEPER_BECK, Text_1C2425, Text_185FAE
	msgbox Text_185FBB, MSGBOX_AUTOCLOSE
	end

Route14_EventScript_1AAB29:: @ 81AAB29
	trainerbattle_single TRAINER_BIRD_KEEPER_MARLON, Text_186021, Text_18607C
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AAB50
	msgbox Text_186091, MSGBOX_AUTOCLOSE
	end

EventScript_1AAB50:: @ 81AAB50
	trainerbattle_rematch TRAINER_BIRD_KEEPER_MARLON, Text_1C2461, Text_18607C
	msgbox Text_186091, MSGBOX_AUTOCLOSE
	end

Route14_EventScript_1AAB67:: @ 81AAB67
	trainerbattle_double TRAINER_TWINS_KIRI_JAN, Text_1863B7, Text_1863EA, Text_18642E
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AAB92
	msgbox Text_18640D, MSGBOX_AUTOCLOSE
	end

EventScript_1AAB92:: @ 81AAB92
	trainerbattle_rematch_double TRAINER_TWINS_KIRI_JAN, Text_1C25FB, Text_1863EA, Text_18642E
	msgbox Text_18640D, MSGBOX_AUTOCLOSE
	end

Route14_EventScript_1AABAD:: @ 81AABAD
	trainerbattle_double TRAINER_TWINS_KIRI_JAN, Text_18645B, Text_186487, Text_1864D3
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AABD8
	msgbox Text_18649C, MSGBOX_AUTOCLOSE
	end

EventScript_1AABD8:: @ 81AABD8
	trainerbattle_rematch_double TRAINER_TWINS_KIRI_JAN, Text_1C261B, Text_186487, Text_1864D3
	msgbox Text_18649C, MSGBOX_AUTOCLOSE
	end

Route15_EventScript_1AABF3:: @ 81AABF3
	trainerbattle_single TRAINER_BIKER_ERNEST, Text_1868B6, Text_1868E8
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AAC1A
	msgbox Text_1868F1, MSGBOX_AUTOCLOSE
	end

EventScript_1AAC1A:: @ 81AAC1A
	trainerbattle_rematch TRAINER_BIKER_ERNEST, Text_1C27E7, Text_1868E8
	msgbox Text_1868F1, MSGBOX_AUTOCLOSE
	end

Route15_EventScript_1AAC31:: @ 81AAC31
	trainerbattle_single TRAINER_BIKER_ALEX, Text_186936, Text_186968
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AAC58
	msgbox Text_18697C, MSGBOX_AUTOCLOSE
	end

EventScript_1AAC58:: @ 81AAC58
	trainerbattle_rematch TRAINER_BIKER_ALEX, Text_1C2814, Text_186968
	msgbox Text_18697C, MSGBOX_AUTOCLOSE
	end

Route15_EventScript_1AAC6F:: @ 81AAC6F
	trainerbattle_single TRAINER_BEAUTY_GRACE, Text_18678B, Text_1867C1
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AAC96
	msgbox Text_1867DA, MSGBOX_AUTOCLOSE
	end

EventScript_1AAC96:: @ 81AAC96
	trainerbattle_rematch TRAINER_BEAUTY_GRACE, Text_1C2753, Text_1867C1
	msgbox Text_1867DA, MSGBOX_AUTOCLOSE
	end

Route15_EventScript_1AACAD:: @ 81AACAD
	trainerbattle_single TRAINER_BEAUTY_OLIVIA, Text_18680C, Text_186841
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AACD4
	msgbox Text_18686F, MSGBOX_AUTOCLOSE
	end

EventScript_1AACD4:: @ 81AACD4
	trainerbattle_rematch TRAINER_BEAUTY_OLIVIA, Text_1C279D, Text_186841
	msgbox Text_18686F, MSGBOX_AUTOCLOSE
	end

Route15_EventScript_1AACEB:: @ 81AACEB
	trainerbattle_single TRAINER_BIRD_KEEPER_EDWIN, Text_18664F, Text_18667A
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AAD12
	msgbox Text_18668D, MSGBOX_AUTOCLOSE
	end

EventScript_1AAD12:: @ 81AAD12
	trainerbattle_rematch TRAINER_BIRD_KEEPER_EDWIN, Text_1C26D3, Text_18667A
	msgbox Text_18668D, MSGBOX_AUTOCLOSE
	end

Route15_EventScript_1AAD29:: @ 81AAD29
	trainerbattle_single TRAINER_BIRD_KEEPER_CHESTER, Text_1866D1, Text_186707
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AAD50
	msgbox Text_18671A, MSGBOX_AUTOCLOSE
	end

EventScript_1AAD50:: @ 81AAD50
	trainerbattle_rematch TRAINER_BIRD_KEEPER_CHESTER, Text_1C2717, Text_186707
	msgbox Text_18671A, MSGBOX_AUTOCLOSE
	end

Route15_EventScript_1AAD67:: @ 81AAD67
	trainerbattle_single TRAINER_PICNICKER_YAZMIN, Text_186A22, Text_186A40
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AAD8E
	msgbox Text_186A55, MSGBOX_AUTOCLOSE
	end

EventScript_1AAD8E:: @ 81AAD8E
	trainerbattle_rematch TRAINER_PICNICKER_YAZMIN, Text_1C287D, Text_186A40
	msgbox Text_186A55, MSGBOX_AUTOCLOSE
	end

Route15_EventScript_1AADA5:: @ 81AADA5
	trainerbattle_single TRAINER_PICNICKER_KINDRA, Text_18650B, Text_186549
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AADCC
	msgbox Text_18655A, MSGBOX_AUTOCLOSE
	end

EventScript_1AADCC:: @ 81AADCC
	trainerbattle_rematch TRAINER_PICNICKER_KINDRA, Text_1C2650, Text_186549
	msgbox Text_18655A, MSGBOX_AUTOCLOSE
	end

Route15_EventScript_1AADE3:: @ 81AADE3
	trainerbattle_single TRAINER_PICNICKER_BECKY, Text_1865D3, Text_186612
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AAE0A
	msgbox Text_18661D, MSGBOX_AUTOCLOSE
	end

EventScript_1AAE0A:: @ 81AAE0A
	trainerbattle_rematch TRAINER_PICNICKER_BECKY, Text_1C268D, Text_186612
	msgbox Text_18661D, MSGBOX_AUTOCLOSE
	end

Route15_EventScript_1AAE21:: @ 81AAE21
	trainerbattle_single TRAINER_PICNICKER_CELIA, Text_1869BA, Text_1869E6
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AAE48
	msgbox Text_1869F4, MSGBOX_AUTOCLOSE
	end

EventScript_1AAE48:: @ 81AAE48
	trainerbattle_rematch TRAINER_PICNICKER_CELIA, Text_1C2846, Text_1869E6
	msgbox Text_1869F4, MSGBOX_AUTOCLOSE
	end

Route15_EventScript_1AAE5F:: @ 81AAE5F
	trainerbattle_double TRAINER_CRUSH_KIN_RON_MYA, Text_186A95, Text_186ACB, Text_186B46
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AAE8A
	msgbox Text_186B0A, MSGBOX_AUTOCLOSE
	end

EventScript_1AAE8A:: @ 81AAE8A
	trainerbattle_rematch_double TRAINER_CRUSH_KIN_RON_MYA, Text_1C28A1, Text_186ACB, Text_186B46
	msgbox Text_186B0A, MSGBOX_AUTOCLOSE
	end

Route15_EventScript_1AAEA5:: @ 81AAEA5
	trainerbattle_double TRAINER_CRUSH_KIN_RON_MYA, Text_186B89, Text_186BB1, Text_186BFE
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AAED0
	msgbox Text_186BD2, MSGBOX_AUTOCLOSE
	end

EventScript_1AAED0:: @ 81AAED0
	trainerbattle_rematch_double TRAINER_CRUSH_KIN_RON_MYA, Text_1C28EC, Text_186BB1, Text_186BFE
	msgbox Text_186BD2, MSGBOX_AUTOCLOSE
	end

Route16_EventScript_1AAEEB:: @ 81AAEEB
	trainerbattle_single TRAINER_BIKER_LAO, Text_186C4D, Text_186C5F
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AAF12
	msgbox Text_186C75, MSGBOX_AUTOCLOSE
	end

EventScript_1AAF12:: @ 81AAF12
	trainerbattle_rematch TRAINER_BIKER_LAO, Text_1C2913, Text_186C5F
	msgbox Text_186C75, MSGBOX_AUTOCLOSE
	end

Route16_EventScript_1AAF29:: @ 81AAF29
	trainerbattle_single TRAINER_BIKER_HIDEO, Text_186D39, Text_186D52
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AAF50
	msgbox Text_186D5A, MSGBOX_AUTOCLOSE
	end

EventScript_1AAF50:: @ 81AAF50
	trainerbattle_rematch TRAINER_BIKER_HIDEO, Text_1C297B, Text_186D52
	msgbox Text_186D5A, MSGBOX_AUTOCLOSE
	end

Route16_EventScript_1AAF67:: @ 81AAF67
	trainerbattle_single TRAINER_BIKER_RUBEN, Text_186E86, Text_186EB4
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AAF8E
	msgbox Text_186EC7, MSGBOX_AUTOCLOSE
	end

EventScript_1AAF8E:: @ 81AAF8E
	trainerbattle_rematch TRAINER_BIKER_RUBEN, Text_1C29EB, Text_186EB4
	msgbox Text_186EC7, MSGBOX_AUTOCLOSE
	end

Route16_EventScript_1AAFA5:: @ 81AAFA5
	trainerbattle_single TRAINER_CUE_BALL_KOJI, Text_186CA2, Text_186CBB
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AAFCC
	msgbox Text_186CC5, MSGBOX_AUTOCLOSE
	end

EventScript_1AAFCC:: @ 81AAFCC
	trainerbattle_rematch TRAINER_CUE_BALL_KOJI, Text_1C2925, Text_186CBB
	msgbox Text_186CC5, MSGBOX_AUTOCLOSE
	end

Route16_EventScript_1AAFE3:: @ 81AAFE3
	trainerbattle_single TRAINER_CUE_BALL_LUKE, Text_186CE5, Text_186D06
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB00A
	msgbox Text_186D16, MSGBOX_AUTOCLOSE
	end

EventScript_1AB00A:: @ 81AB00A
	trainerbattle_rematch TRAINER_CUE_BALL_LUKE, Text_1C2944, Text_186D06
	msgbox Text_186D16, MSGBOX_AUTOCLOSE
	end

Route16_EventScript_1AB021:: @ 81AB021
	trainerbattle_single TRAINER_CUE_BALL_CAMRON, Text_186DD9, Text_186E0D
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB048
	msgbox Text_186E1C, MSGBOX_AUTOCLOSE
	end

EventScript_1AB048:: @ 81AB048
	trainerbattle_rematch TRAINER_CUE_BALL_CAMRON, Text_1C29B0, Text_186E0D
	msgbox Text_186E1C, MSGBOX_AUTOCLOSE
	end

Route16_EventScript_1AB05F:: @ 81AB05F
	trainerbattle_double TRAINER_YOUNG_COUPLE_LEA_JED, Text_186FBD, Text_186FFA, Text_187057
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB08A
	msgbox Text_187027, MSGBOX_AUTOCLOSE
	end

EventScript_1AB08A:: @ 81AB08A
	trainerbattle_rematch_double TRAINER_YOUNG_COUPLE_LEA_JED, Text_1C2A19, Text_186FFA, Text_187057
	msgbox Text_187027, MSGBOX_AUTOCLOSE
	end

Route16_EventScript_1AB0A5:: @ 81AB0A5
	trainerbattle_double TRAINER_YOUNG_COUPLE_LEA_JED, Text_187097, Text_1870CC, Text_187120
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB0D0
	msgbox Text_1870F9, MSGBOX_AUTOCLOSE
	end

EventScript_1AB0D0:: @ 81AB0D0
	trainerbattle_rematch_double TRAINER_YOUNG_COUPLE_LEA_JED, Text_1C2A53, Text_1870CC, Text_187120
	msgbox Text_1870F9, MSGBOX_AUTOCLOSE
	end

Route17_EventScript_1AB0EB:: @ 81AB0EB
	trainerbattle_single TRAINER_BIKER_BILLY, Text_1872BD, Text_1872E3
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB112
	msgbox Text_1872EB, MSGBOX_AUTOCLOSE
	end

EventScript_1AB112:: @ 81AB112
	trainerbattle_rematch TRAINER_BIKER_BILLY, Text_1C2B06, Text_1872E3
	msgbox Text_1872EB, MSGBOX_AUTOCLOSE
	end

Route17_EventScript_1AB129:: @ 81AB129
	trainerbattle_single TRAINER_BIKER_NIKOLAS, Text_18730A, Text_187325
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB150
	msgbox Text_187333, MSGBOX_AUTOCLOSE
	end

EventScript_1AB150:: @ 81AB150
	trainerbattle_rematch TRAINER_BIKER_NIKOLAS, Text_1C2B2C, Text_187325
	msgbox Text_187333, MSGBOX_AUTOCLOSE
	end

Route17_EventScript_1AB167:: @ 81AB167
	trainerbattle_single TRAINER_BIKER_JAXON, Text_187456, Text_187472
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB18E
	msgbox Text_187479, MSGBOX_AUTOCLOSE
	end

EventScript_1AB18E:: @ 81AB18E
	trainerbattle_rematch TRAINER_BIKER_JAXON, Text_1C2BE6, Text_187472
	msgbox Text_187479, MSGBOX_AUTOCLOSE
	end

Route17_EventScript_1AB1A5:: @ 81AB1A5
	trainerbattle_single TRAINER_BIKER_WILLIAM, Text_18749B, Text_1874B6
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB1CC
	msgbox Text_1874C9, MSGBOX_AUTOCLOSE
	end

EventScript_1AB1CC:: @ 81AB1CC
	trainerbattle_rematch TRAINER_BIKER_WILLIAM, Text_1C2C10, Text_1874B6
	msgbox Text_1874C9, MSGBOX_AUTOCLOSE
	end

Route17_EventScript_1AB1E3:: @ 81AB1E3
	trainerbattle_single TRAINER_CUE_BALL_RAUL, Text_18717E, Text_1871AE
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB20A
	msgbox Text_1871BA, MSGBOX_AUTOCLOSE
	end

EventScript_1AB20A:: @ 81AB20A
	trainerbattle_rematch TRAINER_CUE_BALL_RAUL, Text_1C2A88, Text_1871AE
	msgbox Text_1871BA, MSGBOX_AUTOCLOSE
	end

Route17_EventScript_1AB221:: @ 81AB221
	trainerbattle_single TRAINER_CUE_BALL_ISAIAH, Text_187228, Text_187254
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB248
	msgbox Text_18725A, MSGBOX_AUTOCLOSE
	end

EventScript_1AB248:: @ 81AB248
	trainerbattle_rematch TRAINER_CUE_BALL_ISAIAH, Text_1C2AC4, Text_187254
	msgbox Text_18725A, MSGBOX_AUTOCLOSE
	end

Route17_EventScript_1AB25F:: @ 81AB25F
	trainerbattle_single TRAINER_CUE_BALL_ZEEK, Text_187362, Text_187395
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB286
	msgbox Text_18739F, MSGBOX_AUTOCLOSE
	end

EventScript_1AB286:: @ 81AB286
	trainerbattle_rematch TRAINER_CUE_BALL_ZEEK, Text_1C2B5E, Text_187395
	msgbox Text_18739F, MSGBOX_AUTOCLOSE
	end

Route17_EventScript_1AB29D:: @ 81AB29D
	trainerbattle_single TRAINER_CUE_BALL_JAMAL, Text_1873D1, Text_1873EB
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB2C4
	msgbox Text_1873FF, MSGBOX_AUTOCLOSE
	end

EventScript_1AB2C4:: @ 81AB2C4
	trainerbattle_rematch TRAINER_CUE_BALL_JAMAL, Text_1C2B9C, Text_1873EB
	msgbox Text_1873FF, MSGBOX_AUTOCLOSE
	end

Route17_EventScript_1AB2DB:: @ 81AB2DB
	trainerbattle_single TRAINER_CUE_BALL_COREY, Text_18741D, Text_187429
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB302
	msgbox Text_187432, MSGBOX_AUTOCLOSE
	end

EventScript_1AB302:: @ 81AB302
	trainerbattle_rematch TRAINER_CUE_BALL_COREY, Text_1C2BDA, Text_187429
	msgbox Text_187432, MSGBOX_AUTOCLOSE
	end

Route17_EventScript_1AB319:: @ 81AB319
	trainerbattle_single TRAINER_BIKER_VIRGIL, Text_18727D, Text_187295
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB340
	msgbox Text_1872A5, MSGBOX_AUTOCLOSE
	end

EventScript_1AB340:: @ 81AB340
	trainerbattle_rematch TRAINER_BIKER_VIRGIL, Text_1C2AF0, Text_187295
	msgbox Text_1872A5, MSGBOX_AUTOCLOSE
	end

Route18_EventScript_1AB357:: @ 81AB357
	trainerbattle_single TRAINER_BIRD_KEEPER_WILTON, Text_187640, Text_187672
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB37E
	msgbox Text_187677, MSGBOX_AUTOCLOSE
	end

EventScript_1AB37E:: @ 81AB37E
	trainerbattle_rematch TRAINER_BIRD_KEEPER_WILTON, Text_1C2C2B, Text_187672
	msgbox Text_187677, MSGBOX_AUTOCLOSE
	end

Route18_EventScript_1AB395:: @ 81AB395
	trainerbattle_single TRAINER_BIRD_KEEPER_RAMIRO, Text_18768C, Text_1876B3
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB3BC
	msgbox Text_1876C5, MSGBOX_AUTOCLOSE
	end

EventScript_1AB3BC:: @ 81AB3BC
	trainerbattle_rematch TRAINER_BIRD_KEEPER_RAMIRO, Text_1C2C7B, Text_1876B3
	msgbox Text_1876C5, MSGBOX_AUTOCLOSE
	end

Route18_EventScript_1AB3D3:: @ 81AB3D3
	trainerbattle_single TRAINER_BIRD_KEEPER_JACOB, Text_187704, Text_187726
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB3FA
	msgbox Text_18772C, MSGBOX_AUTOCLOSE
	end

EventScript_1AB3FA:: @ 81AB3FA
	trainerbattle_rematch TRAINER_BIRD_KEEPER_JACOB, Text_1C2CA8, Text_187726
	msgbox Text_18772C, MSGBOX_AUTOCLOSE
	end

Route19_EventScript_1AB411:: @ 81AB411
	trainerbattle_single TRAINER_SWIMMER_MALE_RICHARD, Text_1877A3, Text_1877DF
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB438
	msgbox Text_1877EE, MSGBOX_AUTOCLOSE
	end

EventScript_1AB438:: @ 81AB438
	trainerbattle_rematch TRAINER_SWIMMER_MALE_RICHARD, Text_1C2CEE, Text_1877DF
	msgbox Text_1877EE, MSGBOX_AUTOCLOSE
	end

Route19_EventScript_1AB44F:: @ 81AB44F
	trainerbattle_single TRAINER_SWIMMER_MALE_REECE, Text_187811, Text_18783E
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB476
	msgbox Text_187852, MSGBOX_AUTOCLOSE
	end

EventScript_1AB476:: @ 81AB476
	trainerbattle_rematch TRAINER_SWIMMER_MALE_REECE, Text_1C2D19, Text_18783E
	msgbox Text_187852, MSGBOX_AUTOCLOSE
	end

Route19_EventScript_1AB48D:: @ 81AB48D
	trainerbattle_single TRAINER_SWIMMER_MALE_MATTHEW, Text_187884, Text_1878A5
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB4B4
	msgbox Text_1878B1, MSGBOX_AUTOCLOSE
	end

EventScript_1AB4B4:: @ 81AB4B4
	trainerbattle_rematch TRAINER_SWIMMER_MALE_MATTHEW, Text_1C2D4B, Text_1878A5
	msgbox Text_1878B1, MSGBOX_AUTOCLOSE
	end

Route19_EventScript_1AB4CB:: @ 81AB4CB
	trainerbattle_single TRAINER_SWIMMER_MALE_DOUGLAS, Text_1878DD, Text_1878F8
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB4F2
	msgbox Text_1878FE, MSGBOX_AUTOCLOSE
	end

EventScript_1AB4F2:: @ 81AB4F2
	trainerbattle_rematch TRAINER_SWIMMER_MALE_DOUGLAS, Text_1C2D7D, Text_1878F8
	msgbox Text_1878FE, MSGBOX_AUTOCLOSE
	end

Route19_EventScript_1AB509:: @ 81AB509
	trainerbattle_single TRAINER_SWIMMER_MALE_DAVID, Text_187925, Text_187955
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB530
	msgbox Text_18795B, MSGBOX_AUTOCLOSE
	end

EventScript_1AB530:: @ 81AB530
	trainerbattle_rematch TRAINER_SWIMMER_MALE_DAVID, Text_1C2DA7, Text_187955
	msgbox Text_18795B, MSGBOX_AUTOCLOSE
	end

Route19_EventScript_1AB547:: @ 81AB547
	trainerbattle_single TRAINER_SWIMMER_MALE_TONY, Text_187985, Text_1879C3
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB56E
	msgbox Text_1879D3, MSGBOX_AUTOCLOSE
	end

EventScript_1AB56E:: @ 81AB56E
	trainerbattle_rematch TRAINER_SWIMMER_MALE_TONY, Text_1C2DE9, Text_1879C3
	msgbox Text_1879D3, MSGBOX_AUTOCLOSE
	end

Route19_EventScript_1AB585:: @ 81AB585
	trainerbattle_single TRAINER_SWIMMER_MALE_AXLE, Text_187AFA, Text_187B25
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB5AC
	msgbox Text_187B35, MSGBOX_AUTOCLOSE
	end

EventScript_1AB5AC:: @ 81AB5AC
	trainerbattle_rematch TRAINER_SWIMMER_MALE_AXLE, Text_1C2EC0, Text_187B25
	msgbox Text_187B35, MSGBOX_AUTOCLOSE
	end

Route19_EventScript_1AB5C3:: @ 81AB5C3
	trainerbattle_single TRAINER_SWIMMER_FEMALE_ANYA, Text_187A11, Text_187A44
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB5EA
	msgbox Text_187A50, MSGBOX_AUTOCLOSE
	end

EventScript_1AB5EA:: @ 81AB5EA
	trainerbattle_rematch TRAINER_SWIMMER_FEMALE_ANYA, Text_1C2E4A, Text_187A44
	msgbox Text_187A50, MSGBOX_AUTOCLOSE
	end

Route19_EventScript_1AB601:: @ 81AB601
	trainerbattle_single TRAINER_SWIMMER_FEMALE_ALICE, Text_187A9E, Text_187AC1
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB628
	msgbox Text_187ACA, MSGBOX_AUTOCLOSE
	end

EventScript_1AB628:: @ 81AB628
	trainerbattle_rematch TRAINER_SWIMMER_FEMALE_ALICE, Text_1C2E9D, Text_187AC1
	msgbox Text_187ACA, MSGBOX_AUTOCLOSE
	end

Route19_EventScript_1AB63F:: @ 81AB63F
	trainerbattle_single TRAINER_SWIMMER_FEMALE_CONNIE, Text_187B5D, Text_187B85
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB666
	msgbox Text_187B94, MSGBOX_AUTOCLOSE
	end

EventScript_1AB666:: @ 81AB666
	trainerbattle_rematch TRAINER_SWIMMER_FEMALE_CONNIE, Text_1C2EFC, Text_187B85
	msgbox Text_187B94, MSGBOX_AUTOCLOSE
	end

Route19_EventScript_1AB67D:: @ 81AB67D
	trainerbattle_double TRAINER_SIS_AND_BRO_LIA_LUC, Text_187C32, Text_187C6F, Text_187CF2
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB6A8
	msgbox Text_187C9E, MSGBOX_AUTOCLOSE
	end

EventScript_1AB6A8:: @ 81AB6A8
	trainerbattle_rematch_double TRAINER_SIS_AND_BRO_LIA_LUC, Text_1C2F41, Text_187C6F, Text_187CF2
	msgbox Text_187C9E, MSGBOX_AUTOCLOSE
	end

Route19_EventScript_1AB6C3:: @ 81AB6C3
	trainerbattle_double TRAINER_SIS_AND_BRO_LIA_LUC, Text_187D45, Text_187D7E, Text_187DE8
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB6EE
	msgbox Text_187DAD, MSGBOX_AUTOCLOSE
	end

EventScript_1AB6EE:: @ 81AB6EE
	trainerbattle_rematch_double TRAINER_SIS_AND_BRO_LIA_LUC, Text_1C2FAE, Text_187D7E, Text_187DE8
	msgbox Text_187DAD, MSGBOX_AUTOCLOSE
	end

Route20_EventScript_1AB709:: @ 81AB709
	trainerbattle_single TRAINER_SWIMMER_MALE_BARRY, Text_187E40, Text_187E7B
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB730
	msgbox Text_187E83, MSGBOX_AUTOCLOSE
	end

EventScript_1AB730:: @ 81AB730
	trainerbattle_rematch TRAINER_SWIMMER_MALE_BARRY, Text_1C2FF3, Text_187E7B
	msgbox Text_187E83, MSGBOX_AUTOCLOSE
	end

Route20_EventScript_1AB747:: @ 81AB747
	trainerbattle_single TRAINER_SWIMMER_MALE_DEAN, Text_187FDB, Text_187FF7
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB76E
	msgbox Text_187FFE, MSGBOX_AUTOCLOSE
	end

EventScript_1AB76E:: @ 81AB76E
	trainerbattle_rematch TRAINER_SWIMMER_MALE_DEAN, Text_1C30B0, Text_187FF7
	msgbox Text_187FFE, MSGBOX_AUTOCLOSE
	end

Route20_EventScript_1AB785:: @ 81AB785
	trainerbattle_single TRAINER_SWIMMER_MALE_DARRIN, Text_18802E, Text_18805C
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB7AC
	msgbox Text_18806D, MSGBOX_AUTOCLOSE
	end

EventScript_1AB7AC:: @ 81AB7AC
	trainerbattle_rematch TRAINER_SWIMMER_MALE_DARRIN, Text_1C30ED, Text_18805C
	msgbox Text_18806D, MSGBOX_AUTOCLOSE
	end

Route20_EventScript_1AB7C3:: @ 81AB7C3
	trainerbattle_single TRAINER_SWIMMER_FEMALE_TIFFANY, Text_187F24, Text_187F5A
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB7EA
	msgbox Text_187F61, MSGBOX_AUTOCLOSE
	end

EventScript_1AB7EA:: @ 81AB7EA
	trainerbattle_rematch TRAINER_SWIMMER_FEMALE_TIFFANY, Text_1C305F, Text_187F5A
	msgbox Text_187F61, MSGBOX_AUTOCLOSE
	end

Route20_EventScript_1AB801:: @ 81AB801
	trainerbattle_single TRAINER_SWIMMER_FEMALE_NORA, Text_1880F8, Text_188119
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB828
	msgbox Text_188139, MSGBOX_AUTOCLOSE
	end

EventScript_1AB828:: @ 81AB828
	trainerbattle_rematch TRAINER_SWIMMER_FEMALE_NORA, Text_1C3149, Text_188119
	msgbox Text_188139, MSGBOX_AUTOCLOSE
	end

Route20_EventScript_1AB83F:: @ 81AB83F
	trainerbattle_single TRAINER_SWIMMER_FEMALE_MELISSA, Text_188218, Text_18825C
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB866
	msgbox Text_18827B, MSGBOX_AUTOCLOSE
	end

EventScript_1AB866:: @ 81AB866
	trainerbattle_rematch TRAINER_SWIMMER_FEMALE_MELISSA, Text_1C31C4, Text_18825C
	msgbox Text_18827B, MSGBOX_AUTOCLOSE
	end

Route20_EventScript_1AB87D:: @ 81AB87D
	trainerbattle_single TRAINER_SWIMMER_FEMALE_SHIRLEY, Text_187EBB, Text_187EED
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB8A4
	msgbox Text_187EF6, MSGBOX_AUTOCLOSE
	end

EventScript_1AB8A4:: @ 81AB8A4
	trainerbattle_rematch TRAINER_SWIMMER_FEMALE_SHIRLEY, Text_1C302E, Text_187EED
	msgbox Text_187EF6, MSGBOX_AUTOCLOSE
	end

Route20_EventScript_1AB8BB:: @ 81AB8BB
	trainerbattle_single TRAINER_BIRD_KEEPER_ROGER, Text_18808E, Text_1880AB
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB8E2
	msgbox Text_1880C8, MSGBOX_AUTOCLOSE
	end

EventScript_1AB8E2:: @ 81AB8E2
	trainerbattle_rematch TRAINER_BIRD_KEEPER_ROGER, Text_1C312C, Text_1880AB
	msgbox Text_1880C8, MSGBOX_AUTOCLOSE
	end

Route20_EventScript_1AB8F9:: @ 81AB8F9
	trainerbattle_single TRAINER_PICNICKER_MISSY, Text_188165, Text_1881A3
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB920
	msgbox Text_1881B8, MSGBOX_AUTOCLOSE
	end

EventScript_1AB920:: @ 81AB920
	trainerbattle_rematch TRAINER_PICNICKER_MISSY, Text_1C3185, Text_1881A3
	msgbox Text_1881B8, MSGBOX_AUTOCLOSE
	end

Route20_EventScript_1AB937:: @ 81AB937
	trainerbattle_single TRAINER_PICNICKER_IRENE, Text_187F78, Text_187F92
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB95E
	msgbox Text_187FA3, MSGBOX_AUTOCLOSE
	end

EventScript_1AB95E:: @ 81AB95E
	trainerbattle_rematch TRAINER_PICNICKER_IRENE, Text_1C3095, Text_187F92
	msgbox Text_187FA3, MSGBOX_AUTOCLOSE
	end

Route21_North_EventScript_1AB975:: @ 81AB975
	trainerbattle_single TRAINER_FISHERMAN_RONALD, Text_18835A, Text_188383
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB99C
	msgbox Text_188389, MSGBOX_AUTOCLOSE
	end

EventScript_1AB99C:: @ 81AB99C
	trainerbattle_rematch TRAINER_FISHERMAN_RONALD, Text_1C3208, Text_188383
	msgbox Text_188389, MSGBOX_AUTOCLOSE
	end

Route21_South_EventScript_1AB9B3:: @ 81AB9B3
	trainerbattle_single TRAINER_FISHERMAN_CLAUDE, Text_1885D8, Text_1885F8
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AB9DA
	msgbox Text_188632, MSGBOX_AUTOCLOSE
	end

EventScript_1AB9DA:: @ 81AB9DA
	trainerbattle_rematch TRAINER_FISHERMAN_CLAUDE, Text_1C331D, Text_1885F8
	msgbox Text_188632, MSGBOX_AUTOCLOSE
	end

Route21_North_EventScript_1AB9F1:: @ 81AB9F1
	trainerbattle_single TRAINER_FISHERMAN_WADE, Text_1883C6, Text_1883E9
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ABA18
	msgbox Text_18841D, MSGBOX_AUTOCLOSE
	end

EventScript_1ABA18:: @ 81ABA18
	trainerbattle_rematch TRAINER_FISHERMAN_WADE, Text_1C3231, Text_1883E9
	msgbox Text_18841D, MSGBOX_AUTOCLOSE
	end

Route21_South_EventScript_1ABA2F:: @ 81ABA2F
	trainerbattle_single TRAINER_FISHERMAN_NOLAN, Text_18868C, Text_1886AE
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ABA56
	msgbox Text_1886C5, MSGBOX_AUTOCLOSE
	end

EventScript_1ABA56:: @ 81ABA56
	trainerbattle_rematch TRAINER_FISHERMAN_NOLAN, Text_1C3356, Text_1886AE
	msgbox Text_1886C5, MSGBOX_AUTOCLOSE
	end

Route21_North_EventScript_1ABA6D:: @ 81ABA6D
	trainerbattle_single TRAINER_SWIMMER_MALE_SPENCER, Text_18843C, Text_18845F
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ABA94
	msgbox Text_188465, MSGBOX_AUTOCLOSE
	end

EventScript_1ABA94:: @ 81ABA94
	trainerbattle_rematch TRAINER_SWIMMER_MALE_SPENCER, Text_1C3264, Text_18845F
	msgbox Text_188465, MSGBOX_AUTOCLOSE
	end

Route21_South_EventScript_1ABAAB:: @ 81ABAAB
	trainerbattle_single TRAINER_SWIMMER_MALE_JACK, Text_1884D4, Text_1884F0
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ABAD2
	msgbox Text_1884FF, MSGBOX_AUTOCLOSE
	end

EventScript_1ABAD2:: @ 81ABAD2
	trainerbattle_rematch TRAINER_SWIMMER_MALE_JACK, Text_1C3298, Text_1884F0
	msgbox Text_1884FF, MSGBOX_AUTOCLOSE
	end

Route21_South_EventScript_1ABAE9:: @ 81ABAE9
	trainerbattle_single TRAINER_SWIMMER_MALE_JEROME, Text_18851F, Text_188543
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ABB10
	msgbox Text_188555, MSGBOX_AUTOCLOSE
	end

EventScript_1ABB10:: @ 81ABB10
	trainerbattle_rematch TRAINER_SWIMMER_MALE_JEROME, Text_1C32D3, Text_188543
	msgbox Text_188555, MSGBOX_AUTOCLOSE
	end

Route21_South_EventScript_1ABB27:: @ 81ABB27
	trainerbattle_single TRAINER_SWIMMER_MALE_ROLAND, Text_188592, Text_1885B2
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ABB4E
	msgbox Text_1885BF, MSGBOX_AUTOCLOSE
	end

EventScript_1ABB4E:: @ 81ABB4E
	trainerbattle_rematch TRAINER_SWIMMER_MALE_ROLAND, Text_1C32FD, Text_1885B2
	msgbox Text_1885BF, MSGBOX_AUTOCLOSE
	end

Route21_North_EventScript_1ABB65:: @ 81ABB65
	trainerbattle_double TRAINER_SIS_AND_BRO_LIL_IAN, Text_1886E2, Text_188712, Text_18875E
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ABB90
	msgbox Text_188734, MSGBOX_AUTOCLOSE
	end

EventScript_1ABB90:: @ 81ABB90
	trainerbattle_rematch_double TRAINER_SIS_AND_BRO_LIL_IAN, Text_1C3378, Text_188712, Text_18875E
	msgbox Text_188734, MSGBOX_AUTOCLOSE
	end

Route21_North_EventScript_1ABBAB:: @ 81ABBAB
	trainerbattle_double TRAINER_SIS_AND_BRO_LIL_IAN, Text_1887B4, Text_1887F1, Text_188850
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ABBD6
	msgbox Text_188812, MSGBOX_AUTOCLOSE
	end

EventScript_1ABBD6:: @ 81ABBD6
	trainerbattle_rematch_double TRAINER_SIS_AND_BRO_LIL_IAN, Text_1C33AE, Text_1887F1, Text_188850
	msgbox Text_188812, MSGBOX_AUTOCLOSE
	end

OneIsland_KindleRoad_EventScript_1ABBF1:: @ 81ABBF1
	trainerbattle_single TRAINER_SWIMMER_FEMALE_MARIA, Text_18961F, Text_18964D
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ABC18
	msgbox Text_189657, MSGBOX_AUTOCLOSE
	end

EventScript_1ABC18:: @ 81ABC18
	trainerbattle_rematch TRAINER_SWIMMER_FEMALE_MARIA, Text_1C37B5, Text_18964D
	msgbox Text_189657, MSGBOX_AUTOCLOSE
	end

OneIsland_KindleRoad_EventScript_1ABC2F:: @ 81ABC2F
	trainerbattle_single TRAINER_SWIMMER_FEMALE_ABIGAIL, Text_18968C, Text_1896AC
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ABC56
	msgbox Text_1896C1, MSGBOX_AUTOCLOSE
	end

EventScript_1ABC56:: @ 81ABC56
	trainerbattle_rematch TRAINER_SWIMMER_FEMALE_ABIGAIL, Text_1C37E7, Text_1896AC
	msgbox Text_1896C1, MSGBOX_AUTOCLOSE
	end

OneIsland_KindleRoad_EventScript_1ABC6D:: @ 81ABC6D
	trainerbattle_single TRAINER_SWIMMER_MALE_FINN, Text_1896F9, Text_189728
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ABC94
	msgbox Text_189740, MSGBOX_AUTOCLOSE
	end

EventScript_1ABC94:: @ 81ABC94
	trainerbattle_rematch TRAINER_SWIMMER_MALE_FINN, Text_1C3807, Text_189728
	msgbox Text_189740, MSGBOX_AUTOCLOSE
	end

OneIsland_KindleRoad_EventScript_1ABCAB:: @ 81ABCAB
	trainerbattle_single TRAINER_SWIMMER_MALE_GARRETT, Text_189767, Text_1897A4
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ABCD2
	msgbox Text_1897C5, MSGBOX_AUTOCLOSE
	end

EventScript_1ABCD2:: @ 81ABCD2
	trainerbattle_rematch TRAINER_SWIMMER_MALE_GARRETT, Text_1C3835, Text_1897A4
	msgbox Text_1897C5, MSGBOX_AUTOCLOSE
	end

OneIsland_KindleRoad_EventScript_1ABCE9:: @ 81ABCE9
	trainerbattle_single TRAINER_FISHERMAN_TOMMY, Text_1897FF, Text_189833
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ABD10
	msgbox Text_18984B, MSGBOX_AUTOCLOSE
	end

EventScript_1ABD10:: @ 81ABD10
	trainerbattle_rematch TRAINER_FISHERMAN_TOMMY, Text_1C386A, Text_189833
	msgbox Text_18984B, MSGBOX_AUTOCLOSE
	end

OneIsland_KindleRoad_EventScript_1ABD27:: @ 81ABD27
	trainerbattle_single TRAINER_CRUSH_GIRL_SHARON, Text_189883, Text_1898AB
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ABD4E
	msgbox Text_1898C4, MSGBOX_AUTOCLOSE
	end

EventScript_1ABD4E:: @ 81ABD4E
	trainerbattle_rematch TRAINER_CRUSH_GIRL_SHARON, Text_1C389F, Text_1898AB
	msgbox Text_1898C4, MSGBOX_AUTOCLOSE
	end

OneIsland_KindleRoad_EventScript_1ABD65:: @ 81ABD65
	trainerbattle_single TRAINER_CRUSH_GIRL_TANYA, Text_1898F0, Text_18991B
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ABD8C
	msgbox Text_18992C, MSGBOX_AUTOCLOSE
	end

EventScript_1ABD8C:: @ 81ABD8C
	trainerbattle_rematch TRAINER_CRUSH_GIRL_TANYA, Text_1C38CA, Text_18991B
	msgbox Text_18992C, MSGBOX_AUTOCLOSE
	end

OneIsland_KindleRoad_EventScript_1ABDA3:: @ 81ABDA3
	trainerbattle_single TRAINER_BLACK_BELT_SHEA, Text_189950, Text_18998C
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ABDCA
	msgbox Text_189998, MSGBOX_AUTOCLOSE
	end

EventScript_1ABDCA:: @ 81ABDCA
	trainerbattle_rematch TRAINER_BLACK_BELT_SHEA, Text_1C38FA, Text_18998C
	msgbox Text_189998, MSGBOX_AUTOCLOSE
	end

OneIsland_KindleRoad_EventScript_1ABDE1:: @ 81ABDE1
	trainerbattle_single TRAINER_BLACK_BELT_HUGH, Text_1899CE, Text_189A0A
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ABE08
	msgbox Text_189A13, MSGBOX_AUTOCLOSE
	end

EventScript_1ABE08:: @ 81ABE08
	trainerbattle_rematch TRAINER_BLACK_BELT_HUGH, Text_1C3943, Text_189A0A
	msgbox Text_189A13, MSGBOX_AUTOCLOSE
	end

OneIsland_KindleRoad_EventScript_1ABE1F:: @ 81ABE1F
	trainerbattle_single TRAINER_CAMPER_BRYCE, Text_189A53, Text_189A92
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ABE46
	msgbox Text_189A9F, MSGBOX_AUTOCLOSE
	end

EventScript_1ABE46:: @ 81ABE46
	trainerbattle_rematch TRAINER_CAMPER_BRYCE, Text_1C3987, Text_189A92
	msgbox Text_189A9F, MSGBOX_AUTOCLOSE
	end

OneIsland_KindleRoad_EventScript_1ABE5D:: @ 81ABE5D
	trainerbattle_single TRAINER_PICNICKER_CLAIRE, Text_189ACB, Text_189B0B
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ABE84
	msgbox Text_189B24, MSGBOX_AUTOCLOSE
	end

EventScript_1ABE84:: @ 81ABE84
	trainerbattle_rematch TRAINER_PICNICKER_CLAIRE, Text_1C39C6, Text_189B0B
	msgbox Text_189B24, MSGBOX_AUTOCLOSE
	end

OneIsland_KindleRoad_EventScript_1ABE9B:: @ 81ABE9B
	trainerbattle_double TRAINER_CRUSH_KIN_MIK_KIA, Text_189B4D, Text_189B84, Text_189BDE
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ABEC6
	msgbox Text_189BA3, MSGBOX_AUTOCLOSE
	end

EventScript_1ABEC6:: @ 81ABEC6
	trainerbattle_rematch_double TRAINER_CRUSH_KIN_MIK_KIA, Text_1C3A05, Text_189B84, Text_189BDE
	msgbox Text_189BA3, MSGBOX_AUTOCLOSE
	end

OneIsland_KindleRoad_EventScript_1ABEE1:: @ 81ABEE1
	trainerbattle_double TRAINER_CRUSH_KIN_MIK_KIA, Text_189C33, Text_189C62, Text_189CAB
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ABF0C
	msgbox Text_189C7E, MSGBOX_AUTOCLOSE
	end

EventScript_1ABF0C:: @ 81ABF0C
	trainerbattle_rematch_double TRAINER_CRUSH_KIN_MIK_KIA, Text_1C3A55, Text_189C62, Text_189CAB
	msgbox Text_189C7E, MSGBOX_AUTOCLOSE
	end

OneIsland_TreasureBeach_EventScript_1ABF27:: @ 81ABF27
	trainerbattle_single TRAINER_SWIMMER_FEMALE_AMARA, Text_189D5A, Text_189D8B
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ABF4E
	msgbox Text_189DA3, MSGBOX_AUTOCLOSE
	end

EventScript_1ABF4E:: @ 81ABF4E
	trainerbattle_rematch TRAINER_SWIMMER_FEMALE_AMARA, Text_1C3773, Text_189D8B
	msgbox Text_189DA3, MSGBOX_AUTOCLOSE
	end

ThreeIsland_BondBridge_EventScript_1ABF65:: @ 81ABF65
	trainerbattle_single TRAINER_AROMA_LADY_NIKKI, Text_189E42, Text_189E72
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ABF8C
	msgbox Text_189E9E, MSGBOX_AUTOCLOSE
	end

EventScript_1ABF8C:: @ 81ABF8C
	trainerbattle_rematch TRAINER_AROMA_LADY_NIKKI, Text_1C3AA7, Text_189E72
	msgbox Text_189E9E, MSGBOX_AUTOCLOSE
	end

ThreeIsland_BondBridge_EventScript_1ABFA3:: @ 81ABFA3
	trainerbattle_single TRAINER_AROMA_LADY_VIOLET, Text_189ED4, Text_189EFA
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ABFCA
	msgbox Text_189F21, MSGBOX_AUTOCLOSE
	end

EventScript_1ABFCA:: @ 81ABFCA
	trainerbattle_rematch TRAINER_AROMA_LADY_VIOLET, Text_1C3ABF, Text_189EFA
	msgbox Text_189F21, MSGBOX_AUTOCLOSE
	end

ThreeIsland_BondBridge_EventScript_1ABFE1:: @ 81ABFE1
	trainerbattle_single TRAINER_TUBER_AMIRA, Text_189F63, Text_189F9A
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC008
	msgbox Text_189FA8, MSGBOX_AUTOCLOSE
	end

EventScript_1AC008:: @ 81AC008
	trainerbattle_rematch TRAINER_TUBER_AMIRA, Text_1C3AF2, Text_189F9A
	msgbox Text_189FA8, MSGBOX_AUTOCLOSE
	end

ThreeIsland_BondBridge_EventScript_1AC01F:: @ 81AC01F
	trainerbattle_single TRAINER_TUBER_ALEXIS, Text_189FDB, Text_189FEE
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC046
	msgbox Text_18A000, MSGBOX_AUTOCLOSE
	end

EventScript_1AC046:: @ 81AC046
	trainerbattle_rematch TRAINER_TUBER_ALEXIS, Text_1C3B1D, Text_189FEE
	msgbox Text_18A000, MSGBOX_AUTOCLOSE
	end

ThreeIsland_BondBridge_EventScript_1AC05D:: @ 81AC05D
	trainerbattle_single TRAINER_SWIMMER_FEMALE_TISHA, Text_18A01F, Text_18A053
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC084
	msgbox Text_18A082, MSGBOX_AUTOCLOSE
	end

EventScript_1AC084:: @ 81AC084
	trainerbattle_rematch TRAINER_SWIMMER_FEMALE_TISHA, Text_1C3B30, Text_18A053
	msgbox Text_18A082, MSGBOX_AUTOCLOSE
	end

ThreeIsland_BondBridge_EventScript_1AC09B:: @ 81AC09B
	trainerbattle_double TRAINER_TWINS_JOY_MEG, Text_18A0C4, Text_18A0F7, Text_18A138
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC0C6
	msgbox Text_18A106, MSGBOX_AUTOCLOSE
	end

EventScript_1AC0C6:: @ 81AC0C6
	trainerbattle_rematch_double TRAINER_TWINS_JOY_MEG, Text_1C3B6E, Text_18A0F7, Text_18A138
	msgbox Text_18A106, MSGBOX_AUTOCLOSE
	end

ThreeIsland_BondBridge_EventScript_1AC0E1:: @ 81AC0E1
	trainerbattle_double TRAINER_TWINS_JOY_MEG, Text_18A179, Text_18A1A3, Text_18A1CD
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC10C
	msgbox Text_18A1B2, MSGBOX_AUTOCLOSE
	end

EventScript_1AC10C:: @ 81AC10C
	trainerbattle_rematch_double TRAINER_TWINS_JOY_MEG, Text_1C3B99, Text_18A1A3, Text_18A1CD
	msgbox Text_18A1B2, MSGBOX_AUTOCLOSE
	end

FiveIsland_ResortGorgeous_EventScript_1AC127:: @ 81AC127
	trainerbattle_single TRAINER_PAINTER_DAISY, Text_18A3E2, Text_18A40E
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC14E
	msgbox Text_18A430, MSGBOX_AUTOCLOSE
	end

EventScript_1AC14E:: @ 81AC14E
	trainerbattle_rematch TRAINER_PAINTER_DAISY, Text_1C3BF6, Text_18A40E
	msgbox Text_18A430, MSGBOX_AUTOCLOSE
	end

FiveIsland_ResortGorgeous_EventScript_1AC165:: @ 81AC165
	trainerbattle_single TRAINER_PAINTER_CELINA, Text_18A461, Text_18A49E
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC18C
	msgbox Text_18A4C6, MSGBOX_AUTOCLOSE
	end

EventScript_1AC18C:: @ 81AC18C
	trainerbattle_rematch TRAINER_PAINTER_CELINA, Text_1C3C28, Text_18A49E
	msgbox Text_18A4C6, MSGBOX_AUTOCLOSE
	end

FiveIsland_ResortGorgeous_EventScript_1AC1A3:: @ 81AC1A3
	trainerbattle_single TRAINER_PAINTER_RAYNA, Text_18A50E, Text_18A535
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC1CA
	msgbox Text_18A555, MSGBOX_AUTOCLOSE
	end

EventScript_1AC1CA:: @ 81AC1CA
	trainerbattle_rematch TRAINER_PAINTER_RAYNA, Text_1C3C70, Text_18A535
	msgbox Text_18A555, MSGBOX_AUTOCLOSE
	end

FiveIsland_ResortGorgeous_EventScript_1AC1E1:: @ 81AC1E1
	trainerbattle_single TRAINER_LADY_JACKI, Text_18A5B9, Text_18A5EE
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC208
	msgbox Text_18A601, MSGBOX_AUTOCLOSE
	end

EventScript_1AC208:: @ 81AC208
	trainerbattle_rematch TRAINER_LADY_JACKI, Text_1C3CB0, Text_18A5EE
	msgbox Text_18A601, MSGBOX_AUTOCLOSE
	end

FiveIsland_ResortGorgeous_EventScript_1AC21F:: @ 81AC21F
	trainerbattle_single TRAINER_LADY_GILLIAN, Text_18A645, Text_18A67F
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC246
	msgbox Text_18A699, MSGBOX_AUTOCLOSE
	end

EventScript_1AC246:: @ 81AC246
	trainerbattle_rematch TRAINER_LADY_GILLIAN, Text_1C3CF1, Text_18A67F
	msgbox Text_18A699, MSGBOX_AUTOCLOSE
	end

FiveIsland_ResortGorgeous_EventScript_1AC25D:: @ 81AC25D
	trainerbattle_single TRAINER_YOUNGSTER_DESTIN, Text_18A6DA, Text_18A6FE
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC284
	msgbox Text_18A715, MSGBOX_AUTOCLOSE
	end

EventScript_1AC284:: @ 81AC284
	trainerbattle_rematch TRAINER_YOUNGSTER_DESTIN, Text_1C3D47, Text_18A6FE
	msgbox Text_18A715, MSGBOX_AUTOCLOSE
	end

FiveIsland_ResortGorgeous_EventScript_1AC29B:: @ 81AC29B
	trainerbattle_single TRAINER_SWIMMER_MALE_TOBY, Text_18A74A, Text_18A786
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC2C2
	msgbox Text_18A7AC, MSGBOX_AUTOCLOSE
	end

EventScript_1AC2C2:: @ 81AC2C2
	trainerbattle_rematch TRAINER_SWIMMER_MALE_TOBY, Text_1C3D73, Text_18A786
	msgbox Text_18A7AC, MSGBOX_AUTOCLOSE
	end

FiveIsland_WaterLabyrinth_EventScript_1AC2D9:: @ 81AC2D9
	trainerbattle_single TRAINER_PKMN_BREEDER_ALIZE, Text_18AAD5, Text_18AB0B
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC300
	msgbox Text_18AB37, MSGBOX_AUTOCLOSE
	end

EventScript_1AC300:: @ 81AC300
	trainerbattle_rematch TRAINER_PKMN_BREEDER_ALIZE, Text_1C3BB7, Text_18AB0B
	msgbox Text_18AB37, MSGBOX_AUTOCLOSE
	end

FiveIsland_MemorialPillar_EventScript_1AC317:: @ 81AC317
	trainerbattle_single TRAINER_BIRD_KEEPER_MILO, Text_18AE50, Text_18AEA8
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC33E
	msgbox Text_18AEB6, MSGBOX_AUTOCLOSE
	end

EventScript_1AC33E:: @ 81AC33E
	trainerbattle_rematch TRAINER_BIRD_KEEPER_MILO, Text_1C3DA2, Text_18AEA8
	msgbox Text_18AEB6, MSGBOX_AUTOCLOSE
	end

FiveIsland_MemorialPillar_EventScript_1AC355:: @ 81AC355
	trainerbattle_single TRAINER_BIRD_KEEPER_CHAZ, Text_18AEDC, Text_18AF39
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC37C
	msgbox Text_18AF45, MSGBOX_AUTOCLOSE
	end

EventScript_1AC37C:: @ 81AC37C
	trainerbattle_rematch TRAINER_BIRD_KEEPER_CHAZ, Text_1C3E0F, Text_18AF39
	msgbox Text_18AF45, MSGBOX_AUTOCLOSE
	end

FiveIsland_MemorialPillar_EventScript_1AC393:: @ 81AC393
	trainerbattle_single TRAINER_BIRD_KEEPER_HAROLD, Text_18AF72, Text_18AFCC
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC3BA
	msgbox Text_18AFF2, MSGBOX_AUTOCLOSE
	end

EventScript_1AC3BA:: @ 81AC3BA
	trainerbattle_rematch TRAINER_BIRD_KEEPER_HAROLD, Text_1C3E6A, Text_18AFCC
	msgbox Text_18AFF2, MSGBOX_AUTOCLOSE
	end

SixIsland_OutcastIsland_EventScript_1AC3D1:: @ 81AC3D1
	trainerbattle_single TRAINER_FISHERMAN_TYLOR, Text_18B400, Text_18B43B
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC3F8
	msgbox Text_18B451, MSGBOX_AUTOCLOSE
	end

EventScript_1AC3F8:: @ 81AC3F8
	trainerbattle_rematch TRAINER_FISHERMAN_TYLOR, Text_1C3ED0, Text_18B43B
	msgbox Text_18B451, MSGBOX_AUTOCLOSE
	end

SixIsland_OutcastIsland_EventScript_1AC40F:: @ 81AC40F
	trainerbattle_single TRAINER_SWIMMER_MALE_MYMO, Text_18B48F, Text_18B4C5
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC436
	msgbox Text_18B4D1, MSGBOX_AUTOCLOSE
	end

EventScript_1AC436:: @ 81AC436
	trainerbattle_rematch TRAINER_SWIMMER_MALE_MYMO, Text_1C3F11, Text_18B4C5
	msgbox Text_18B4D1, MSGBOX_AUTOCLOSE
	end

SixIsland_OutcastIsland_EventScript_1AC44D:: @ 81AC44D
	trainerbattle_single TRAINER_SWIMMER_FEMALE_NICOLE, Text_18B4FA, Text_18B539
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC474
	msgbox Text_18B573, MSGBOX_AUTOCLOSE
	end

EventScript_1AC474:: @ 81AC474
	trainerbattle_rematch TRAINER_SWIMMER_FEMALE_NICOLE, Text_1C3F51, Text_18B539
	msgbox Text_18B573, MSGBOX_AUTOCLOSE
	end

SixIsland_OutcastIsland_EventScript_1AC48B:: @ 81AC48B
	trainerbattle_double TRAINER_SIS_AND_BRO_AVA_GEB, Text_18B5C8, Text_18B5F4, Text_18B660
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC4B6
	msgbox Text_18B62E, MSGBOX_AUTOCLOSE
	end

EventScript_1AC4B6:: @ 81AC4B6
	trainerbattle_rematch_double TRAINER_SIS_AND_BRO_AVA_GEB, Text_1C3F7B, Text_18B5F4, Text_18B660
	msgbox Text_18B62E, MSGBOX_AUTOCLOSE
	end

SixIsland_OutcastIsland_EventScript_1AC4D1:: @ 81AC4D1
	trainerbattle_double TRAINER_SIS_AND_BRO_AVA_GEB, Text_18B6C1, Text_18B6EF, Text_18B762
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC4FC
	msgbox Text_18B720, MSGBOX_AUTOCLOSE
	end

EventScript_1AC4FC:: @ 81AC4FC
	trainerbattle_rematch_double TRAINER_SIS_AND_BRO_AVA_GEB, Text_1C3FB3, Text_18B6EF, Text_18B762
	msgbox Text_18B720, MSGBOX_AUTOCLOSE
	end

SixIsland_GreenPath_EventScript_1AC517:: @ 81AC517
	trainerbattle_single TRAINER_PSYCHIC_JACLYN, Text_18B7B0, Text_18B7F0
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC53E
	msgbox Text_18B7FD, MSGBOX_AUTOCLOSE
	end

EventScript_1AC53E:: @ 81AC53E
	trainerbattle_rematch TRAINER_PSYCHIC_JACLYN, Text_1C3FE9, Text_18B7F0
	msgbox Text_18B7FD, MSGBOX_AUTOCLOSE
	end

SixIsland_WaterPath_EventScript_1AC555:: @ 81AC555
	trainerbattle_single TRAINER_AROMA_LADY_ROSE, Text_18B896, Text_18B8C8
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC57C
	msgbox Text_18B8F7, MSGBOX_AUTOCLOSE
	end

EventScript_1AC57C:: @ 81AC57C
	trainerbattle_rematch TRAINER_AROMA_LADY_ROSE, Text_1C4028, Text_18B8C8
	msgbox Text_18B8F7, MSGBOX_AUTOCLOSE
	end

SixIsland_WaterPath_EventScript_1AC593:: @ 81AC593
	trainerbattle_single TRAINER_JUGGLER_EDWARD, Text_18B959, Text_18B988
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC5BA
	msgbox Text_18B9A5, MSGBOX_AUTOCLOSE
	end

EventScript_1AC5BA:: @ 81AC5BA
	trainerbattle_rematch TRAINER_JUGGLER_EDWARD, Text_1C4057, Text_18B988
	msgbox Text_18B9A5, MSGBOX_AUTOCLOSE
	end

SixIsland_WaterPath_EventScript_1AC5D1:: @ 81AC5D1
	trainerbattle_single TRAINER_SWIMMER_MALE_SAMIR, Text_18B9EC, Text_18BA47
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC5F8
	msgbox Text_18BA57, MSGBOX_AUTOCLOSE
	end

EventScript_1AC5F8:: @ 81AC5F8
	trainerbattle_rematch TRAINER_SWIMMER_MALE_SAMIR, Text_1C407F, Text_18BA47
	msgbox Text_18BA57, MSGBOX_AUTOCLOSE
	end

SixIsland_WaterPath_EventScript_1AC60F:: @ 81AC60F
	trainerbattle_single TRAINER_SWIMMER_FEMALE_DENISE, Text_18BA86, Text_18BAC0
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC636
	msgbox Text_18BAE0, MSGBOX_AUTOCLOSE
	end

EventScript_1AC636:: @ 81AC636
	trainerbattle_rematch TRAINER_SWIMMER_FEMALE_DENISE, Text_1C40D9, Text_18BAC0
	msgbox Text_18BAE0, MSGBOX_AUTOCLOSE
	end

SixIsland_WaterPath_EventScript_1AC64D:: @ 81AC64D
	trainerbattle_double TRAINER_TWINS_MIU_MIA, Text_18BBBA, Text_18BBE2, Text_18BC24
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC678
	msgbox Text_18BBF6, MSGBOX_AUTOCLOSE
	end

EventScript_1AC678:: @ 81AC678
	trainerbattle_rematch_double TRAINER_TWINS_MIU_MIA, Text_1C4138, Text_18BBE2, Text_18BC24
	msgbox Text_18BBF6, MSGBOX_AUTOCLOSE
	end

SixIsland_WaterPath_EventScript_1AC693:: @ 81AC693
	trainerbattle_double TRAINER_TWINS_MIU_MIA, Text_18BC5A, Text_18BC84, Text_18BCCF
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC6BE
	msgbox Text_18BCAE, MSGBOX_AUTOCLOSE
	end

EventScript_1AC6BE:: @ 81AC6BE
	trainerbattle_rematch_double TRAINER_TWINS_MIU_MIA, Text_1C4166, Text_18BC84, Text_18BCCF
	msgbox Text_18BCAE, MSGBOX_AUTOCLOSE
	end

SixIsland_WaterPath_EventScript_1AC6D9:: @ 81AC6D9
	trainerbattle_single TRAINER_HIKER_EARL, Text_18BB2D, Text_18BB62
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC700
	msgbox Text_18BB8B, MSGBOX_AUTOCLOSE
	end

EventScript_1AC700:: @ 81AC700
	trainerbattle_rematch TRAINER_HIKER_EARL, Text_1C40FA, Text_18BB62
	msgbox Text_18BB8B, MSGBOX_AUTOCLOSE
	end

SixIsland_RuinValley_EventScript_1AC717:: @ 81AC717
	trainerbattle_single TRAINER_RUIN_MANIAC_STANLY, Text_18BE5D, Text_18BE9B
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC73E
	msgbox Text_18BEA0, MSGBOX_AUTOCLOSE
	end

EventScript_1AC73E:: @ 81AC73E
	trainerbattle_rematch TRAINER_RUIN_MANIAC_STANLY, Text_1C4196, Text_18BE9B
	msgbox Text_18BEA0, MSGBOX_AUTOCLOSE
	end

SixIsland_RuinValley_EventScript_1AC755:: @ 81AC755
	trainerbattle_single TRAINER_RUIN_MANIAC_FOSTER, Text_18BF05, Text_18BF33
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC77C
	msgbox Text_18BF6C, MSGBOX_AUTOCLOSE
	end

EventScript_1AC77C:: @ 81AC77C
	trainerbattle_rematch TRAINER_RUIN_MANIAC_FOSTER, Text_1C41D4, Text_18BF33
	msgbox Text_18BF6C, MSGBOX_AUTOCLOSE
	end

SixIsland_RuinValley_EventScript_1AC793:: @ 81AC793
	trainerbattle_single TRAINER_RUIN_MANIAC_LARRY, Text_18BFC5, Text_18C03B
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC7BA
	msgbox Text_18C04C, MSGBOX_AUTOCLOSE
	end

EventScript_1AC7BA:: @ 81AC7BA
	trainerbattle_rematch TRAINER_RUIN_MANIAC_LARRY, Text_1C4210, Text_18C03B
	msgbox Text_18C04C, MSGBOX_AUTOCLOSE
	end

SixIsland_RuinValley_EventScript_1AC7D1:: @ 81AC7D1
	trainerbattle_single TRAINER_HIKER_DARYL, Text_18C09C, Text_18C0BB
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC7F8
	msgbox Text_18C0EA, MSGBOX_AUTOCLOSE
	end

EventScript_1AC7F8:: @ 81AC7F8
	trainerbattle_rematch TRAINER_HIKER_DARYL, Text_1C4280, Text_18C0BB
	msgbox Text_18C0EA, MSGBOX_AUTOCLOSE
	end

SixIsland_RuinValley_EventScript_1AC80F:: @ 81AC80F
	trainerbattle_single TRAINER_POKEMANIAC_HECTOR, Text_18C10A, Text_18C140
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC836
	msgbox Text_18C17A, MSGBOX_AUTOCLOSE
	end

EventScript_1AC836:: @ 81AC836
	trainerbattle_rematch TRAINER_POKEMANIAC_HECTOR, Text_1C42A0, Text_18C140
	msgbox Text_18C17A, MSGBOX_AUTOCLOSE
	end

SevenIsland_TrainerTower_EventScript_1AC84D:: @ 81AC84D
	trainerbattle_single TRAINER_PSYCHIC_DARIO, Text_18C1ED, Text_18C205
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC874
	msgbox Text_18C20E, MSGBOX_AUTOCLOSE
	end

EventScript_1AC874:: @ 81AC874
	trainerbattle_rematch TRAINER_PSYCHIC_DARIO, Text_1C42D6, Text_18C205
	msgbox Text_18C20E, MSGBOX_AUTOCLOSE
	end

SevenIsland_TrainerTower_EventScript_1AC88B:: @ 81AC88B
	trainerbattle_single TRAINER_PSYCHIC_RODETTE, Text_18C283, Text_18C2BC
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC8B2
	msgbox Text_18C2D5, MSGBOX_AUTOCLOSE
	end

EventScript_1AC8B2:: @ 81AC8B2
	trainerbattle_rematch TRAINER_PSYCHIC_RODETTE, Text_1C42EE, Text_18C2BC
	msgbox Text_18C2D5, MSGBOX_AUTOCLOSE
	end

SevenIsland_SevaultCanyon_Entrance_EventScript_1AC8C9:: @ 81AC8C9
	trainerbattle_single TRAINER_AROMA_LADY_MIAH, Text_18C3BC, Text_18C3E7
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC8F0
	msgbox Text_18C3FF, MSGBOX_AUTOCLOSE
	end

EventScript_1AC8F0:: @ 81AC8F0
	trainerbattle_rematch TRAINER_AROMA_LADY_MIAH, Text_1C4327, Text_18C3E7
	msgbox Text_18C3FF, MSGBOX_AUTOCLOSE
	end

SevenIsland_SevaultCanyon_Entrance_EventScript_1AC907:: @ 81AC907
	trainerbattle_double TRAINER_YOUNG_COUPLE_EVE_JON, Text_18C632, Text_18C662, Text_18C6AB
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC932
	msgbox Text_18C683, MSGBOX_AUTOCLOSE
	end

EventScript_1AC932:: @ 81AC932
	trainerbattle_rematch_double TRAINER_YOUNG_COUPLE_EVE_JON, Text_1C4416, Text_18C662, Text_18C6AB
	msgbox Text_18C683, MSGBOX_AUTOCLOSE
	end

SevenIsland_SevaultCanyon_Entrance_EventScript_1AC94D:: @ 81AC94D
	trainerbattle_double TRAINER_YOUNG_COUPLE_EVE_JON, Text_18C700, Text_18C73B, Text_18C7BD
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC978
	msgbox Text_18C773, MSGBOX_AUTOCLOSE
	end

EventScript_1AC978:: @ 81AC978
	trainerbattle_rematch_double TRAINER_YOUNG_COUPLE_EVE_JON, Text_1C444C, Text_18C73B, Text_18C7BD
	msgbox Text_18C773, MSGBOX_AUTOCLOSE
	end

SevenIsland_SevaultCanyon_Entrance_EventScript_1AC993:: @ 81AC993
	trainerbattle_single TRAINER_JUGGLER_MASON, Text_18C44B, Text_18C473
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC9BA
	msgbox Text_18C4BA, MSGBOX_AUTOCLOSE
	end

EventScript_1AC9BA:: @ 81AC9BA
	trainerbattle_rematch TRAINER_JUGGLER_MASON, Text_1C4374, Text_18C473
	msgbox Text_18C4BA, MSGBOX_AUTOCLOSE
	end

SevenIsland_SevaultCanyon_Entrance_EventScript_1AC9D1:: @ 81AC9D1
	trainerbattle_single TRAINER_PKMN_RANGER_NICOLAS, Text_18C500, Text_18C543
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1AC9F8
	msgbox Text_18C54B, MSGBOX_AUTOCLOSE
	end

EventScript_1AC9F8:: @ 81AC9F8
	trainerbattle_rematch TRAINER_PKMN_RANGER_NICOLAS, Text_1C43AD, Text_18C543
	msgbox Text_18C54B, MSGBOX_AUTOCLOSE
	end

SevenIsland_SevaultCanyon_Entrance_EventScript_1ACA0F:: @ 81ACA0F
	trainerbattle_single TRAINER_PKMN_RANGER_MADELINE, Text_18C5AA, Text_18C5CD
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ACA36
	msgbox Text_18C5F5, MSGBOX_AUTOCLOSE
	end

EventScript_1ACA36:: @ 81ACA36
	trainerbattle_rematch TRAINER_PKMN_RANGER_MADELINE, Text_1C43EC, Text_18C5CD
	msgbox Text_18C5F5, MSGBOX_AUTOCLOSE
	end

SevenIsland_SevaultCanyon_EventScript_1ACA4D:: @ 81ACA4D
	trainerbattle_single TRAINER_CRUSH_GIRL_CYNDY, Text_18C887, Text_18C8A6
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ACA74
	msgbox Text_18C8C2, MSGBOX_AUTOCLOSE
	end

EventScript_1ACA74:: @ 81ACA74
	trainerbattle_rematch TRAINER_CRUSH_GIRL_CYNDY, Text_1C4491, Text_18C8A6
	msgbox Text_18C8C2, MSGBOX_AUTOCLOSE
	end

SevenIsland_SevaultCanyon_EventScript_1ACA8B:: @ 81ACA8B
	trainerbattle_single TRAINER_TAMER_EVAN, Text_18C8FD, Text_18C980
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ACAB2
	msgbox Text_18C999, MSGBOX_AUTOCLOSE
	end

EventScript_1ACAB2:: @ 81ACAB2
	trainerbattle_rematch TRAINER_TAMER_EVAN, Text_1C44CB, Text_18C980
	msgbox Text_18C999, MSGBOX_AUTOCLOSE
	end

SevenIsland_SevaultCanyon_EventScript_1ACAC9:: @ 81ACAC9
	trainerbattle_single TRAINER_PKMN_RANGER_JACKSON, Text_18CA2F, Text_18CA6F
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ACAF0
	msgbox Text_18CA9C, MSGBOX_AUTOCLOSE
	end

EventScript_1ACAF0:: @ 81ACAF0
	trainerbattle_rematch TRAINER_PKMN_RANGER_JACKSON, Text_1C454E, Text_18CA6F
	msgbox Text_18CA9C, MSGBOX_AUTOCLOSE
	end

SevenIsland_SevaultCanyon_EventScript_1ACB07:: @ 81ACB07
	trainerbattle_single TRAINER_PKMN_RANGER_KATELYN, Text_18CB16, Text_18CB3E
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ACB2E
	msgbox Text_18CB6C, MSGBOX_AUTOCLOSE
	end

EventScript_1ACB2E:: @ 81ACB2E
	trainerbattle_rematch TRAINER_PKMN_RANGER_KATELYN, Text_1C458E, Text_18CB3E
	msgbox Text_18CB6C, MSGBOX_AUTOCLOSE
	end

SevenIsland_SevaultCanyon_EventScript_1ACB45:: @ 81ACB45
	trainerbattle_single TRAINER_COOLTRAINER_LEROY, Text_18CBB4, Text_18CBE0
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ACB6C
	msgbox Text_18CC09, MSGBOX_AUTOCLOSE
	end

EventScript_1ACB6C:: @ 81ACB6C
	trainerbattle_rematch TRAINER_COOLTRAINER_LEROY, Text_1C45C2, Text_18CBE0
	msgbox Text_18CC09, MSGBOX_AUTOCLOSE
	end

SevenIsland_SevaultCanyon_EventScript_1ACB83:: @ 81ACB83
	trainerbattle_single TRAINER_COOLTRAINER_MICHELLE, Text_18CC4F, Text_18CCAE
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ACBAA
	msgbox Text_18CCEA, MSGBOX_AUTOCLOSE
	end

EventScript_1ACBAA:: @ 81ACBAA
	trainerbattle_rematch TRAINER_COOLTRAINER_MICHELLE, Text_1C45FB, Text_18CCAE
	msgbox Text_18CCEA, MSGBOX_AUTOCLOSE
	end

SevenIsland_SevaultCanyon_EventScript_1ACBC1:: @ 81ACBC1
	trainerbattle_double TRAINER_COOL_COUPLE_LEX_NYA, Text_18CD49, Text_18CD75, Text_18CDE2
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ACBEC
	msgbox Text_18CD9C, MSGBOX_AUTOCLOSE
	end

EventScript_1ACBEC:: @ 81ACBEC
	trainerbattle_rematch_double TRAINER_COOL_COUPLE_LEX_NYA, Text_1C4662, Text_18CD75, Text_18CDE2
	msgbox Text_18CD9C, MSGBOX_AUTOCLOSE
	end

SevenIsland_SevaultCanyon_EventScript_1ACC07:: @ 81ACC07
	trainerbattle_double TRAINER_COOL_COUPLE_LEX_NYA, Text_18CE20, Text_18CE5A, Text_18CEF4
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ACC32
	msgbox Text_18CE78, MSGBOX_AUTOCLOSE
	end

EventScript_1ACC32:: @ 81ACC32
	trainerbattle_rematch_double TRAINER_COOL_COUPLE_LEX_NYA, Text_1C4699, Text_18CE5A, Text_18CEF4
	msgbox Text_18CE78, MSGBOX_AUTOCLOSE
	end

SevenIsland_TanobyRuins_EventScript_1ACC4D:: @ 81ACC4D
	trainerbattle_single TRAINER_RUIN_MANIAC_BRANDON, Text_18CFFB, Text_18D02A
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ACC74
	msgbox Text_18D061, MSGBOX_AUTOCLOSE
	end

EventScript_1ACC74:: @ 81ACC74
	trainerbattle_rematch TRAINER_RUIN_MANIAC_BRANDON, Text_1C46D3, Text_18D02A
	msgbox Text_18D061, MSGBOX_AUTOCLOSE
	end

SevenIsland_TanobyRuins_EventScript_1ACC8B:: @ 81ACC8B
	trainerbattle_single TRAINER_RUIN_MANIAC_BENJAMIN, Text_18D0D9, Text_18D108
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ACCB2
	msgbox Text_18D125, MSGBOX_AUTOCLOSE
	end

EventScript_1ACCB2:: @ 81ACCB2
	trainerbattle_rematch TRAINER_RUIN_MANIAC_BENJAMIN, Text_1C470A, Text_18D108
	msgbox Text_18D125, MSGBOX_AUTOCLOSE
	end

SevenIsland_TanobyRuins_EventScript_1ACCC9:: @ 81ACCC9
	trainerbattle_single TRAINER_PAINTER_EDNA, Text_18D18F, Text_18D1B5
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ACCF0
	msgbox Text_18D1E3, MSGBOX_AUTOCLOSE
	end

EventScript_1ACCF0:: @ 81ACCF0
	trainerbattle_rematch TRAINER_PAINTER_EDNA, Text_1C4739, Text_18D1B5
	msgbox Text_18D1E3, MSGBOX_AUTOCLOSE
	end

SevenIsland_TanobyRuins_EventScript_1ACD07:: @ 81ACD07
	trainerbattle_single TRAINER_GENTLEMAN_CLIFFORD, Text_18D22F, Text_18D26D
	specialvar VAR_RESULT, ShouldTryRematchBattle
	compare VAR_RESULT, 1
	goto_if_eq EventScript_1ACD2E
	msgbox Text_18D284, MSGBOX_AUTOCLOSE
	end

EventScript_1ACD2E:: @ 81ACD2E
	trainerbattle_rematch TRAINER_GENTLEMAN_CLIFFORD, Text_1C476A, Text_18D26D
	msgbox Text_18D284, MSGBOX_AUTOCLOSE
	end