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
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
|
#include "constants/region_map.h"
#include "constants/flags.h"
#include "constants/moves.h"
#include "constants/species.h"
#define RGB(r, g, b) ((r) | ((g) << 5) | ((b) << 10))
.include "asm/macros.inc"
.include "constants/constants.inc"
.section .rodata
.align 2
gUnknown_843FAB0:: @ 843FAB0
.4byte gMonFootprint_Bulbasaur
.4byte gMonFootprint_Bulbasaur
.4byte gMonFootprint_Ivysaur
.4byte gMonFootprint_Venusaur
.4byte gMonFootprint_Charmander
.4byte gMonFootprint_Charmeleon
.4byte gMonFootprint_Charizard
.4byte gMonFootprint_Squirtle
.4byte gMonFootprint_Wartortle
.4byte gMonFootprint_Blastoise
.4byte gMonFootprint_Caterpie
.4byte gMonFootprint_Metapod
.4byte gMonFootprint_Butterfree
.4byte gMonFootprint_Weedle
.4byte gMonFootprint_Kakuna
.4byte gMonFootprint_Beedrill
.4byte gMonFootprint_Pidgey
.4byte gMonFootprint_Pidgeotto
.4byte gMonFootprint_Pidgeot
.4byte gMonFootprint_Rattata
.4byte gMonFootprint_Raticate
.4byte gMonFootprint_Spearow
.4byte gMonFootprint_Fearow
.4byte gMonFootprint_Ekans
.4byte gMonFootprint_Arbok
.4byte gMonFootprint_Pikachu
.4byte gMonFootprint_Raichu
.4byte gMonFootprint_Sandshrew
.4byte gMonFootprint_Sandslash
.4byte gMonFootprint_NidoranF
.4byte gMonFootprint_Nidorina
.4byte gMonFootprint_Nidoqueen
.4byte gMonFootprint_NidoranM
.4byte gMonFootprint_Nidorino
.4byte gMonFootprint_Nidoking
.4byte gMonFootprint_Clefairy
.4byte gMonFootprint_Clefable
.4byte gMonFootprint_Vulpix
.4byte gMonFootprint_Ninetales
.4byte gMonFootprint_Jigglypuff
.4byte gMonFootprint_Wigglytuff
.4byte gMonFootprint_Zubat
.4byte gMonFootprint_Golbat
.4byte gMonFootprint_Oddish
.4byte gMonFootprint_Gloom
.4byte gMonFootprint_Vileplume
.4byte gMonFootprint_Paras
.4byte gMonFootprint_Parasect
.4byte gMonFootprint_Venonat
.4byte gMonFootprint_Venomoth
.4byte gMonFootprint_Diglett
.4byte gMonFootprint_Dugtrio
.4byte gMonFootprint_Meowth
.4byte gMonFootprint_Persian
.4byte gMonFootprint_Psyduck
.4byte gMonFootprint_Golduck
.4byte gMonFootprint_Mankey
.4byte gMonFootprint_Primeape
.4byte gMonFootprint_Growlithe
.4byte gMonFootprint_Arcanine
.4byte gMonFootprint_Poliwag
.4byte gMonFootprint_Poliwhirl
.4byte gMonFootprint_Poliwrath
.4byte gMonFootprint_Abra
.4byte gMonFootprint_Kadabra
.4byte gMonFootprint_Alakazam
.4byte gMonFootprint_Machop
.4byte gMonFootprint_Machoke
.4byte gMonFootprint_Machamp
.4byte gMonFootprint_Bellsprout
.4byte gMonFootprint_Weepinbell
.4byte gMonFootprint_Victreebel
.4byte gMonFootprint_Tentacool
.4byte gMonFootprint_Tentacruel
.4byte gMonFootprint_Geodude
.4byte gMonFootprint_Graveler
.4byte gMonFootprint_Golem
.4byte gMonFootprint_Ponyta
.4byte gMonFootprint_Rapidash
.4byte gMonFootprint_Slowpoke
.4byte gMonFootprint_Slowbro
.4byte gMonFootprint_Magnemite
.4byte gMonFootprint_Magneton
.4byte gMonFootprint_Farfetchd
.4byte gMonFootprint_Doduo
.4byte gMonFootprint_Dodrio
.4byte gMonFootprint_Seel
.4byte gMonFootprint_Dewgong
.4byte gMonFootprint_Grimer
.4byte gMonFootprint_Muk
.4byte gMonFootprint_Shellder
.4byte gMonFootprint_Cloyster
.4byte gMonFootprint_Gastly
.4byte gMonFootprint_Haunter
.4byte gMonFootprint_Gengar
.4byte gMonFootprint_Onix
.4byte gMonFootprint_Drowzee
.4byte gMonFootprint_Hypno
.4byte gMonFootprint_Krabby
.4byte gMonFootprint_Kingler
.4byte gMonFootprint_Voltorb
.4byte gMonFootprint_Electrode
.4byte gMonFootprint_Exeggcute
.4byte gMonFootprint_Exeggutor
.4byte gMonFootprint_Cubone
.4byte gMonFootprint_Marowak
.4byte gMonFootprint_Hitmonlee
.4byte gMonFootprint_Hitmonchan
.4byte gMonFootprint_Lickitung
.4byte gMonFootprint_Koffing
.4byte gMonFootprint_Weezing
.4byte gMonFootprint_Rhyhorn
.4byte gMonFootprint_Rhydon
.4byte gMonFootprint_Chansey
.4byte gMonFootprint_Tangela
.4byte gMonFootprint_Kangaskhan
.4byte gMonFootprint_Horsea
.4byte gMonFootprint_Seadra
.4byte gMonFootprint_Goldeen
.4byte gMonFootprint_Seaking
.4byte gMonFootprint_Staryu
.4byte gMonFootprint_Starmie
.4byte gMonFootprint_Mrmime
.4byte gMonFootprint_Scyther
.4byte gMonFootprint_Jynx
.4byte gMonFootprint_Electabuzz
.4byte gMonFootprint_Magmar
.4byte gMonFootprint_Pinsir
.4byte gMonFootprint_Tauros
.4byte gMonFootprint_Magikarp
.4byte gMonFootprint_Gyarados
.4byte gMonFootprint_Lapras
.4byte gMonFootprint_Ditto
.4byte gMonFootprint_Eevee
.4byte gMonFootprint_Vaporeon
.4byte gMonFootprint_Jolteon
.4byte gMonFootprint_Flareon
.4byte gMonFootprint_Porygon
.4byte gMonFootprint_Omanyte
.4byte gMonFootprint_Omastar
.4byte gMonFootprint_Kabuto
.4byte gMonFootprint_Kabutops
.4byte gMonFootprint_Aerodactyl
.4byte gMonFootprint_Snorlax
.4byte gMonFootprint_Articuno
.4byte gMonFootprint_Zapdos
.4byte gMonFootprint_Moltres
.4byte gMonFootprint_Dratini
.4byte gMonFootprint_Dragonair
.4byte gMonFootprint_Dragonite
.4byte gMonFootprint_Mewtwo
.4byte gMonFootprint_Mew
.4byte gMonFootprint_Chikorita
.4byte gMonFootprint_Bayleef
.4byte gMonFootprint_Meganium
.4byte gMonFootprint_Cyndaquil
.4byte gMonFootprint_Quilava
.4byte gMonFootprint_Typhlosion
.4byte gMonFootprint_Totodile
.4byte gMonFootprint_Croconaw
.4byte gMonFootprint_Feraligatr
.4byte gMonFootprint_Sentret
.4byte gMonFootprint_Furret
.4byte gMonFootprint_Hoothoot
.4byte gMonFootprint_Noctowl
.4byte gMonFootprint_Ledyba
.4byte gMonFootprint_Ledian
.4byte gMonFootprint_Spinarak
.4byte gMonFootprint_Ariados
.4byte gMonFootprint_Crobat
.4byte gMonFootprint_Chinchou
.4byte gMonFootprint_Lanturn
.4byte gMonFootprint_Pichu
.4byte gMonFootprint_Cleffa
.4byte gMonFootprint_Igglybuff
.4byte gMonFootprint_Togepi
.4byte gMonFootprint_Togetic
.4byte gMonFootprint_Natu
.4byte gMonFootprint_Xatu
.4byte gMonFootprint_Mareep
.4byte gMonFootprint_Flaaffy
.4byte gMonFootprint_Ampharos
.4byte gMonFootprint_Bellossom
.4byte gMonFootprint_Marill
.4byte gMonFootprint_Azumarill
.4byte gMonFootprint_Sudowoodo
.4byte gMonFootprint_Politoed
.4byte gMonFootprint_Hoppip
.4byte gMonFootprint_Skiploom
.4byte gMonFootprint_Jumpluff
.4byte gMonFootprint_Aipom
.4byte gMonFootprint_Sunkern
.4byte gMonFootprint_Sunflora
.4byte gMonFootprint_Yanma
.4byte gMonFootprint_Wooper
.4byte gMonFootprint_Quagsire
.4byte gMonFootprint_Espeon
.4byte gMonFootprint_Umbreon
.4byte gMonFootprint_Murkrow
.4byte gMonFootprint_Slowking
.4byte gMonFootprint_Misdreavus
.4byte gMonFootprint_Unown
.4byte gMonFootprint_Wobbuffet
.4byte gMonFootprint_Girafarig
.4byte gMonFootprint_Pineco
.4byte gMonFootprint_Forretress
.4byte gMonFootprint_Dunsparce
.4byte gMonFootprint_Gligar
.4byte gMonFootprint_Steelix
.4byte gMonFootprint_Snubbull
.4byte gMonFootprint_Granbull
.4byte gMonFootprint_Qwilfish
.4byte gMonFootprint_Scizor
.4byte gMonFootprint_Shuckle
.4byte gMonFootprint_Heracross
.4byte gMonFootprint_Sneasel
.4byte gMonFootprint_Teddiursa
.4byte gMonFootprint_Ursaring
.4byte gMonFootprint_Slugma
.4byte gMonFootprint_Magcargo
.4byte gMonFootprint_Swinub
.4byte gMonFootprint_Piloswine
.4byte gMonFootprint_Corsola
.4byte gMonFootprint_Remoraid
.4byte gMonFootprint_Octillery
.4byte gMonFootprint_Delibird
.4byte gMonFootprint_Mantine
.4byte gMonFootprint_Skarmory
.4byte gMonFootprint_Houndour
.4byte gMonFootprint_Houndoom
.4byte gMonFootprint_Kingdra
.4byte gMonFootprint_Phanpy
.4byte gMonFootprint_Donphan
.4byte gMonFootprint_Porygon2
.4byte gMonFootprint_Stantler
.4byte gMonFootprint_Smeargle
.4byte gMonFootprint_Tyrogue
.4byte gMonFootprint_Hitmontop
.4byte gMonFootprint_Smoochum
.4byte gMonFootprint_Elekid
.4byte gMonFootprint_Magby
.4byte gMonFootprint_Miltank
.4byte gMonFootprint_Blissey
.4byte gMonFootprint_Raikou
.4byte gMonFootprint_Entei
.4byte gMonFootprint_Suicune
.4byte gMonFootprint_Larvitar
.4byte gMonFootprint_Pupitar
.4byte gMonFootprint_Tyranitar
.4byte gMonFootprint_Lugia
.4byte gMonFootprint_HoOh
.4byte gMonFootprint_Celebi
.4byte gMonFootprint_QuestionMark
.4byte gMonFootprint_QuestionMark
.4byte gMonFootprint_QuestionMark
.4byte gMonFootprint_QuestionMark
.4byte gMonFootprint_QuestionMark
.4byte gMonFootprint_QuestionMark
.4byte gMonFootprint_QuestionMark
.4byte gMonFootprint_QuestionMark
.4byte gMonFootprint_QuestionMark
.4byte gMonFootprint_QuestionMark
.4byte gMonFootprint_QuestionMark
.4byte gMonFootprint_QuestionMark
.4byte gMonFootprint_QuestionMark
.4byte gMonFootprint_QuestionMark
.4byte gMonFootprint_QuestionMark
.4byte gMonFootprint_QuestionMark
.4byte gMonFootprint_QuestionMark
.4byte gMonFootprint_QuestionMark
.4byte gMonFootprint_QuestionMark
.4byte gMonFootprint_QuestionMark
.4byte gMonFootprint_QuestionMark
.4byte gMonFootprint_QuestionMark
.4byte gMonFootprint_QuestionMark
.4byte gMonFootprint_QuestionMark
.4byte gMonFootprint_QuestionMark
.4byte gMonFootprint_Treecko
.4byte gMonFootprint_Grovyle
.4byte gMonFootprint_Sceptile
.4byte gMonFootprint_Torchic
.4byte gMonFootprint_Combusken
.4byte gMonFootprint_Blaziken
.4byte gMonFootprint_Mudkip
.4byte gMonFootprint_Marshtomp
.4byte gMonFootprint_Swampert
.4byte gMonFootprint_Poochyena
.4byte gMonFootprint_Mightyena
.4byte gMonFootprint_Zigzagoon
.4byte gMonFootprint_Linoone
.4byte gMonFootprint_Wurmple
.4byte gMonFootprint_Silcoon
.4byte gMonFootprint_Beautifly
.4byte gMonFootprint_Cascoon
.4byte gMonFootprint_Dustox
.4byte gMonFootprint_Lotad
.4byte gMonFootprint_Lombre
.4byte gMonFootprint_Ludicolo
.4byte gMonFootprint_Seedot
.4byte gMonFootprint_Nuzleaf
.4byte gMonFootprint_Shiftry
.4byte gMonFootprint_Nincada
.4byte gMonFootprint_Ninjask
.4byte gMonFootprint_Shedinja
.4byte gMonFootprint_Taillow
.4byte gMonFootprint_Swellow
.4byte gMonFootprint_Shroomish
.4byte gMonFootprint_Breloom
.4byte gMonFootprint_Spinda
.4byte gMonFootprint_Wingull
.4byte gMonFootprint_Pelipper
.4byte gMonFootprint_Surskit
.4byte gMonFootprint_Masquerain
.4byte gMonFootprint_Wailmer
.4byte gMonFootprint_Wailord
.4byte gMonFootprint_Skitty
.4byte gMonFootprint_Delcatty
.4byte gMonFootprint_Kecleon
.4byte gMonFootprint_Baltoy
.4byte gMonFootprint_Claydol
.4byte gMonFootprint_Nosepass
.4byte gMonFootprint_Torkoal
.4byte gMonFootprint_Sableye
.4byte gMonFootprint_Barboach
.4byte gMonFootprint_Whiscash
.4byte gMonFootprint_Luvdisc
.4byte gMonFootprint_Corphish
.4byte gMonFootprint_Crawdaunt
.4byte gMonFootprint_Feebas
.4byte gMonFootprint_Milotic
.4byte gMonFootprint_Carvanha
.4byte gMonFootprint_Sharpedo
.4byte gMonFootprint_Trapinch
.4byte gMonFootprint_Vibrava
.4byte gMonFootprint_Flygon
.4byte gMonFootprint_Makuhita
.4byte gMonFootprint_Hariyama
.4byte gMonFootprint_Electrike
.4byte gMonFootprint_Manectric
.4byte gMonFootprint_Numel
.4byte gMonFootprint_Camerupt
.4byte gMonFootprint_Spheal
.4byte gMonFootprint_Sealeo
.4byte gMonFootprint_Walrein
.4byte gMonFootprint_Cacnea
.4byte gMonFootprint_Cacturne
.4byte gMonFootprint_Snorunt
.4byte gMonFootprint_Glalie
.4byte gMonFootprint_Lunatone
.4byte gMonFootprint_Solrock
.4byte gMonFootprint_Azurill
.4byte gMonFootprint_Spoink
.4byte gMonFootprint_Grumpig
.4byte gMonFootprint_Plusle
.4byte gMonFootprint_Minun
.4byte gMonFootprint_Mawile
.4byte gMonFootprint_Meditite
.4byte gMonFootprint_Medicham
.4byte gMonFootprint_Swablu
.4byte gMonFootprint_Altaria
.4byte gMonFootprint_Wynaut
.4byte gMonFootprint_Duskull
.4byte gMonFootprint_Dusclops
.4byte gMonFootprint_Roselia
.4byte gMonFootprint_Slakoth
.4byte gMonFootprint_Vigoroth
.4byte gMonFootprint_Slaking
.4byte gMonFootprint_Gulpin
.4byte gMonFootprint_Swalot
.4byte gMonFootprint_Tropius
.4byte gMonFootprint_Whismur
.4byte gMonFootprint_Loudred
.4byte gMonFootprint_Exploud
.4byte gMonFootprint_Clamperl
.4byte gMonFootprint_Huntail
.4byte gMonFootprint_Gorebyss
.4byte gMonFootprint_Absol
.4byte gMonFootprint_Shuppet
.4byte gMonFootprint_Banette
.4byte gMonFootprint_Seviper
.4byte gMonFootprint_Zangoose
.4byte gMonFootprint_Relicanth
.4byte gMonFootprint_Aron
.4byte gMonFootprint_Lairon
.4byte gMonFootprint_Aggron
.4byte gMonFootprint_Castform
.4byte gMonFootprint_Volbeat
.4byte gMonFootprint_Illumise
.4byte gMonFootprint_Lileep
.4byte gMonFootprint_Cradily
.4byte gMonFootprint_Anorith
.4byte gMonFootprint_Armaldo
.4byte gMonFootprint_Ralts
.4byte gMonFootprint_Kirlia
.4byte gMonFootprint_Gardevoir
.4byte gMonFootprint_Bagon
.4byte gMonFootprint_Shelgon
.4byte gMonFootprint_Salamence
.4byte gMonFootprint_Beldum
.4byte gMonFootprint_Metang
.4byte gMonFootprint_Metagross
.4byte gMonFootprint_Regirock
.4byte gMonFootprint_Regice
.4byte gMonFootprint_Registeel
.4byte gMonFootprint_Kyogre
.4byte gMonFootprint_Groudon
.4byte gMonFootprint_Rayquaza
.4byte gMonFootprint_Latias
.4byte gMonFootprint_Latios
.4byte gMonFootprint_Jirachi
.4byte gMonFootprint_Deoxys
.4byte gMonFootprint_Chimecho
.4byte gMonFootprint_Bulbasaur
gUnknown_8440124:: @ 8440124 bin.lz
.incbin "graphics/pokedex/unk_8440124.bin.lz"
gUnknown_8440274:: @ 8440274 4bpp.lz
.incbin "graphics/pokedex/unk_8440274.4bpp.lz"
gUnknown_84403AC:: @ 84403AC 4bpp.lz
.incbin "graphics/pokedex/unk_84403AC.4bpp.lz"
gUnknown_84404C8:: @ 84404C8 gbapal
.incbin "graphics/pokedex/unk_84404C8.gbapal"
gUnknown_84406C8:: @ 84406C8 data16
.2byte RGB(24, 22, 17), RGB(26, 24, 20)
.2byte RGB(26, 20, 15), RGB(27, 23, 19)
.2byte RGB(28, 18, 15), RGB(28, 22, 19)
.2byte RGB(30, 16, 13), RGB(29, 21, 18)
.2byte RGB(28, 18, 15), RGB(28, 22, 19)
.2byte RGB(26, 20, 15), RGB(27, 23, 19)
gUnknown_84406E0:: @ 84406E0 gbapal
.incbin "graphics/pokedex/unk_84406E0.gbapal"
gUnknown_84408E0:: @ bin.lz
.incbin "graphics/pokedex/unk_84408E0.bin.lz"
gUnknown_8440BD8:: @ bin.lz
.incbin "graphics/pokedex/unk_8440BD8.bin.lz"
gUnknown_8440EF0:: @ 8440EF0 bin.lz
.incbin "graphics/pokedex/unk_8440EF0.bin.lz"
gUnknown_844112C:: @ bin.lz
.incbin "graphics/pokedex/unk_844112C.bin.lz"
gUnknown_84414BC:: @ bin.lz
.incbin "graphics/pokedex/unk_84414BC.bin.lz"
gUnknown_8441808:: @ bin.lz
.incbin "graphics/pokedex/unk_8441808.bin.lz"
gUnknown_8441A40:: @ bin.lz
.incbin "graphics/pokedex/unk_8441A40.bin.lz"
gUnknown_8441D54:: @ bin.lz
.incbin "graphics/pokedex/unk_8441D54.bin.lz"
gUnknown_8442004:: @ bin.lz
.incbin "graphics/pokedex/unk_8442004.bin.lz"
gUnknown_844223C:: @ bin.lz
.incbin "graphics/pokedex/unk_844223C.bin.lz"
gUnknown_84424E4:: @ bin.lz
.incbin "graphics/pokedex/unk_84424E4.bin.lz"
gUnknown_8442838:: @ bin.lz
.incbin "graphics/pokedex/unk_8442838.bin.lz"
gUnknown_8442BC0:: @ bin.lz
.incbin "graphics/pokedex/unk_8442BC0.bin.lz"
gUnknown_8442EF8:: @ bin.lz
.incbin "graphics/pokedex/unk_8442EF8.bin.lz"
gUnknown_844318C:: @ bin.lz
.incbin "graphics/pokedex/unk_844318C.bin.lz"
gUnknown_8443420:: @ gbapal
.incbin "graphics/pokedex/unk_8443420.gbapal"
gUnknown_8443440:: @ gbapal
.incbin "graphics/pokedex/unk_8443440.gbapal"
gUnknown_8443460:: @ 8443460 gbapal
.incbin "graphics/pokedex/unk_8443460.gbapal"
gUnknown_8443480:: @ gbapal
.incbin "graphics/pokedex/unk_8443480.gbapal"
gUnknown_84434A0:: @ gbapal
.incbin "graphics/pokedex/unk_84434A0.gbapal"
gUnknown_84434C0:: @ gbapal
.incbin "graphics/pokedex/unk_84434C0.gbapal"
gUnknown_84434E0:: @ gbapal
.incbin "graphics/pokedex/unk_84434E0.gbapal"
gUnknown_8443500:: @ gbapal
.incbin "graphics/pokedex/unk_8443500.gbapal"
gUnknown_8443520:: @ gbapal
.incbin "graphics/pokedex/unk_8443520.gbapal"
gUnknown_8443540:: @ gbapal
.incbin "graphics/pokedex/unk_8443540.gbapal"
gUnknown_8443560:: @ gbapal
.incbin "graphics/pokedex/unk_8443560.gbapal"
gUnknown_8443580:: @ gbapal
.incbin "graphics/pokedex/unk_8443580.gbapal"
gUnknown_84435A0:: @ gbapal
.incbin "graphics/pokedex/unk_84435A0.gbapal"
gUnknown_84435C0:: @ gbapal
.incbin "graphics/pokedex/unk_84435C0.gbapal"
gUnknown_84435E0:: @ gbapal
.incbin "graphics/pokedex/unk_84435E0.gbapal"
gUnknown_8443600:: @ 8443600 4bpp
.incbin "graphics/pokedex/unk_8443600.4bpp"
gUnknown_8443620:: @ 8443620 bin.lz
.incbin "graphics/pokedex/unk_8443620.bin.lz"
gUnknown_8443910:: @ 8443910 bin.lz
.incbin "graphics/pokedex/unk_8443910.bin.lz"
gUnknown_8443988:: @ 8443988 bin.lz
.incbin "graphics/pokedex/unk_8443988.bin.lz"
gUnknown_84439FC:: @ 84439FC bin.lz
.incbin "graphics/pokedex/unk_84439FC.bin.lz"
gUnknown_8443A78:: @ 8443A78 bin.lz
.incbin "graphics/pokedex/unk_8443A78.bin.lz"
gUnknown_8443AF8:: @ 8443AF8 bin.lz
.incbin "graphics/pokedex/unk_8443AF8.bin.lz"
gUnknown_8443BB0:: @ 8443BB0 bin.lz
.incbin "graphics/pokedex/unk_8443BB0.bin.lz"
gUnknown_8443C54:: @ 8443C54 bin.lz
.incbin "graphics/pokedex/unk_8443C54.bin.lz"
gUnknown_8443D00:: @ 8443D00 4bpp
.incbin "graphics/pokedex/unk_8443D00.4bpp"
gUnknown_8443FC0:: @ 8443FC0
.2byte NATIONAL_DEX_OLD_UNOWN_B
.2byte NATIONAL_DEX_OLD_UNOWN_C
.2byte NATIONAL_DEX_OLD_UNOWN_D
.2byte NATIONAL_DEX_OLD_UNOWN_E
.2byte NATIONAL_DEX_OLD_UNOWN_F
.2byte NATIONAL_DEX_OLD_UNOWN_G
.2byte NATIONAL_DEX_OLD_UNOWN_H
.2byte NATIONAL_DEX_OLD_UNOWN_I
.2byte NATIONAL_DEX_OLD_UNOWN_J
.2byte NATIONAL_DEX_OLD_UNOWN_K
.2byte NATIONAL_DEX_OLD_UNOWN_L
.2byte NATIONAL_DEX_OLD_UNOWN_M
.2byte NATIONAL_DEX_OLD_UNOWN_N
.2byte NATIONAL_DEX_OLD_UNOWN_O
.2byte NATIONAL_DEX_OLD_UNOWN_P
.2byte NATIONAL_DEX_OLD_UNOWN_Q
.2byte NATIONAL_DEX_OLD_UNOWN_R
.2byte NATIONAL_DEX_OLD_UNOWN_S
.2byte NATIONAL_DEX_OLD_UNOWN_T
.2byte NATIONAL_DEX_OLD_UNOWN_U
.2byte NATIONAL_DEX_OLD_UNOWN_V
.2byte NATIONAL_DEX_OLD_UNOWN_W
.2byte NATIONAL_DEX_OLD_UNOWN_X
.2byte NATIONAL_DEX_OLD_UNOWN_Y
.2byte NATIONAL_DEX_OLD_UNOWN_Z
.2byte NATIONAL_DEX_ABRA
.2byte NATIONAL_DEX_ABSOL
.2byte NATIONAL_DEX_AERODACTYL
.2byte NATIONAL_DEX_AGGRON
.2byte NATIONAL_DEX_AIPOM
.2byte NATIONAL_DEX_ALAKAZAM
.2byte NATIONAL_DEX_ALTARIA
.2byte NATIONAL_DEX_AMPHAROS
.2byte NATIONAL_DEX_ANORITH
.2byte NATIONAL_DEX_ARBOK
.2byte NATIONAL_DEX_ARCANINE
.2byte NATIONAL_DEX_ARIADOS
.2byte NATIONAL_DEX_ARMALDO
.2byte NATIONAL_DEX_ARON
.2byte NATIONAL_DEX_ARTICUNO
.2byte NATIONAL_DEX_AZUMARILL
.2byte NATIONAL_DEX_AZURILL
.2byte NATIONAL_DEX_BAGON
.2byte NATIONAL_DEX_BALTOY
.2byte NATIONAL_DEX_BANETTE
.2byte NATIONAL_DEX_BARBOACH
.2byte NATIONAL_DEX_BAYLEEF
.2byte NATIONAL_DEX_BEAUTIFLY
.2byte NATIONAL_DEX_BEEDRILL
.2byte NATIONAL_DEX_BELDUM
.2byte NATIONAL_DEX_BELLOSSOM
.2byte NATIONAL_DEX_BELLSPROUT
.2byte NATIONAL_DEX_BLASTOISE
.2byte NATIONAL_DEX_BLAZIKEN
.2byte NATIONAL_DEX_BLISSEY
.2byte NATIONAL_DEX_BRELOOM
.2byte NATIONAL_DEX_BULBASAUR
.2byte NATIONAL_DEX_BUTTERFREE
.2byte NATIONAL_DEX_CACNEA
.2byte NATIONAL_DEX_CACTURNE
.2byte NATIONAL_DEX_CAMERUPT
.2byte NATIONAL_DEX_CARVANHA
.2byte NATIONAL_DEX_CASCOON
.2byte NATIONAL_DEX_CASTFORM
.2byte NATIONAL_DEX_CATERPIE
.2byte NATIONAL_DEX_CELEBI
.2byte NATIONAL_DEX_CHANSEY
.2byte NATIONAL_DEX_CHARIZARD
.2byte NATIONAL_DEX_CHARMANDER
.2byte NATIONAL_DEX_CHARMELEON
.2byte NATIONAL_DEX_CHIKORITA
.2byte NATIONAL_DEX_CHIMECHO
.2byte NATIONAL_DEX_CHINCHOU
.2byte NATIONAL_DEX_CLAMPERL
.2byte NATIONAL_DEX_CLAYDOL
.2byte NATIONAL_DEX_CLEFABLE
.2byte NATIONAL_DEX_CLEFAIRY
.2byte NATIONAL_DEX_CLEFFA
.2byte NATIONAL_DEX_CLOYSTER
.2byte NATIONAL_DEX_COMBUSKEN
.2byte NATIONAL_DEX_CORPHISH
.2byte NATIONAL_DEX_CORSOLA
.2byte NATIONAL_DEX_CRADILY
.2byte NATIONAL_DEX_CRAWDAUNT
.2byte NATIONAL_DEX_CROBAT
.2byte NATIONAL_DEX_CROCONAW
.2byte NATIONAL_DEX_CUBONE
.2byte NATIONAL_DEX_CYNDAQUIL
.2byte NATIONAL_DEX_DELCATTY
.2byte NATIONAL_DEX_DELIBIRD
.2byte NATIONAL_DEX_DEOXYS
.2byte NATIONAL_DEX_DEWGONG
.2byte NATIONAL_DEX_DIGLETT
.2byte NATIONAL_DEX_DITTO
.2byte NATIONAL_DEX_DODRIO
.2byte NATIONAL_DEX_DODUO
.2byte NATIONAL_DEX_DONPHAN
.2byte NATIONAL_DEX_DRAGONAIR
.2byte NATIONAL_DEX_DRAGONITE
.2byte NATIONAL_DEX_DRATINI
.2byte NATIONAL_DEX_DROWZEE
.2byte NATIONAL_DEX_DUGTRIO
.2byte NATIONAL_DEX_DUNSPARCE
.2byte NATIONAL_DEX_DUSCLOPS
.2byte NATIONAL_DEX_DUSKULL
.2byte NATIONAL_DEX_DUSTOX
.2byte NATIONAL_DEX_EEVEE
.2byte NATIONAL_DEX_EKANS
.2byte NATIONAL_DEX_ELECTABUZZ
.2byte NATIONAL_DEX_ELECTRIKE
.2byte NATIONAL_DEX_ELECTRODE
.2byte NATIONAL_DEX_ELEKID
.2byte NATIONAL_DEX_ENTEI
.2byte NATIONAL_DEX_ESPEON
.2byte NATIONAL_DEX_EXEGGCUTE
.2byte NATIONAL_DEX_EXEGGUTOR
.2byte NATIONAL_DEX_EXPLOUD
.2byte NATIONAL_DEX_FARFETCHD
.2byte NATIONAL_DEX_FEAROW
.2byte NATIONAL_DEX_FEEBAS
.2byte NATIONAL_DEX_FERALIGATR
.2byte NATIONAL_DEX_FLAAFFY
.2byte NATIONAL_DEX_FLAREON
.2byte NATIONAL_DEX_FLYGON
.2byte NATIONAL_DEX_FORRETRESS
.2byte NATIONAL_DEX_FURRET
.2byte NATIONAL_DEX_GARDEVOIR
.2byte NATIONAL_DEX_GASTLY
.2byte NATIONAL_DEX_GENGAR
.2byte NATIONAL_DEX_GEODUDE
.2byte NATIONAL_DEX_GIRAFARIG
.2byte NATIONAL_DEX_GLALIE
.2byte NATIONAL_DEX_GLIGAR
.2byte NATIONAL_DEX_GLOOM
.2byte NATIONAL_DEX_GOLBAT
.2byte NATIONAL_DEX_GOLDEEN
.2byte NATIONAL_DEX_GOLDUCK
.2byte NATIONAL_DEX_GOLEM
.2byte NATIONAL_DEX_GOREBYSS
.2byte NATIONAL_DEX_GRANBULL
.2byte NATIONAL_DEX_GRAVELER
.2byte NATIONAL_DEX_GRIMER
.2byte NATIONAL_DEX_GROUDON
.2byte NATIONAL_DEX_GROVYLE
.2byte NATIONAL_DEX_GROWLITHE
.2byte NATIONAL_DEX_GRUMPIG
.2byte NATIONAL_DEX_GULPIN
.2byte NATIONAL_DEX_GYARADOS
.2byte NATIONAL_DEX_HARIYAMA
.2byte NATIONAL_DEX_HAUNTER
.2byte NATIONAL_DEX_HERACROSS
.2byte NATIONAL_DEX_HITMONCHAN
.2byte NATIONAL_DEX_HITMONLEE
.2byte NATIONAL_DEX_HITMONTOP
.2byte NATIONAL_DEX_HO_OH
.2byte NATIONAL_DEX_HOOTHOOT
.2byte NATIONAL_DEX_HOPPIP
.2byte NATIONAL_DEX_HORSEA
.2byte NATIONAL_DEX_HOUNDOOM
.2byte NATIONAL_DEX_HOUNDOUR
.2byte NATIONAL_DEX_HUNTAIL
.2byte NATIONAL_DEX_HYPNO
.2byte NATIONAL_DEX_IGGLYBUFF
.2byte NATIONAL_DEX_ILLUMISE
.2byte NATIONAL_DEX_IVYSAUR
.2byte NATIONAL_DEX_JIGGLYPUFF
.2byte NATIONAL_DEX_JIRACHI
.2byte NATIONAL_DEX_JOLTEON
.2byte NATIONAL_DEX_JUMPLUFF
.2byte NATIONAL_DEX_JYNX
.2byte NATIONAL_DEX_KABUTO
.2byte NATIONAL_DEX_KABUTOPS
.2byte NATIONAL_DEX_KADABRA
.2byte NATIONAL_DEX_KAKUNA
.2byte NATIONAL_DEX_KANGASKHAN
.2byte NATIONAL_DEX_KECLEON
.2byte NATIONAL_DEX_KINGDRA
.2byte NATIONAL_DEX_KINGLER
.2byte NATIONAL_DEX_KIRLIA
.2byte NATIONAL_DEX_KOFFING
.2byte NATIONAL_DEX_KRABBY
.2byte NATIONAL_DEX_KYOGRE
.2byte NATIONAL_DEX_LAIRON
.2byte NATIONAL_DEX_LANTURN
.2byte NATIONAL_DEX_LAPRAS
.2byte NATIONAL_DEX_LARVITAR
.2byte NATIONAL_DEX_LATIAS
.2byte NATIONAL_DEX_LATIOS
.2byte NATIONAL_DEX_LEDIAN
.2byte NATIONAL_DEX_LEDYBA
.2byte NATIONAL_DEX_LICKITUNG
.2byte NATIONAL_DEX_LILEEP
.2byte NATIONAL_DEX_LINOONE
.2byte NATIONAL_DEX_LOMBRE
.2byte NATIONAL_DEX_LOTAD
.2byte NATIONAL_DEX_LOUDRED
.2byte NATIONAL_DEX_LUDICOLO
.2byte NATIONAL_DEX_LUGIA
.2byte NATIONAL_DEX_LUNATONE
.2byte NATIONAL_DEX_LUVDISC
.2byte NATIONAL_DEX_MACHAMP
.2byte NATIONAL_DEX_MACHOKE
.2byte NATIONAL_DEX_MACHOP
.2byte NATIONAL_DEX_MAGBY
.2byte NATIONAL_DEX_MAGCARGO
.2byte NATIONAL_DEX_MAGIKARP
.2byte NATIONAL_DEX_MAGMAR
.2byte NATIONAL_DEX_MAGNEMITE
.2byte NATIONAL_DEX_MAGNETON
.2byte NATIONAL_DEX_MAKUHITA
.2byte NATIONAL_DEX_MANECTRIC
.2byte NATIONAL_DEX_MANKEY
.2byte NATIONAL_DEX_MANTINE
.2byte NATIONAL_DEX_MAREEP
.2byte NATIONAL_DEX_MARILL
.2byte NATIONAL_DEX_MAROWAK
.2byte NATIONAL_DEX_MARSHTOMP
.2byte NATIONAL_DEX_MASQUERAIN
.2byte NATIONAL_DEX_MAWILE
.2byte NATIONAL_DEX_MEDICHAM
.2byte NATIONAL_DEX_MEDITITE
.2byte NATIONAL_DEX_MEGANIUM
.2byte NATIONAL_DEX_MEOWTH
.2byte NATIONAL_DEX_METAGROSS
.2byte NATIONAL_DEX_METANG
.2byte NATIONAL_DEX_METAPOD
.2byte NATIONAL_DEX_MEW
.2byte NATIONAL_DEX_MEWTWO
.2byte NATIONAL_DEX_MIGHTYENA
.2byte NATIONAL_DEX_MILOTIC
.2byte NATIONAL_DEX_MILTANK
.2byte NATIONAL_DEX_MINUN
.2byte NATIONAL_DEX_MISDREAVUS
.2byte NATIONAL_DEX_MOLTRES
.2byte NATIONAL_DEX_MR_MIME
.2byte NATIONAL_DEX_MUDKIP
.2byte NATIONAL_DEX_MUK
.2byte NATIONAL_DEX_MURKROW
.2byte NATIONAL_DEX_NATU
.2byte NATIONAL_DEX_NIDOKING
.2byte NATIONAL_DEX_NIDOQUEEN
.2byte NATIONAL_DEX_NIDORAN_F
.2byte NATIONAL_DEX_NIDORAN_M
.2byte NATIONAL_DEX_NIDORINA
.2byte NATIONAL_DEX_NIDORINO
.2byte NATIONAL_DEX_NINCADA
.2byte NATIONAL_DEX_NINETALES
.2byte NATIONAL_DEX_NINJASK
.2byte NATIONAL_DEX_NOCTOWL
.2byte NATIONAL_DEX_NOSEPASS
.2byte NATIONAL_DEX_NUMEL
.2byte NATIONAL_DEX_NUZLEAF
.2byte NATIONAL_DEX_OCTILLERY
.2byte NATIONAL_DEX_ODDISH
.2byte NATIONAL_DEX_OMANYTE
.2byte NATIONAL_DEX_OMASTAR
.2byte NATIONAL_DEX_ONIX
.2byte NATIONAL_DEX_PARAS
.2byte NATIONAL_DEX_PARASECT
.2byte NATIONAL_DEX_PELIPPER
.2byte NATIONAL_DEX_PERSIAN
.2byte NATIONAL_DEX_PHANPY
.2byte NATIONAL_DEX_PICHU
.2byte NATIONAL_DEX_PIDGEOT
.2byte NATIONAL_DEX_PIDGEOTTO
.2byte NATIONAL_DEX_PIDGEY
.2byte NATIONAL_DEX_PIKACHU
.2byte NATIONAL_DEX_PILOSWINE
.2byte NATIONAL_DEX_PINECO
.2byte NATIONAL_DEX_PINSIR
.2byte NATIONAL_DEX_PLUSLE
.2byte NATIONAL_DEX_POLITOED
.2byte NATIONAL_DEX_POLIWAG
.2byte NATIONAL_DEX_POLIWHIRL
.2byte NATIONAL_DEX_POLIWRATH
.2byte NATIONAL_DEX_PONYTA
.2byte NATIONAL_DEX_POOCHYENA
.2byte NATIONAL_DEX_PORYGON
.2byte NATIONAL_DEX_PORYGON2
.2byte NATIONAL_DEX_PRIMEAPE
.2byte NATIONAL_DEX_PSYDUCK
.2byte NATIONAL_DEX_PUPITAR
.2byte NATIONAL_DEX_QUAGSIRE
.2byte NATIONAL_DEX_QUILAVA
.2byte NATIONAL_DEX_QWILFISH
.2byte NATIONAL_DEX_RAICHU
.2byte NATIONAL_DEX_RAIKOU
.2byte NATIONAL_DEX_RALTS
.2byte NATIONAL_DEX_RAPIDASH
.2byte NATIONAL_DEX_RATICATE
.2byte NATIONAL_DEX_RATTATA
.2byte NATIONAL_DEX_RAYQUAZA
.2byte NATIONAL_DEX_REGICE
.2byte NATIONAL_DEX_REGIROCK
.2byte NATIONAL_DEX_REGISTEEL
.2byte NATIONAL_DEX_RELICANTH
.2byte NATIONAL_DEX_REMORAID
.2byte NATIONAL_DEX_RHYDON
.2byte NATIONAL_DEX_RHYHORN
.2byte NATIONAL_DEX_ROSELIA
.2byte NATIONAL_DEX_SABLEYE
.2byte NATIONAL_DEX_SALAMENCE
.2byte NATIONAL_DEX_SANDSHREW
.2byte NATIONAL_DEX_SANDSLASH
.2byte NATIONAL_DEX_SCEPTILE
.2byte NATIONAL_DEX_SCIZOR
.2byte NATIONAL_DEX_SCYTHER
.2byte NATIONAL_DEX_SEADRA
.2byte NATIONAL_DEX_SEAKING
.2byte NATIONAL_DEX_SEALEO
.2byte NATIONAL_DEX_SEEDOT
.2byte NATIONAL_DEX_SEEL
.2byte NATIONAL_DEX_SENTRET
.2byte NATIONAL_DEX_SEVIPER
.2byte NATIONAL_DEX_SHARPEDO
.2byte NATIONAL_DEX_SHEDINJA
.2byte NATIONAL_DEX_SHELGON
.2byte NATIONAL_DEX_SHELLDER
.2byte NATIONAL_DEX_SHIFTRY
.2byte NATIONAL_DEX_SHROOMISH
.2byte NATIONAL_DEX_SHUCKLE
.2byte NATIONAL_DEX_SHUPPET
.2byte NATIONAL_DEX_SILCOON
.2byte NATIONAL_DEX_SKARMORY
.2byte NATIONAL_DEX_SKIPLOOM
.2byte NATIONAL_DEX_SKITTY
.2byte NATIONAL_DEX_SLAKING
.2byte NATIONAL_DEX_SLAKOTH
.2byte NATIONAL_DEX_SLOWBRO
.2byte NATIONAL_DEX_SLOWKING
.2byte NATIONAL_DEX_SLOWPOKE
.2byte NATIONAL_DEX_SLUGMA
.2byte NATIONAL_DEX_SMEARGLE
.2byte NATIONAL_DEX_SMOOCHUM
.2byte NATIONAL_DEX_SNEASEL
.2byte NATIONAL_DEX_SNORLAX
.2byte NATIONAL_DEX_SNORUNT
.2byte NATIONAL_DEX_SNUBBULL
.2byte NATIONAL_DEX_SOLROCK
.2byte NATIONAL_DEX_SPEAROW
.2byte NATIONAL_DEX_SPHEAL
.2byte NATIONAL_DEX_SPINARAK
.2byte NATIONAL_DEX_SPINDA
.2byte NATIONAL_DEX_SPOINK
.2byte NATIONAL_DEX_SQUIRTLE
.2byte NATIONAL_DEX_STANTLER
.2byte NATIONAL_DEX_STARMIE
.2byte NATIONAL_DEX_STARYU
.2byte NATIONAL_DEX_STEELIX
.2byte NATIONAL_DEX_SUDOWOODO
.2byte NATIONAL_DEX_SUICUNE
.2byte NATIONAL_DEX_SUNFLORA
.2byte NATIONAL_DEX_SUNKERN
.2byte NATIONAL_DEX_SURSKIT
.2byte NATIONAL_DEX_SWABLU
.2byte NATIONAL_DEX_SWALOT
.2byte NATIONAL_DEX_SWAMPERT
.2byte NATIONAL_DEX_SWELLOW
.2byte NATIONAL_DEX_SWINUB
.2byte NATIONAL_DEX_TAILLOW
.2byte NATIONAL_DEX_TANGELA
.2byte NATIONAL_DEX_TAUROS
.2byte NATIONAL_DEX_TEDDIURSA
.2byte NATIONAL_DEX_TENTACOOL
.2byte NATIONAL_DEX_TENTACRUEL
.2byte NATIONAL_DEX_TOGEPI
.2byte NATIONAL_DEX_TOGETIC
.2byte NATIONAL_DEX_TORCHIC
.2byte NATIONAL_DEX_TORKOAL
.2byte NATIONAL_DEX_TOTODILE
.2byte NATIONAL_DEX_TRAPINCH
.2byte NATIONAL_DEX_TREECKO
.2byte NATIONAL_DEX_TROPIUS
.2byte NATIONAL_DEX_TYPHLOSION
.2byte NATIONAL_DEX_TYRANITAR
.2byte NATIONAL_DEX_TYROGUE
.2byte NATIONAL_DEX_UMBREON
.2byte NATIONAL_DEX_UNOWN
.2byte NATIONAL_DEX_URSARING
.2byte NATIONAL_DEX_VAPOREON
.2byte NATIONAL_DEX_VENOMOTH
.2byte NATIONAL_DEX_VENONAT
.2byte NATIONAL_DEX_VENUSAUR
.2byte NATIONAL_DEX_VIBRAVA
.2byte NATIONAL_DEX_VICTREEBEL
.2byte NATIONAL_DEX_VIGOROTH
.2byte NATIONAL_DEX_VILEPLUME
.2byte NATIONAL_DEX_VOLBEAT
.2byte NATIONAL_DEX_VOLTORB
.2byte NATIONAL_DEX_VULPIX
.2byte NATIONAL_DEX_WAILMER
.2byte NATIONAL_DEX_WAILORD
.2byte NATIONAL_DEX_WALREIN
.2byte NATIONAL_DEX_WARTORTLE
.2byte NATIONAL_DEX_WEEDLE
.2byte NATIONAL_DEX_WEEPINBELL
.2byte NATIONAL_DEX_WEEZING
.2byte NATIONAL_DEX_WHISCASH
.2byte NATIONAL_DEX_WHISMUR
.2byte NATIONAL_DEX_WIGGLYTUFF
.2byte NATIONAL_DEX_WINGULL
.2byte NATIONAL_DEX_WOBBUFFET
.2byte NATIONAL_DEX_WOOPER
.2byte NATIONAL_DEX_WURMPLE
.2byte NATIONAL_DEX_WYNAUT
.2byte NATIONAL_DEX_XATU
.2byte NATIONAL_DEX_YANMA
.2byte NATIONAL_DEX_ZANGOOSE
.2byte NATIONAL_DEX_ZAPDOS
.2byte NATIONAL_DEX_ZIGZAGOON
.2byte NATIONAL_DEX_ZUBAT
gUnknown_84442F6:: @ 84442F6
.2byte NATIONAL_DEX_GASTLY
.2byte NATIONAL_DEX_HAUNTER
.2byte NATIONAL_DEX_HOPPIP
.2byte NATIONAL_DEX_DIGLETT
.2byte NATIONAL_DEX_CASTFORM
.2byte NATIONAL_DEX_KOFFING
.2byte NATIONAL_DEX_IGGLYBUFF
.2byte NATIONAL_DEX_MISDREAVUS
.2byte NATIONAL_DEX_CHIMECHO
.2byte NATIONAL_DEX_SKIPLOOM
.2byte NATIONAL_DEX_JIRACHI
.2byte NATIONAL_DEX_SWABLU
.2byte NATIONAL_DEX_SHEDINJA
.2byte NATIONAL_DEX_TOGEPI
.2byte NATIONAL_DEX_SURSKIT
.2byte NATIONAL_DEX_PIDGEY
.2byte NATIONAL_DEX_SUNKERN
.2byte NATIONAL_DEX_BARBOACH
.2byte NATIONAL_DEX_PICHU
.2byte NATIONAL_DEX_AZURILL
.2byte NATIONAL_DEX_ROSELIA
.2byte NATIONAL_DEX_NATU
.2byte NATIONAL_DEX_SPEAROW
.2byte NATIONAL_DEX_MURKROW
.2byte NATIONAL_DEX_SHUPPET
.2byte NATIONAL_DEX_TAILLOW
.2byte NATIONAL_DEX_EXEGGCUTE
.2byte NATIONAL_DEX_TORCHIC
.2byte NATIONAL_DEX_LOTAD
.2byte NATIONAL_DEX_CATERPIE
.2byte NATIONAL_DEX_JUMPLUFF
.2byte NATIONAL_DEX_CLEFFA
.2byte NATIONAL_DEX_WEEDLE
.2byte NATIONAL_DEX_TOGETIC
.2byte NATIONAL_DEX_DRATINI
.2byte NATIONAL_DEX_RATTATA
.2byte NATIONAL_DEX_MASQUERAIN
.2byte NATIONAL_DEX_WURMPLE
.2byte NATIONAL_DEX_QWILFISH
.2byte NATIONAL_DEX_MEW
.2byte NATIONAL_DEX_SHELLDER
.2byte NATIONAL_DEX_SEEDOT
.2byte NATIONAL_DEX_DITTO
.2byte NATIONAL_DEX_BELLSPROUT
.2byte NATIONAL_DEX_PLUSLE
.2byte NATIONAL_DEX_MEOWTH
.2byte NATIONAL_DEX_MINUN
.2byte NATIONAL_DEX_SHROOMISH
.2byte NATIONAL_DEX_CELEBI
.2byte NATIONAL_DEX_CORSOLA
.2byte NATIONAL_DEX_TREECKO
.2byte NATIONAL_DEX_SPINDA
.2byte NATIONAL_DEX_UNOWN
.2byte NATIONAL_DEX_PARAS
.2byte NATIONAL_DEX_ODDISH
.2byte NATIONAL_DEX_JIGGLYPUFF
.2byte NATIONAL_DEX_NINCADA
.2byte NATIONAL_DEX_BELLOSSOM
.2byte NATIONAL_DEX_MAGNEMITE
.2byte NATIONAL_DEX_PIKACHU
.2byte NATIONAL_DEX_SMOOCHUM
.2byte NATIONAL_DEX_SENTRET
.2byte NATIONAL_DEX_WEEPINBELL
.2byte NATIONAL_DEX_CHIKORITA
.2byte NATIONAL_DEX_SWINUB
.2byte NATIONAL_DEX_EEVEE
.2byte NATIONAL_DEX_KRABBY
.2byte NATIONAL_DEX_CUBONE
.2byte NATIONAL_DEX_RALTS
.2byte NATIONAL_DEX_BULBASAUR
.2byte NATIONAL_DEX_EKANS
.2byte NATIONAL_DEX_NIDORAN_F
.2byte NATIONAL_DEX_PINECO
.2byte NATIONAL_DEX_FEEBAS
.2byte NATIONAL_DEX_OMANYTE
.2byte NATIONAL_DEX_ZUBAT
.2byte NATIONAL_DEX_CLEFAIRY
.2byte NATIONAL_DEX_MUDKIP
.2byte NATIONAL_DEX_SNUBBULL
.2byte NATIONAL_DEX_MAREEP
.2byte NATIONAL_DEX_CYNDAQUIL
.2byte NATIONAL_DEX_HORSEA
.2byte NATIONAL_DEX_CHARMANDER
.2byte NATIONAL_DEX_SUNFLORA
.2byte NATIONAL_DEX_MARILL
.2byte NATIONAL_DEX_WOOPER
.2byte NATIONAL_DEX_SPINARAK
.2byte NATIONAL_DEX_GLOOM
.2byte NATIONAL_DEX_LUVDISC
.2byte NATIONAL_DEX_TEDDIURSA
.2byte NATIONAL_DEX_NIDORAN_M
.2byte NATIONAL_DEX_SQUIRTLE
.2byte NATIONAL_DEX_WINGULL
.2byte NATIONAL_DEX_TOTODILE
.2byte NATIONAL_DEX_WEEZING
.2byte NATIONAL_DEX_VULPIX
.2byte NATIONAL_DEX_METAPOD
.2byte NATIONAL_DEX_SILCOON
.2byte NATIONAL_DEX_MAGIKARP
.2byte NATIONAL_DEX_KAKUNA
.2byte NATIONAL_DEX_GULPIN
.2byte NATIONAL_DEX_VOLTORB
.2byte NATIONAL_DEX_LEDYBA
.2byte NATIONAL_DEX_HOUNDOUR
.2byte NATIONAL_DEX_SKITTY
.2byte NATIONAL_DEX_SABLEYE
.2byte NATIONAL_DEX_MEDITITE
.2byte NATIONAL_DEX_CORPHISH
.2byte NATIONAL_DEX_AIPOM
.2byte NATIONAL_DEX_CASCOON
.2byte NATIONAL_DEX_MAWILE
.2byte NATIONAL_DEX_KABUTO
.2byte NATIONAL_DEX_WIGGLYTUFF
.2byte NATIONAL_DEX_SANDSHREW
.2byte NATIONAL_DEX_REMORAID
.2byte NATIONAL_DEX_NINJASK
.2byte NATIONAL_DEX_CHINCHOU
.2byte NATIONAL_DEX_POLIWAG
.2byte NATIONAL_DEX_ANORITH
.2byte NATIONAL_DEX_VENOMOTH
.2byte NATIONAL_DEX_BANETTE
.2byte NATIONAL_DEX_IVYSAUR
.2byte NATIONAL_DEX_FLAAFFY
.2byte NATIONAL_DEX_POOCHYENA
.2byte NATIONAL_DEX_WYNAUT
.2byte NATIONAL_DEX_DUNSPARCE
.2byte NATIONAL_DEX_XATU
.2byte NATIONAL_DEX_DUSKULL
.2byte NATIONAL_DEX_FARFETCHD
.2byte NATIONAL_DEX_TRAPINCH
.2byte NATIONAL_DEX_GOLDEEN
.2byte NATIONAL_DEX_ELECTRIKE
.2byte NATIONAL_DEX_VIBRAVA
.2byte NATIONAL_DEX_VICTREEBEL
.2byte NATIONAL_DEX_BAYLEEF
.2byte NATIONAL_DEX_DELIBIRD
.2byte NATIONAL_DEX_WHISMUR
.2byte NATIONAL_DEX_DRAGONAIR
.2byte NATIONAL_DEX_SNORUNT
.2byte NATIONAL_DEX_ZIGZAGOON
.2byte NATIONAL_DEX_ILLUMISE
.2byte NATIONAL_DEX_VOLBEAT
.2byte NATIONAL_DEX_RATICATE
.2byte NATIONAL_DEX_VILEPLUME
.2byte NATIONAL_DEX_QUILAVA
.2byte NATIONAL_DEX_CHARMELEON
.2byte NATIONAL_DEX_GROWLITHE
.2byte NATIONAL_DEX_COMBUSKEN
.2byte NATIONAL_DEX_MACHOP
.2byte NATIONAL_DEX_ABRA
.2byte NATIONAL_DEX_NIDORINO
.2byte NATIONAL_DEX_PSYDUCK
.2byte NATIONAL_DEX_SWELLOW
.2byte NATIONAL_DEX_NINETALES
.2byte NATIONAL_DEX_NIDORINA
.2byte NATIONAL_DEX_POLIWHIRL
.2byte NATIONAL_DEX_GEODUDE
.2byte NATIONAL_DEX_KIRLIA
.2byte NATIONAL_DEX_SHUCKLE
.2byte NATIONAL_DEX_ALTARIA
.2byte NATIONAL_DEX_CARVANHA
.2byte NATIONAL_DEX_TYROGUE
.2byte NATIONAL_DEX_HOOTHOOT
.2byte NATIONAL_DEX_MAGBY
.2byte NATIONAL_DEX_BALTOY
.2byte NATIONAL_DEX_GROVYLE
.2byte NATIONAL_DEX_KECLEON
.2byte NATIONAL_DEX_LANTURN
.2byte NATIONAL_DEX_WARTORTLE
.2byte NATIONAL_DEX_GOREBYSS
.2byte NATIONAL_DEX_RELICANTH
.2byte NATIONAL_DEX_ELEKID
.2byte NATIONAL_DEX_WHISCASH
.2byte NATIONAL_DEX_LILEEP
.2byte NATIONAL_DEX_NUMEL
.2byte NATIONAL_DEX_SLAKOTH
.2byte NATIONAL_DEX_JOLTEON
.2byte NATIONAL_DEX_CROCONAW
.2byte NATIONAL_DEX_FLAREON
.2byte NATIONAL_DEX_SEADRA
.2byte NATIONAL_DEX_ESPEON
.2byte NATIONAL_DEX_HUNTAIL
.2byte NATIONAL_DEX_UMBREON
.2byte NATIONAL_DEX_MARSHTOMP
.2byte NATIONAL_DEX_NUZLEAF
.2byte NATIONAL_DEX_SNEASEL
.2byte NATIONAL_DEX_MANKEY
.2byte NATIONAL_DEX_PELIPPER
.2byte NATIONAL_DEX_BEAUTIFLY
.2byte NATIONAL_DEX_OCTILLERY
.2byte NATIONAL_DEX_AZUMARILL
.2byte NATIONAL_DEX_WOBBUFFET
.2byte NATIONAL_DEX_VAPOREON
.2byte NATIONAL_DEX_SANDSLASH
.2byte NATIONAL_DEX_PARASECT
.2byte NATIONAL_DEX_BEEDRILL
.2byte NATIONAL_DEX_MUK
.2byte NATIONAL_DEX_PIDGEOTTO
.2byte NATIONAL_DEX_GRIMER
.2byte NATIONAL_DEX_RAICHU
.2byte NATIONAL_DEX_PONYTA
.2byte NATIONAL_DEX_ELECTABUZZ
.2byte NATIONAL_DEX_VENONAT
.2byte NATIONAL_DEX_SPOINK
.2byte NATIONAL_DEX_DUSCLOPS
.2byte NATIONAL_DEX_MEDICHAM
.2byte NATIONAL_DEX_DUSTOX
.2byte NATIONAL_DEX_PERSIAN
.2byte NATIONAL_DEX_BUTTERFREE
.2byte NATIONAL_DEX_PRIMEAPE
.2byte NATIONAL_DEX_DROWZEE
.2byte NATIONAL_DEX_FURRET
.2byte NATIONAL_DEX_PORYGON2
.2byte NATIONAL_DEX_LOMBRE
.2byte NATIONAL_DEX_LINOONE
.2byte NATIONAL_DEX_DELCATTY
.2byte NATIONAL_DEX_CRAWDAUNT
.2byte NATIONAL_DEX_DUGTRIO
.2byte NATIONAL_DEX_ARIADOS
.2byte NATIONAL_DEX_PHANPY
.2byte NATIONAL_DEX_POLITOED
.2byte NATIONAL_DEX_STARYU
.2byte NATIONAL_DEX_CHANSEY
.2byte NATIONAL_DEX_OMASTAR
.2byte NATIONAL_DEX_TANGELA
.2byte NATIONAL_DEX_SLUGMA
.2byte NATIONAL_DEX_HOUNDOOM
.2byte NATIONAL_DEX_LEDIAN
.2byte NATIONAL_DEX_SLOWPOKE
.2byte NATIONAL_DEX_PORYGON
.2byte NATIONAL_DEX_MIGHTYENA
.2byte NATIONAL_DEX_YANMA
.2byte NATIONAL_DEX_FEAROW
.2byte NATIONAL_DEX_SUDOWOODO
.2byte NATIONAL_DEX_SEAKING
.2byte NATIONAL_DEX_BRELOOM
.2byte NATIONAL_DEX_DODUO
.2byte NATIONAL_DEX_PIDGEOT
.2byte NATIONAL_DEX_SPHEAL
.2byte NATIONAL_DEX_CLEFABLE
.2byte NATIONAL_DEX_LATIAS
.2byte NATIONAL_DEX_MANECTRIC
.2byte NATIONAL_DEX_ZANGOOSE
.2byte NATIONAL_DEX_KABUTOPS
.2byte NATIONAL_DEX_GENGAR
.2byte NATIONAL_DEX_LOUDRED
.2byte NATIONAL_DEX_JYNX
.2byte NATIONAL_DEX_NOCTOWL
.2byte NATIONAL_DEX_GIRAFARIG
.2byte NATIONAL_DEX_BAGON
.2byte NATIONAL_DEX_MAGMAR
.2byte NATIONAL_DEX_MAROWAK
.2byte NATIONAL_DEX_TENTACOOL
.2byte NATIONAL_DEX_VIGOROTH
.2byte NATIONAL_DEX_BLISSEY
.2byte NATIONAL_DEX_ABSOL
.2byte NATIONAL_DEX_ALAKAZAM
.2byte NATIONAL_DEX_HITMONTOP
.2byte NATIONAL_DEX_GARDEVOIR
.2byte NATIONAL_DEX_GRANBULL
.2byte NATIONAL_DEX_HITMONLEE
.2byte NATIONAL_DEX_HITMONCHAN
.2byte NATIONAL_DEX_SKARMORY
.2byte NATIONAL_DEX_CACNEA
.2byte NATIONAL_DEX_BLAZIKEN
.2byte NATIONAL_DEX_SCEPTILE
.2byte NATIONAL_DEX_SEVIPER
.2byte NATIONAL_DEX_CLAMPERL
.2byte NATIONAL_DEX_ZAPDOS
.2byte NATIONAL_DEX_HERACROSS
.2byte NATIONAL_DEX_POLIWRATH
.2byte NATIONAL_DEX_MR_MIME
.2byte NATIONAL_DEX_PINSIR
.2byte NATIONAL_DEX_LUDICOLO
.2byte NATIONAL_DEX_TENTACRUEL
.2byte NATIONAL_DEX_GOLBAT
.2byte NATIONAL_DEX_MAGCARGO
.2byte NATIONAL_DEX_ARTICUNO
.2byte NATIONAL_DEX_PILOSWINE
.2byte NATIONAL_DEX_SCYTHER
.2byte NATIONAL_DEX_KADABRA
.2byte NATIONAL_DEX_SMEARGLE
.2byte NATIONAL_DEX_AERODACTYL
.2byte NATIONAL_DEX_SHIFTRY
.2byte NATIONAL_DEX_KINGLER
.2byte NATIONAL_DEX_NIDOQUEEN
.2byte NATIONAL_DEX_MAGNETON
.2byte NATIONAL_DEX_ARON
.2byte NATIONAL_DEX_LATIOS
.2byte NATIONAL_DEX_MOLTRES
.2byte NATIONAL_DEX_CRADILY
.2byte NATIONAL_DEX_DEOXYS
.2byte NATIONAL_DEX_AMPHAROS
.2byte NATIONAL_DEX_NIDOKING
.2byte NATIONAL_DEX_GLIGAR
.2byte NATIONAL_DEX_ARBOK
.2byte NATIONAL_DEX_LICKITUNG
.2byte NATIONAL_DEX_ELECTRODE
.2byte NATIONAL_DEX_ARMALDO
.2byte NATIONAL_DEX_MACHOKE
.2byte NATIONAL_DEX_STANTLER
.2byte NATIONAL_DEX_GRUMPIG
.2byte NATIONAL_DEX_LARVITAR
.2byte NATIONAL_DEX_CROBAT
.2byte NATIONAL_DEX_QUAGSIRE
.2byte NATIONAL_DEX_MILTANK
.2byte NATIONAL_DEX_HYPNO
.2byte NATIONAL_DEX_GOLDUCK
.2byte NATIONAL_DEX_CACTURNE
.2byte NATIONAL_DEX_SLOWBRO
.2byte NATIONAL_DEX_TYPHLOSION
.2byte NATIONAL_DEX_SLOWKING
.2byte NATIONAL_DEX_KANGASKHAN
.2byte NATIONAL_DEX_STARMIE
.2byte NATIONAL_DEX_SWALOT
.2byte NATIONAL_DEX_TORKOAL
.2byte NATIONAL_DEX_SWAMPERT
.2byte NATIONAL_DEX_FLYGON
.2byte NATIONAL_DEX_EXPLOUD
.2byte NATIONAL_DEX_DODRIO
.2byte NATIONAL_DEX_BLASTOISE
.2byte NATIONAL_DEX_MAKUHITA
.2byte NATIONAL_DEX_SEALEO
.2byte NATIONAL_DEX_TAUROS
.2byte NATIONAL_DEX_SHARPEDO
.2byte NATIONAL_DEX_FERALIGATR
.2byte NATIONAL_DEX_SEEL
.2byte NATIONAL_DEX_CHARIZARD
.2byte NATIONAL_DEX_RAPIDASH
.2byte NATIONAL_DEX_BELDUM
.2byte NATIONAL_DEX_NOSEPASS
.2byte NATIONAL_DEX_VENUSAUR
.2byte NATIONAL_DEX_TROPIUS
.2byte NATIONAL_DEX_MEGANIUM
.2byte NATIONAL_DEX_SALAMENCE
.2byte NATIONAL_DEX_GRAVELER
.2byte NATIONAL_DEX_CLAYDOL
.2byte NATIONAL_DEX_SHELGON
.2byte NATIONAL_DEX_RHYHORN
.2byte NATIONAL_DEX_SCIZOR
.2byte NATIONAL_DEX_DEWGONG
.2byte NATIONAL_DEX_RHYDON
.2byte NATIONAL_DEX_DONPHAN
.2byte NATIONAL_DEX_EXEGGUTOR
.2byte NATIONAL_DEX_LAIRON
.2byte NATIONAL_DEX_MEWTWO
.2byte NATIONAL_DEX_URSARING
.2byte NATIONAL_DEX_FORRETRESS
.2byte NATIONAL_DEX_MACHAMP
.2byte NATIONAL_DEX_WAILMER
.2byte NATIONAL_DEX_SLAKING
.2byte NATIONAL_DEX_CLOYSTER
.2byte NATIONAL_DEX_WALREIN
.2byte NATIONAL_DEX_PUPITAR
.2byte NATIONAL_DEX_KINGDRA
.2byte NATIONAL_DEX_SOLROCK
.2byte NATIONAL_DEX_ARCANINE
.2byte NATIONAL_DEX_MILOTIC
.2byte NATIONAL_DEX_LUNATONE
.2byte NATIONAL_DEX_REGICE
.2byte NATIONAL_DEX_RAIKOU
.2byte NATIONAL_DEX_SUICUNE
.2byte NATIONAL_DEX_ENTEI
.2byte NATIONAL_DEX_HO_OH
.2byte NATIONAL_DEX_TYRANITAR
.2byte NATIONAL_DEX_METANG
.2byte NATIONAL_DEX_REGISTEEL
.2byte NATIONAL_DEX_RAYQUAZA
.2byte NATIONAL_DEX_ONIX
.2byte NATIONAL_DEX_DRAGONITE
.2byte NATIONAL_DEX_LUGIA
.2byte NATIONAL_DEX_LAPRAS
.2byte NATIONAL_DEX_CAMERUPT
.2byte NATIONAL_DEX_MANTINE
.2byte NATIONAL_DEX_REGIROCK
.2byte NATIONAL_DEX_GYARADOS
.2byte NATIONAL_DEX_HARIYAMA
.2byte NATIONAL_DEX_GLALIE
.2byte NATIONAL_DEX_GOLEM
.2byte NATIONAL_DEX_KYOGRE
.2byte NATIONAL_DEX_AGGRON
.2byte NATIONAL_DEX_WAILORD
.2byte NATIONAL_DEX_STEELIX
.2byte NATIONAL_DEX_SNORLAX
.2byte NATIONAL_DEX_METAGROSS
.2byte NATIONAL_DEX_GROUDON
gUnknown_84445FA:: @ 84445FA
.2byte NATIONAL_DEX_DIGLETT
.2byte NATIONAL_DEX_AZURILL
.2byte NATIONAL_DEX_NATU
.2byte NATIONAL_DEX_WEEDLE
.2byte NATIONAL_DEX_PICHU
.2byte NATIONAL_DEX_CLEFFA
.2byte NATIONAL_DEX_TOGEPI
.2byte NATIONAL_DEX_CASTFORM
.2byte NATIONAL_DEX_IGGLYBUFF
.2byte NATIONAL_DEX_CATERPIE
.2byte NATIONAL_DEX_TAILLOW
.2byte NATIONAL_DEX_DITTO
.2byte NATIONAL_DEX_EEVEE
.2byte NATIONAL_DEX_ROSELIA
.2byte NATIONAL_DEX_SPEAROW
.2byte NATIONAL_DEX_PIDGEY
.2byte NATIONAL_DEX_SUNKERN
.2byte NATIONAL_DEX_SHELLDER
.2byte NATIONAL_DEX_RATTATA
.2byte NATIONAL_DEX_MAGNEMITE
.2byte NATIONAL_DEX_PARAS
.2byte NATIONAL_DEX_WURMPLE
.2byte NATIONAL_DEX_JIRACHI
.2byte NATIONAL_DEX_CUBONE
.2byte NATIONAL_DEX_MUDKIP
.2byte NATIONAL_DEX_WOOPER
.2byte NATIONAL_DEX_HORSEA
.2byte NATIONAL_DEX_MEOWTH
.2byte NATIONAL_DEX_NIDORAN_F
.2byte NATIONAL_DEX_SWINUB
.2byte NATIONAL_DEX_MEW
.2byte NATIONAL_DEX_SWABLU
.2byte NATIONAL_DEX_ARON
.2byte NATIONAL_DEX_PLUSLE
.2byte NATIONAL_DEX_MINUN
.2byte NATIONAL_DEX_EXEGGCUTE
.2byte NATIONAL_DEX_PIKACHU
.2byte NATIONAL_DEX_BELLOSSOM
.2byte NATIONAL_DEX_GULPIN
.2byte NATIONAL_DEX_ZIGZAGOON
.2byte NATIONAL_DEX_SHROOMISH
.2byte NATIONAL_DEX_OMANYTE
.2byte NATIONAL_DEX_CACNEA
.2byte NATIONAL_DEX_KRABBY
.2byte NATIONAL_DEX_RALTS
.2byte NATIONAL_DEX_HOPPIP
.2byte NATIONAL_DEX_TORCHIC
.2byte NATIONAL_DEX_CLAMPERL
.2byte NATIONAL_DEX_GEODUDE
.2byte NATIONAL_DEX_MARILL
.2byte NATIONAL_DEX_BARBOACH
.2byte NATIONAL_DEX_SMOOCHUM
.2byte NATIONAL_DEX_VOLTORB
.2byte NATIONAL_DEX_NINCADA
.2byte NATIONAL_DEX_SABLEYE
.2byte NATIONAL_DEX_MURKROW
.2byte NATIONAL_DEX_QWILFISH
.2byte NATIONAL_DEX_SQUIRTLE
.2byte NATIONAL_DEX_TREECKO
.2byte NATIONAL_DEX_BALTOY
.2byte NATIONAL_DEX_ODDISH
.2byte NATIONAL_DEX_LOTAD
.2byte NATIONAL_DEX_JIGGLYPUFF
.2byte NATIONAL_DEX_SURSKIT
.2byte NATIONAL_DEX_CYNDAQUIL
.2byte NATIONAL_DEX_KABUTO
.2byte NATIONAL_DEX_LINOONE
.2byte NATIONAL_DEX_TORKOAL
.2byte NATIONAL_DEX_NIDORAN_M
.2byte NATIONAL_DEX_SPINARAK
.2byte NATIONAL_DEX_MANKEY
.2byte NATIONAL_DEX_SEEDOT
.2byte NATIONAL_DEX_POOCHYENA
.2byte NATIONAL_DEX_PHANPY
.2byte NATIONAL_DEX_UNOWN
.2byte NATIONAL_DEX_CHINCHOU
.2byte NATIONAL_DEX_PORYGON2
.2byte NATIONAL_DEX_POLIWAG
.2byte NATIONAL_DEX_BAGON
.2byte NATIONAL_DEX_FEEBAS
.2byte NATIONAL_DEX_SHUPPET
.2byte NATIONAL_DEX_TOTODILE
.2byte NATIONAL_DEX_CELEBI
.2byte NATIONAL_DEX_WYNAUT
.2byte NATIONAL_DEX_SANDSHREW
.2byte NATIONAL_DEX_CHIMECHO
.2byte NATIONAL_DEX_LUVDISC
.2byte NATIONAL_DEX_HOUNDOUR
.2byte NATIONAL_DEX_SILCOON
.2byte NATIONAL_DEX_ELECTRIKE
.2byte NATIONAL_DEX_CHARMANDER
.2byte NATIONAL_DEX_MEDITITE
.2byte NATIONAL_DEX_WINGULL
.2byte NATIONAL_DEX_REMORAID
.2byte NATIONAL_DEX_CORPHISH
.2byte NATIONAL_DEX_CORSOLA
.2byte NATIONAL_DEX_ILLUMISE
.2byte NATIONAL_DEX_SNUBBULL
.2byte NATIONAL_DEX_VULPIX
.2byte NATIONAL_DEX_LARVITAR
.2byte NATIONAL_DEX_BELDUM
.2byte NATIONAL_DEX_WHISMUR
.2byte NATIONAL_DEX_PINECO
.2byte NATIONAL_DEX_ELEKID
.2byte NATIONAL_DEX_CLEFAIRY
.2byte NATIONAL_DEX_SHUCKLE
.2byte NATIONAL_DEX_TEDDIURSA
.2byte NATIONAL_DEX_KAKUNA
.2byte NATIONAL_DEX_SKITTY
.2byte NATIONAL_DEX_TOGETIC
.2byte NATIONAL_DEX_GOLDEEN
.2byte NATIONAL_DEX_MAWILE
.2byte NATIONAL_DEX_MAREEP
.2byte NATIONAL_DEX_SKIPLOOM
.2byte NATIONAL_DEX_KOFFING
.2byte NATIONAL_DEX_DUGTRIO
.2byte NATIONAL_DEX_CASCOON
.2byte NATIONAL_DEX_NUMEL
.2byte NATIONAL_DEX_ANORITH
.2byte NATIONAL_DEX_VOLBEAT
.2byte NATIONAL_DEX_HOOTHOOT
.2byte NATIONAL_DEX_TRAPINCH
.2byte NATIONAL_DEX_SPOINK
.2byte NATIONAL_DEX_METAPOD
.2byte NATIONAL_DEX_BELLSPROUT
.2byte NATIONAL_DEX_SNORUNT
.2byte NATIONAL_DEX_RATICATE
.2byte NATIONAL_DEX_MARSHTOMP
.2byte NATIONAL_DEX_SWELLOW
.2byte NATIONAL_DEX_MAGBY
.2byte NATIONAL_DEX_GROWLITHE
.2byte NATIONAL_DEX_MISDREAVUS
.2byte NATIONAL_DEX_BULBASAUR
.2byte NATIONAL_DEX_TYROGUE
.2byte NATIONAL_DEX_SLUGMA
.2byte NATIONAL_DEX_SLAKOTH
.2byte NATIONAL_DEX_KIRLIA
.2byte NATIONAL_DEX_AIPOM
.2byte NATIONAL_DEX_JOLTEON
.2byte NATIONAL_DEX_NIDORINA
.2byte NATIONAL_DEX_AZUMARILL
.2byte NATIONAL_DEX_SHEDINJA
.2byte NATIONAL_DEX_MACHOP
.2byte NATIONAL_DEX_NINJASK
.2byte NATIONAL_DEX_MASQUERAIN
.2byte NATIONAL_DEX_DUSKULL
.2byte NATIONAL_DEX_SUNFLORA
.2byte NATIONAL_DEX_JUMPLUFF
.2byte NATIONAL_DEX_STARYU
.2byte NATIONAL_DEX_FLAAFFY
.2byte NATIONAL_DEX_SPHEAL
.2byte NATIONAL_DEX_PSYDUCK
.2byte NATIONAL_DEX_MAGCARGO
.2byte NATIONAL_DEX_FARFETCHD
.2byte NATIONAL_DEX_ZUBAT
.2byte NATIONAL_DEX_PORYGON
.2byte NATIONAL_DEX_SENTRET
.2byte NATIONAL_DEX_CARVANHA
.2byte NATIONAL_DEX_GLOOM
.2byte NATIONAL_DEX_RAICHU
.2byte NATIONAL_DEX_MAGIKARP
.2byte NATIONAL_DEX_SNEASEL
.2byte NATIONAL_DEX_LAIRON
.2byte NATIONAL_DEX_COMBUSKEN
.2byte NATIONAL_DEX_OCTILLERY
.2byte NATIONAL_DEX_NIDORINO
.2byte NATIONAL_DEX_FLAREON
.2byte NATIONAL_DEX_DELIBIRD
.2byte NATIONAL_DEX_TENTACOOL
.2byte NATIONAL_DEX_ABRA
.2byte NATIONAL_DEX_GROVYLE
.2byte NATIONAL_DEX_WHISCASH
.2byte NATIONAL_DEX_QUILAVA
.2byte NATIONAL_DEX_ESPEON
.2byte NATIONAL_DEX_GRIMER
.2byte NATIONAL_DEX_CHIKORITA
.2byte NATIONAL_DEX_GRUMPIG
.2byte NATIONAL_DEX_NOSEPASS
.2byte NATIONAL_DEX_PERSIAN
.2byte NATIONAL_DEX_MIGHTYENA
.2byte NATIONAL_DEX_VENONAT
.2byte NATIONAL_DEX_MAGNETON
.2byte NATIONAL_DEX_PONYTA
.2byte NATIONAL_DEX_MAKUHITA
.2byte NATIONAL_DEX_LUNATONE
.2byte NATIONAL_DEX_SANDSLASH
.2byte NATIONAL_DEX_DROWZEE
.2byte NATIONAL_DEX_TANGELA
.2byte NATIONAL_DEX_PRIMEAPE
.2byte NATIONAL_DEX_LEDYBA
.2byte NATIONAL_DEX_WIGGLYTUFF
.2byte NATIONAL_DEX_PARASECT
.2byte NATIONAL_DEX_OMASTAR
.2byte NATIONAL_DEX_LOUDRED
.2byte NATIONAL_DEX_WARTORTLE
.2byte NATIONAL_DEX_GRAVELER
.2byte NATIONAL_DEX_UMBREON
.2byte NATIONAL_DEX_LILEEP
.2byte NATIONAL_DEX_POLIWHIRL
.2byte NATIONAL_DEX_VAPOREON
.2byte NATIONAL_DEX_BEEDRILL
.2byte NATIONAL_DEX_MAROWAK
.2byte NATIONAL_DEX_WEEPINBELL
.2byte NATIONAL_DEX_RELICANTH
.2byte NATIONAL_DEX_RHYHORN
.2byte NATIONAL_DEX_IVYSAUR
.2byte NATIONAL_DEX_KECLEON
.2byte NATIONAL_DEX_NUZLEAF
.2byte NATIONAL_DEX_BEAUTIFLY
.2byte NATIONAL_DEX_PIDGEOTTO
.2byte NATIONAL_DEX_ARIADOS
.2byte NATIONAL_DEX_SEEL
.2byte NATIONAL_DEX_POLITOED
.2byte NATIONAL_DEX_CROCONAW
.2byte NATIONAL_DEX_CHANSEY
.2byte NATIONAL_DEX_BANETTE
.2byte NATIONAL_DEX_DONPHAN
.2byte NATIONAL_DEX_STARMIE
.2byte NATIONAL_DEX_CHARMELEON
.2byte NATIONAL_DEX_PILOSWINE
.2byte NATIONAL_DEX_BUTTERFREE
.2byte NATIONAL_DEX_VIBRAVA
.2byte NATIONAL_DEX_ELECTABUZZ
.2byte NATIONAL_DEX_CRAWDAUNT
.2byte NATIONAL_DEX_DELCATTY
.2byte NATIONAL_DEX_ALTARIA
.2byte NATIONAL_DEX_SHELGON
.2byte NATIONAL_DEX_NINETALES
.2byte NATIONAL_DEX_GLIGAR
.2byte NATIONAL_DEX_SEALEO
.2byte NATIONAL_DEX_SPINDA
.2byte NATIONAL_DEX_PUPITAR
.2byte NATIONAL_DEX_SLOWPOKE
.2byte NATIONAL_DEX_SOLROCK
.2byte NATIONAL_DEX_MILTANK
.2byte NATIONAL_DEX_FEAROW
.2byte NATIONAL_DEX_VILEPLUME
.2byte NATIONAL_DEX_MUK
.2byte NATIONAL_DEX_FORRETRESS
.2byte NATIONAL_DEX_SUDOWOODO
.2byte NATIONAL_DEX_ABSOL
.2byte NATIONAL_DEX_YANMA
.2byte NATIONAL_DEX_DUSTOX
.2byte NATIONAL_DEX_LICKITUNG
.2byte NATIONAL_DEX_SMEARGLE
.2byte NATIONAL_DEX_LANTURN
.2byte NATIONAL_DEX_ELECTRODE
.2byte NATIONAL_DEX_LOMBRE
.2byte NATIONAL_DEX_BRELOOM
.2byte NATIONAL_DEX_BAYLEEF
.2byte NATIONAL_DEX_SEADRA
.2byte NATIONAL_DEX_WEEZING
.2byte NATIONAL_DEX_PELIPPER
.2byte NATIONAL_DEX_METANG
.2byte NATIONAL_DEX_NIDOQUEEN
.2byte NATIONAL_DEX_CACTURNE
.2byte NATIONAL_DEX_SHIFTRY
.2byte NATIONAL_DEX_MEDICHAM
.2byte NATIONAL_DEX_ZANGOOSE
.2byte NATIONAL_DEX_KABUTOPS
.2byte NATIONAL_DEX_KINGLER
.2byte NATIONAL_DEX_KADABRA
.2byte NATIONAL_DEX_SEAKING
.2byte NATIONAL_DEX_CLEFABLE
.2byte NATIONAL_DEX_MAGMAR
.2byte NATIONAL_DEX_WOBBUFFET
.2byte NATIONAL_DEX_GASTLY
.2byte NATIONAL_DEX_MR_MIME
.2byte NATIONAL_DEX_POLIWRATH
.2byte NATIONAL_DEX_TAUROS
.2byte NATIONAL_DEX_LATIAS
.2byte NATIONAL_DEX_AMPHAROS
.2byte NATIONAL_DEX_VIGOROTH
.2byte NATIONAL_DEX_LEDIAN
.2byte NATIONAL_DEX_GOLEM
.2byte NATIONAL_DEX_WALREIN
.2byte NATIONAL_DEX_DODUO
.2byte NATIONAL_DEX_HOUNDOOM
.2byte NATIONAL_DEX_NIDOKING
.2byte NATIONAL_DEX_JYNX
.2byte NATIONAL_DEX_HITMONCHAN
.2byte NATIONAL_DEX_STANTLER
.2byte NATIONAL_DEX_GRANBULL
.2byte NATIONAL_DEX_HITMONTOP
.2byte NATIONAL_DEX_QUAGSIRE
.2byte NATIONAL_DEX_CLAYDOL
.2byte NATIONAL_DEX_SWAMPERT
.2byte NATIONAL_DEX_BLISSEY
.2byte NATIONAL_DEX_LUDICOLO
.2byte NATIONAL_DEX_EXPLOUD
.2byte NATIONAL_DEX_DUNSPARCE
.2byte NATIONAL_DEX_PINSIR
.2byte NATIONAL_DEX_CLOYSTER
.2byte NATIONAL_DEX_MACHOKE
.2byte NATIONAL_DEX_GIRAFARIG
.2byte NATIONAL_DEX_PIDGEOT
.2byte NATIONAL_DEX_XATU
.2byte NATIONAL_DEX_CRADILY
.2byte NATIONAL_DEX_HITMONLEE
.2byte NATIONAL_DEX_VENOMOTH
.2byte NATIONAL_DEX_GENGAR
.2byte NATIONAL_DEX_HERACROSS
.2byte NATIONAL_DEX_GLALIE
.2byte NATIONAL_DEX_SCYTHER
.2byte NATIONAL_DEX_SALAMENCE
.2byte NATIONAL_DEX_MANECTRIC
.2byte NATIONAL_DEX_ARMALDO
.2byte NATIONAL_DEX_ALAKAZAM
.2byte NATIONAL_DEX_HYPNO
.2byte NATIONAL_DEX_NOCTOWL
.2byte NATIONAL_DEX_TENTACRUEL
.2byte NATIONAL_DEX_DUSCLOPS
.2byte NATIONAL_DEX_ZAPDOS
.2byte NATIONAL_DEX_GOLBAT
.2byte NATIONAL_DEX_METAGROSS
.2byte NATIONAL_DEX_GARDEVOIR
.2byte NATIONAL_DEX_BLASTOISE
.2byte NATIONAL_DEX_SLOWBRO
.2byte NATIONAL_DEX_HAUNTER
.2byte NATIONAL_DEX_MACHAMP
.2byte NATIONAL_DEX_REGIROCK
.2byte NATIONAL_DEX_SWALOT
.2byte NATIONAL_DEX_SCEPTILE
.2byte NATIONAL_DEX_SKARMORY
.2byte NATIONAL_DEX_GOLDUCK
.2byte NATIONAL_DEX_DEOXYS
.2byte NATIONAL_DEX_VICTREEBEL
.2byte NATIONAL_DEX_RAPIDASH
.2byte NATIONAL_DEX_CHARIZARD
.2byte NATIONAL_DEX_HUNTAIL
.2byte NATIONAL_DEX_DEWGONG
.2byte NATIONAL_DEX_ARTICUNO
.2byte NATIONAL_DEX_TYPHLOSION
.2byte NATIONAL_DEX_AERODACTYL
.2byte NATIONAL_DEX_GOREBYSS
.2byte NATIONAL_DEX_URSARING
.2byte NATIONAL_DEX_MEGANIUM
.2byte NATIONAL_DEX_REGICE
.2byte NATIONAL_DEX_SCIZOR
.2byte NATIONAL_DEX_KINGDRA
.2byte NATIONAL_DEX_DRATINI
.2byte NATIONAL_DEX_DODRIO
.2byte NATIONAL_DEX_SHARPEDO
.2byte NATIONAL_DEX_CROBAT
.2byte NATIONAL_DEX_FURRET
.2byte NATIONAL_DEX_ARCANINE
.2byte NATIONAL_DEX_RAIKOU
.2byte NATIONAL_DEX_BLAZIKEN
.2byte NATIONAL_DEX_CAMERUPT
.2byte NATIONAL_DEX_RHYDON
.2byte NATIONAL_DEX_REGISTEEL
.2byte NATIONAL_DEX_EKANS
.2byte NATIONAL_DEX_FLYGON
.2byte NATIONAL_DEX_TROPIUS
.2byte NATIONAL_DEX_LATIOS
.2byte NATIONAL_DEX_SUICUNE
.2byte NATIONAL_DEX_MOLTRES
.2byte NATIONAL_DEX_VENUSAUR
.2byte NATIONAL_DEX_EXEGGUTOR
.2byte NATIONAL_DEX_SLOWKING
.2byte NATIONAL_DEX_TYRANITAR
.2byte NATIONAL_DEX_SLAKING
.2byte NATIONAL_DEX_WAILMER
.2byte NATIONAL_DEX_MEWTWO
.2byte NATIONAL_DEX_AGGRON
.2byte NATIONAL_DEX_SNORLAX
.2byte NATIONAL_DEX_MANTINE
.2byte NATIONAL_DEX_ENTEI
.2byte NATIONAL_DEX_DRAGONITE
.2byte NATIONAL_DEX_KANGASKHAN
.2byte NATIONAL_DEX_HARIYAMA
.2byte NATIONAL_DEX_FERALIGATR
.2byte NATIONAL_DEX_LAPRAS
.2byte NATIONAL_DEX_SEVIPER
.2byte NATIONAL_DEX_ARBOK
.2byte NATIONAL_DEX_GROUDON
.2byte NATIONAL_DEX_HO_OH
.2byte NATIONAL_DEX_DRAGONAIR
.2byte NATIONAL_DEX_KYOGRE
.2byte NATIONAL_DEX_LUGIA
.2byte NATIONAL_DEX_MILOTIC
.2byte NATIONAL_DEX_GYARADOS
.2byte NATIONAL_DEX_RAYQUAZA
.2byte NATIONAL_DEX_ONIX
.2byte NATIONAL_DEX_STEELIX
.2byte NATIONAL_DEX_WAILORD
gUnknown_84448FE:: @ 84448FE
.2byte NATIONAL_DEX_RATTATA
.2byte NATIONAL_DEX_RATICATE
.2byte NATIONAL_DEX_CLEFAIRY
.2byte NATIONAL_DEX_CLEFABLE
.2byte NATIONAL_DEX_JIGGLYPUFF
.2byte NATIONAL_DEX_WIGGLYTUFF
.2byte NATIONAL_DEX_MEOWTH
.2byte NATIONAL_DEX_PERSIAN
.2byte NATIONAL_DEX_LICKITUNG
.2byte NATIONAL_DEX_CHANSEY
.2byte NATIONAL_DEX_KANGASKHAN
.2byte NATIONAL_DEX_TAUROS
.2byte NATIONAL_DEX_DITTO
.2byte NATIONAL_DEX_EEVEE
.2byte NATIONAL_DEX_PORYGON
.2byte NATIONAL_DEX_SNORLAX
.2byte NATIONAL_DEX_SENTRET
.2byte NATIONAL_DEX_FURRET
.2byte NATIONAL_DEX_CLEFFA
.2byte NATIONAL_DEX_IGGLYBUFF
.2byte NATIONAL_DEX_TOGEPI
.2byte NATIONAL_DEX_AIPOM
.2byte NATIONAL_DEX_DUNSPARCE
.2byte NATIONAL_DEX_SNUBBULL
.2byte NATIONAL_DEX_GRANBULL
.2byte NATIONAL_DEX_TEDDIURSA
.2byte NATIONAL_DEX_URSARING
.2byte NATIONAL_DEX_PORYGON2
.2byte NATIONAL_DEX_STANTLER
.2byte NATIONAL_DEX_SMEARGLE
.2byte NATIONAL_DEX_MILTANK
.2byte NATIONAL_DEX_BLISSEY
.2byte NATIONAL_DEX_VIGOROTH
.2byte NATIONAL_DEX_SLAKING
.2byte NATIONAL_DEX_SEALEO
.2byte NATIONAL_DEX_WALREIN
.2byte NATIONAL_DEX_CLAMPERL
.2byte NATIONAL_DEX_LUVDISC
.2byte NATIONAL_DEX_BAGON
.2byte NATIONAL_DEX_SHELGON
.2byte NATIONAL_DEX_MILOTIC
.2byte NATIONAL_DEX_ROSELIA
.2byte NATIONAL_DEX_GULPIN
.2byte NATIONAL_DEX_MEDICHAM
.2byte NATIONAL_DEX_LATIAS
.2byte NATIONAL_DEX_JIRACHI
.2byte NATIONAL_DEX_SWALOT
.2byte NATIONAL_DEX_TREECKO
.2byte NATIONAL_DEX_GROVYLE
.2byte NATIONAL_DEX_SCEPTILE
.2byte NATIONAL_DEX_TORCHIC
.2byte NATIONAL_DEX_COMBUSKEN
.2byte NATIONAL_DEX_BLAZIKEN
.2byte NATIONAL_DEX_MUDKIP
.2byte NATIONAL_DEX_MARSHTOMP
.2byte NATIONAL_DEX_SWAMPERT
.2byte NATIONAL_DEX_POOCHYENA
.2byte NATIONAL_DEX_MIGHTYENA
.2byte NATIONAL_DEX_ZIGZAGOON
.2byte NATIONAL_DEX_LINOONE
.2byte NATIONAL_DEX_WURMPLE
.2byte NATIONAL_DEX_SILCOON
.2byte NATIONAL_DEX_BEAUTIFLY
.2byte NATIONAL_DEX_CASCOON
.2byte NATIONAL_DEX_DUSTOX
.2byte NATIONAL_DEX_LOTAD
.2byte NATIONAL_DEX_LOMBRE
.2byte NATIONAL_DEX_LUDICOLO
.2byte NATIONAL_DEX_SEEDOT
.2byte NATIONAL_DEX_NUZLEAF
.2byte NATIONAL_DEX_SHIFTRY
.2byte NATIONAL_DEX_TAILLOW
.2byte NATIONAL_DEX_PIDGEY
.2byte NATIONAL_DEX_PIDGEOTTO
.2byte NATIONAL_DEX_PIDGEOT
.2byte NATIONAL_DEX_SPEAROW
.2byte NATIONAL_DEX_FEAROW
.2byte NATIONAL_DEX_FARFETCHD
.2byte NATIONAL_DEX_DODUO
.2byte NATIONAL_DEX_DODRIO
.2byte NATIONAL_DEX_HOOTHOOT
.2byte NATIONAL_DEX_NOCTOWL
.2byte NATIONAL_DEX_TOGETIC
.2byte NATIONAL_DEX_ARON
.2byte NATIONAL_DEX_LAIRON
.2byte NATIONAL_DEX_CHIMECHO
.2byte NATIONAL_DEX_GIRAFARIG
.2byte NATIONAL_DEX_MANKEY
.2byte NATIONAL_DEX_PRIMEAPE
.2byte NATIONAL_DEX_MACHOP
.2byte NATIONAL_DEX_MACHOKE
.2byte NATIONAL_DEX_MACHAMP
.2byte NATIONAL_DEX_HITMONLEE
.2byte NATIONAL_DEX_HITMONCHAN
.2byte NATIONAL_DEX_TYROGUE
.2byte NATIONAL_DEX_HITMONTOP
.2byte NATIONAL_DEX_ZANGOOSE
.2byte NATIONAL_DEX_SEVIPER
.2byte NATIONAL_DEX_DUSCLOPS
.2byte NATIONAL_DEX_TROPIUS
.2byte NATIONAL_DEX_EKANS
.2byte NATIONAL_DEX_ARBOK
.2byte NATIONAL_DEX_NIDORAN_F
.2byte NATIONAL_DEX_NIDORINA
.2byte NATIONAL_DEX_NIDORAN_M
.2byte NATIONAL_DEX_NIDORINO
.2byte NATIONAL_DEX_GRIMER
.2byte NATIONAL_DEX_MUK
.2byte NATIONAL_DEX_KOFFING
.2byte NATIONAL_DEX_WEEZING
.2byte NATIONAL_DEX_HUNTAIL
.2byte NATIONAL_DEX_GOREBYSS
.2byte NATIONAL_DEX_REGISTEEL
.2byte NATIONAL_DEX_ZUBAT
.2byte NATIONAL_DEX_GOLBAT
.2byte NATIONAL_DEX_CROBAT
.2byte NATIONAL_DEX_NIDOQUEEN
.2byte NATIONAL_DEX_NIDOKING
.2byte NATIONAL_DEX_SANDSHREW
.2byte NATIONAL_DEX_SANDSLASH
.2byte NATIONAL_DEX_DIGLETT
.2byte NATIONAL_DEX_DUGTRIO
.2byte NATIONAL_DEX_CUBONE
.2byte NATIONAL_DEX_MAROWAK
.2byte NATIONAL_DEX_PHANPY
.2byte NATIONAL_DEX_DONPHAN
.2byte NATIONAL_DEX_CACTURNE
.2byte NATIONAL_DEX_OLD_UNOWN_T
.2byte NATIONAL_DEX_GLIGAR
.2byte NATIONAL_DEX_RHYHORN
.2byte NATIONAL_DEX_RHYDON
.2byte NATIONAL_DEX_CARVANHA
.2byte NATIONAL_DEX_SHARPEDO
.2byte NATIONAL_DEX_SWABLU
.2byte NATIONAL_DEX_ALTARIA
.2byte NATIONAL_DEX_SUDOWOODO
.2byte NATIONAL_DEX_WAILMER
.2byte NATIONAL_DEX_OLD_UNOWN_P
.2byte NATIONAL_DEX_AERODACTYL
.2byte NATIONAL_DEX_GEODUDE
.2byte NATIONAL_DEX_GRAVELER
.2byte NATIONAL_DEX_GOLEM
.2byte NATIONAL_DEX_ONIX
.2byte NATIONAL_DEX_LARVITAR
.2byte NATIONAL_DEX_PUPITAR
.2byte NATIONAL_DEX_OLD_UNOWN_E
.2byte NATIONAL_DEX_OLD_UNOWN_F
.2byte NATIONAL_DEX_OMANYTE
.2byte NATIONAL_DEX_OMASTAR
.2byte NATIONAL_DEX_KABUTO
.2byte NATIONAL_DEX_KABUTOPS
.2byte NATIONAL_DEX_OLD_UNOWN_C
.2byte NATIONAL_DEX_OLD_UNOWN_D
.2byte NATIONAL_DEX_ARMALDO
.2byte NATIONAL_DEX_FEEBAS
.2byte NATIONAL_DEX_TYRANITAR
.2byte NATIONAL_DEX_CATERPIE
.2byte NATIONAL_DEX_METAPOD
.2byte NATIONAL_DEX_PINSIR
.2byte NATIONAL_DEX_PINECO
.2byte NATIONAL_DEX_NINCADA
.2byte NATIONAL_DEX_NINJASK
.2byte NATIONAL_DEX_WHISMUR
.2byte NATIONAL_DEX_DEOXYS
.2byte NATIONAL_DEX_OLD_UNOWN_B
.2byte NATIONAL_DEX_HERACROSS
.2byte NATIONAL_DEX_BUTTERFREE
.2byte NATIONAL_DEX_SCYTHER
.2byte NATIONAL_DEX_LEDYBA
.2byte NATIONAL_DEX_LEDIAN
.2byte NATIONAL_DEX_YANMA
.2byte NATIONAL_DEX_SHEDINJA
.2byte NATIONAL_DEX_MINUN
.2byte NATIONAL_DEX_SABLEYE
.2byte NATIONAL_DEX_WEEDLE
.2byte NATIONAL_DEX_KAKUNA
.2byte NATIONAL_DEX_BEEDRILL
.2byte NATIONAL_DEX_VENONAT
.2byte NATIONAL_DEX_VENOMOTH
.2byte NATIONAL_DEX_SPINARAK
.2byte NATIONAL_DEX_ARIADOS
.2byte NATIONAL_DEX_LOUDRED
.2byte NATIONAL_DEX_DELCATTY
.2byte NATIONAL_DEX_SHUCKLE
.2byte NATIONAL_DEX_MAWILE
.2byte NATIONAL_DEX_FORRETRESS
.2byte NATIONAL_DEX_SCIZOR
.2byte NATIONAL_DEX_PLUSLE
.2byte NATIONAL_DEX_PARAS
.2byte NATIONAL_DEX_PARASECT
.2byte NATIONAL_DEX_MISDREAVUS
.2byte NATIONAL_DEX_REGIROCK
.2byte NATIONAL_DEX_REGICE
.2byte NATIONAL_DEX_SNORUNT
.2byte NATIONAL_DEX_GLALIE
.2byte NATIONAL_DEX_GASTLY
.2byte NATIONAL_DEX_HAUNTER
.2byte NATIONAL_DEX_GENGAR
.2byte NATIONAL_DEX_DUSKULL
.2byte NATIONAL_DEX_OLD_UNOWN_R
.2byte NATIONAL_DEX_SKARMORY
.2byte NATIONAL_DEX_STEELIX
.2byte NATIONAL_DEX_KYOGRE
.2byte NATIONAL_DEX_GROUDON
.2byte NATIONAL_DEX_RAYQUAZA
.2byte NATIONAL_DEX_OLD_UNOWN_M
.2byte NATIONAL_DEX_OLD_UNOWN_N
.2byte NATIONAL_DEX_OLD_UNOWN_O
.2byte NATIONAL_DEX_OLD_UNOWN_X
.2byte NATIONAL_DEX_CHARMANDER
.2byte NATIONAL_DEX_CHARMELEON
.2byte NATIONAL_DEX_VULPIX
.2byte NATIONAL_DEX_NINETALES
.2byte NATIONAL_DEX_GROWLITHE
.2byte NATIONAL_DEX_ARCANINE
.2byte NATIONAL_DEX_PONYTA
.2byte NATIONAL_DEX_RAPIDASH
.2byte NATIONAL_DEX_MAGMAR
.2byte NATIONAL_DEX_FLAREON
.2byte NATIONAL_DEX_CYNDAQUIL
.2byte NATIONAL_DEX_QUILAVA
.2byte NATIONAL_DEX_TYPHLOSION
.2byte NATIONAL_DEX_SLUGMA
.2byte NATIONAL_DEX_MAGBY
.2byte NATIONAL_DEX_ENTEI
.2byte NATIONAL_DEX_RALTS
.2byte NATIONAL_DEX_WAILORD
.2byte NATIONAL_DEX_KIRLIA
.2byte NATIONAL_DEX_GARDEVOIR
.2byte NATIONAL_DEX_CHARIZARD
.2byte NATIONAL_DEX_MOLTRES
.2byte NATIONAL_DEX_HO_OH
.2byte NATIONAL_DEX_BARBOACH
.2byte NATIONAL_DEX_WHISCASH
.2byte NATIONAL_DEX_MAGCARGO
.2byte NATIONAL_DEX_SQUIRTLE
.2byte NATIONAL_DEX_WARTORTLE
.2byte NATIONAL_DEX_BLASTOISE
.2byte NATIONAL_DEX_PSYDUCK
.2byte NATIONAL_DEX_GOLDUCK
.2byte NATIONAL_DEX_POLIWAG
.2byte NATIONAL_DEX_POLIWHIRL
.2byte NATIONAL_DEX_SEEL
.2byte NATIONAL_DEX_SHELLDER
.2byte NATIONAL_DEX_KRABBY
.2byte NATIONAL_DEX_KINGLER
.2byte NATIONAL_DEX_HORSEA
.2byte NATIONAL_DEX_SEADRA
.2byte NATIONAL_DEX_GOLDEEN
.2byte NATIONAL_DEX_SEAKING
.2byte NATIONAL_DEX_STARYU
.2byte NATIONAL_DEX_MAGIKARP
.2byte NATIONAL_DEX_VAPOREON
.2byte NATIONAL_DEX_TOTODILE
.2byte NATIONAL_DEX_CROCONAW
.2byte NATIONAL_DEX_FERALIGATR
.2byte NATIONAL_DEX_MARILL
.2byte NATIONAL_DEX_AZUMARILL
.2byte NATIONAL_DEX_POLITOED
.2byte NATIONAL_DEX_REMORAID
.2byte NATIONAL_DEX_OCTILLERY
.2byte NATIONAL_DEX_SUICUNE
.2byte NATIONAL_DEX_SURSKIT
.2byte NATIONAL_DEX_VOLBEAT
.2byte NATIONAL_DEX_ILLUMISE
.2byte NATIONAL_DEX_GRUMPIG
.2byte NATIONAL_DEX_TRAPINCH
.2byte NATIONAL_DEX_VIBRAVA
.2byte NATIONAL_DEX_SALAMENCE
.2byte NATIONAL_DEX_BELDUM
.2byte NATIONAL_DEX_METANG
.2byte NATIONAL_DEX_SPOINK
.2byte NATIONAL_DEX_OLD_UNOWN_S
.2byte NATIONAL_DEX_POLIWRATH
.2byte NATIONAL_DEX_GYARADOS
.2byte NATIONAL_DEX_MANTINE
.2byte NATIONAL_DEX_ELECTRIKE
.2byte NATIONAL_DEX_MANECTRIC
.2byte NATIONAL_DEX_TENTACOOL
.2byte NATIONAL_DEX_TENTACRUEL
.2byte NATIONAL_DEX_QWILFISH
.2byte NATIONAL_DEX_WOOPER
.2byte NATIONAL_DEX_QUAGSIRE
.2byte NATIONAL_DEX_MASQUERAIN
.2byte NATIONAL_DEX_SHROOMISH
.2byte NATIONAL_DEX_CAMERUPT
.2byte NATIONAL_DEX_TORKOAL
.2byte NATIONAL_DEX_CORSOLA
.2byte NATIONAL_DEX_LATIOS
.2byte NATIONAL_DEX_EXPLOUD
.2byte NATIONAL_DEX_MAKUHITA
.2byte NATIONAL_DEX_HARIYAMA
.2byte NATIONAL_DEX_CHINCHOU
.2byte NATIONAL_DEX_LANTURN
.2byte NATIONAL_DEX_SLOWPOKE
.2byte NATIONAL_DEX_SLOWBRO
.2byte NATIONAL_DEX_STARMIE
.2byte NATIONAL_DEX_SLOWKING
.2byte NATIONAL_DEX_DEWGONG
.2byte NATIONAL_DEX_CLOYSTER
.2byte NATIONAL_DEX_LAPRAS
.2byte NATIONAL_DEX_KINGDRA
.2byte NATIONAL_DEX_FLYGON
.2byte NATIONAL_DEX_CACNEA
.2byte NATIONAL_DEX_SPINDA
.2byte NATIONAL_DEX_TANGELA
.2byte NATIONAL_DEX_CHIKORITA
.2byte NATIONAL_DEX_BAYLEEF
.2byte NATIONAL_DEX_MEGANIUM
.2byte NATIONAL_DEX_BELLOSSOM
.2byte NATIONAL_DEX_SUNKERN
.2byte NATIONAL_DEX_SUNFLORA
.2byte NATIONAL_DEX_SWELLOW
.2byte NATIONAL_DEX_WINGULL
.2byte NATIONAL_DEX_PELIPPER
.2byte NATIONAL_DEX_AZURILL
.2byte NATIONAL_DEX_AGGRON
.2byte NATIONAL_DEX_CLAYDOL
.2byte NATIONAL_DEX_MEDITITE
.2byte NATIONAL_DEX_HOPPIP
.2byte NATIONAL_DEX_SKIPLOOM
.2byte NATIONAL_DEX_JUMPLUFF
.2byte NATIONAL_DEX_RELICANTH
.2byte NATIONAL_DEX_BULBASAUR
.2byte NATIONAL_DEX_IVYSAUR
.2byte NATIONAL_DEX_VENUSAUR
.2byte NATIONAL_DEX_ODDISH
.2byte NATIONAL_DEX_GLOOM
.2byte NATIONAL_DEX_VILEPLUME
.2byte NATIONAL_DEX_BELLSPROUT
.2byte NATIONAL_DEX_WEEPINBELL
.2byte NATIONAL_DEX_VICTREEBEL
.2byte NATIONAL_DEX_SPHEAL
.2byte NATIONAL_DEX_EXEGGCUTE
.2byte NATIONAL_DEX_EXEGGUTOR
.2byte NATIONAL_DEX_NOSEPASS
.2byte NATIONAL_DEX_SKITTY
.2byte NATIONAL_DEX_LILEEP
.2byte NATIONAL_DEX_PIKACHU
.2byte NATIONAL_DEX_RAICHU
.2byte NATIONAL_DEX_VOLTORB
.2byte NATIONAL_DEX_ELECTRODE
.2byte NATIONAL_DEX_ELECTABUZZ
.2byte NATIONAL_DEX_JOLTEON
.2byte NATIONAL_DEX_PICHU
.2byte NATIONAL_DEX_MAREEP
.2byte NATIONAL_DEX_FLAAFFY
.2byte NATIONAL_DEX_AMPHAROS
.2byte NATIONAL_DEX_ELEKID
.2byte NATIONAL_DEX_RAIKOU
.2byte NATIONAL_DEX_LUNATONE
.2byte NATIONAL_DEX_SOLROCK
.2byte NATIONAL_DEX_SHUPPET
.2byte NATIONAL_DEX_BANETTE
.2byte NATIONAL_DEX_ZAPDOS
.2byte NATIONAL_DEX_MAGNEMITE
.2byte NATIONAL_DEX_MAGNETON
.2byte NATIONAL_DEX_ABRA
.2byte NATIONAL_DEX_KADABRA
.2byte NATIONAL_DEX_ALAKAZAM
.2byte NATIONAL_DEX_DROWZEE
.2byte NATIONAL_DEX_HYPNO
.2byte NATIONAL_DEX_MR_MIME
.2byte NATIONAL_DEX_MEWTWO
.2byte NATIONAL_DEX_MEW
.2byte NATIONAL_DEX_ESPEON
.2byte NATIONAL_DEX_UNOWN
.2byte NATIONAL_DEX_WOBBUFFET
.2byte NATIONAL_DEX_OLD_UNOWN_G
.2byte NATIONAL_DEX_OLD_UNOWN_H
.2byte NATIONAL_DEX_OLD_UNOWN_I
.2byte NATIONAL_DEX_CASTFORM
.2byte NATIONAL_DEX_KECLEON
.2byte NATIONAL_DEX_OLD_UNOWN_Z
.2byte NATIONAL_DEX_WYNAUT
.2byte NATIONAL_DEX_OLD_UNOWN_Y
.2byte NATIONAL_DEX_NATU
.2byte NATIONAL_DEX_XATU
.2byte NATIONAL_DEX_LUGIA
.2byte NATIONAL_DEX_CELEBI
.2byte NATIONAL_DEX_CRADILY
.2byte NATIONAL_DEX_ANORITH
.2byte NATIONAL_DEX_OLD_UNOWN_Q
.2byte NATIONAL_DEX_ARTICUNO
.2byte NATIONAL_DEX_DELIBIRD
.2byte NATIONAL_DEX_SWINUB
.2byte NATIONAL_DEX_PILOSWINE
.2byte NATIONAL_DEX_CORPHISH
.2byte NATIONAL_DEX_CRAWDAUNT
.2byte NATIONAL_DEX_BALTOY
.2byte NATIONAL_DEX_JYNX
.2byte NATIONAL_DEX_SMOOCHUM
.2byte NATIONAL_DEX_DRATINI
.2byte NATIONAL_DEX_DRAGONAIR
.2byte NATIONAL_DEX_OLD_UNOWN_J
.2byte NATIONAL_DEX_OLD_UNOWN_K
.2byte NATIONAL_DEX_DRAGONITE
.2byte NATIONAL_DEX_ABSOL
.2byte NATIONAL_DEX_OLD_UNOWN_L
.2byte NATIONAL_DEX_OLD_UNOWN_U
.2byte NATIONAL_DEX_OLD_UNOWN_V
.2byte NATIONAL_DEX_OLD_UNOWN_W
.2byte NATIONAL_DEX_UMBREON
.2byte NATIONAL_DEX_BRELOOM
.2byte NATIONAL_DEX_SLAKOTH
.2byte NATIONAL_DEX_METAGROSS
.2byte NATIONAL_DEX_MURKROW
.2byte NATIONAL_DEX_NUMEL
.2byte NATIONAL_DEX_HOUNDOUR
.2byte NATIONAL_DEX_HOUNDOOM
.2byte NATIONAL_DEX_SNEASEL
.section .rodata.after @ pokedex.c erroneously carved out?
gUnknown_8451EBC:: @ 8451EBC BgTemplate
.4byte 0x00000050
@ {
@ .bg = 0,
@ .charBaseIndex = 0,
@ .mapBaseIndex = 5,
@ .screenSize = 0,
@ .paletteMode = 0,
@ .priority = 0,
@ .baseTile = 0x0000
@ }
.4byte 0x00001049
@ {
@ .bg = 1,
@ .charBaseIndex = 2,
@ .mapBaseIndex = 4,
@ .screenSize = 0,
@ .paletteMode = 0,
@ .priority = 1,
@ .baseTile = 0x0000
@ }
.4byte 0x0000206a
@ {
@ .bg = 2,
@ .charBaseIndex = 2,
@ .mapBaseIndex = 6,
@ .screenSize = 0,
@ .paletteMode = 0,
@ .priority = 2,
@ .baseTile = 0x0000
@ }
.4byte 0x00003073
@ {
@ .bg = 3,
@ .charBaseIndex = 0,
@ .mapBaseIndex = 7,
@ .screenSize = 0,
@ .paletteMode = 0,
@ .priority = 3,
@ .baseTile = 0x0000
@ }
gUnknown_8451ECC:: @ 8451ECC WindowTemplate
.byte 0, 0, 0, 30, 2, 15
.2byte 0x03c4
@ {
@ .bg = 0,
@ .tilemapLeft = 0,
@ .tilemapTop = 0,
@ .width = 30,
@ .height = 2,
@ .paletteNum = 15,
@ .baseBlock = 0x03c4
@ }
.byte 0, 0, 18, 30, 2, 15
.2byte 0x0388
@ {
@ .bg = 0,
@ .tilemapLeft = 0,
@ .tilemapTop = 18,
@ .width = 30,
@ .height = 2,
@ .paletteNum = 15,
@ .baseBlock = 0x0388
@ }
.byte 255, 0, 0, 0, 0, 0
.2byte 0x0000
@ {
@ .bg = 255,
@ .tilemapLeft = 0,
@ .tilemapTop = 0,
@ .width = 0,
@ .height = 0,
@ .paletteNum = 0,
@ .baseBlock = 0x0000
@ }
gUnknown_8451EE4:: @ 8451EE4 PokedexScreenData
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
.byte 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
gUnknown_8451F54:: @ 8451F54 WindowTemplate
.byte 1, 1, 2, 20, 16, 0
.2byte 0x0008
@ {
@ .bg = 1,
@ .tilemapLeft = 1,
@ .tilemapTop = 2,
@ .width = 20,
@ .height = 16,
@ .paletteNum = 0,
@ .baseBlock = 0x0008
@ }
gUnknown_8451F5C:: @ 8451F5C WindowTemplate
.byte 1, 21, 11, 8, 6, 1
.2byte 0x0148
@ {
@ .bg = 1,
@ .tilemapLeft = 21,
@ .tilemapTop = 11,
@ .width = 8,
@ .height = 6,
@ .paletteNum = 1,
@ .baseBlock = 0x0148
@ }
gUnknown_8451F64:: @ 8451F64 WindowTemplate
.byte 1, 21, 2, 9, 9, 0
.2byte 0x0178
@ {
@ .bg = 1,
@ .tilemapLeft = 21,
@ .tilemapTop = 2,
@ .width = 9,
@ .height = 9,
@ .paletteNum = 0,
@ .baseBlock = 0x0178
@ }
gUnknown_8451F6C::
.4byte gUnknown_8415EFB, -3
.4byte gUnknown_8415E95, 9
.4byte gUnknown_8415DE0, -3
.4byte gUnknown_8415DF7, 0
.4byte gUnknown_8415E09, 1
.4byte gUnknown_8415E18, 2
.4byte gUnknown_8415E2D, 3
.4byte gUnknown_8415E39, 4
.4byte gUnknown_8415E46, 5
.4byte gUnknown_8415E57, 6
.4byte gUnknown_8415E6D, 7
.4byte gUnknown_8415E7B, 8
.4byte gUnknown_8415E88, -3
.4byte gUnknown_8415EA4, 10
.4byte gUnknown_8415ED5, 11
.4byte gUnknown_8415EDF, 12
.4byte gUnknown_8415EED, 13
.4byte gUnknown_8415EB0, -3
.4byte gUnknown_8415EC7, -2
gUnknown_8452004:: @ 8452004 ListMenuTemplate
.4byte gUnknown_8451F6C
.4byte sub_8102EC0
.4byte sub_8102F48
.2byte 19, 9
.byte 0, 0, 12, 4
.byte 0x12, 0x30, 0x01, 0x02
gUnknown_845201C::
.4byte gUnknown_8415EFB, -3
.4byte gUnknown_8415F0E, 9
.4byte gUnknown_8415F24, 14
.4byte gUnknown_8415DE0, -3
.4byte gUnknown_8415DF7, 0
.4byte gUnknown_8415E09, 1
.4byte gUnknown_8415E18, 2
.4byte gUnknown_8415E2D, 3
.4byte gUnknown_8415E39, 4
.4byte gUnknown_8415E46, 5
.4byte gUnknown_8415E57, 6
.4byte gUnknown_8415E6D, 7
.4byte gUnknown_8415E7B, 8
.4byte gUnknown_8415E88, -3
.4byte gUnknown_8415EA4, 10
.4byte gUnknown_8415ED5, 11
.4byte gUnknown_8415EDF, 12
.4byte gUnknown_8415EED, 13
.4byte gUnknown_8415EB0, -3
.4byte gUnknown_8415EC7, -2
gUnknown_84520BC:: @ 84520BC ListMenuTemplate
.4byte gUnknown_845201C
.4byte sub_8102EC0
.4byte sub_8102F48
.2byte 20, 9
.byte 0, 0, 12, 4
.byte 0x12, 0x30, 0x01, 0x02
gUnknown_84520D4:: @ 84520D4 ScrollArrowsTemplate
.byte 2, 200, 19, 3, 200, 141
.2byte 0, 10, 2000, 65535
.byte 1
.align 2
gUnknown_84520E4:: @ 84520E4 ScrollArrowsTemplate
.byte 2, 200, 19, 3, 200, 141
.2byte 0, 11, 2000, 65535
.byte 1
.align 2
gUnknown_84520F4:: @ 84520F4 struct { dataptr; dataptr; }
.4byte gUnknown_84414BC, gUnknown_84434A0
.4byte gUnknown_844112C, gUnknown_8443480
.4byte gUnknown_8442838, gUnknown_8443580
.4byte gUnknown_8442004, gUnknown_8443520
.4byte gUnknown_84408E0, gUnknown_8443420
.4byte gUnknown_8441A40, gUnknown_84434E0
.4byte gUnknown_84424E4, gUnknown_8443560
.4byte gUnknown_8440BD8, gUnknown_8443440
.4byte gUnknown_8441D54, gUnknown_8443500
.4byte gUnknown_844223C, gUnknown_8443540
.4byte gUnknown_8E9C16C, gUnknown_8E9C14C
.4byte gUnknown_8442BC0, gUnknown_84435A0
.4byte gUnknown_8442EF8, gUnknown_84435C0
.4byte gUnknown_844318C, gUnknown_84435E0
.4byte gUnknown_844223C, gUnknown_8443540
gUnknown_845216C:: @ 845216C WindowTemplate
.byte 1, 2, 2, 23, 16, 0
.2byte 0x0008
@ {
@ .bg = 1,
@ .tilemapLeft = 2,
@ .tilemapTop = 2,
@ .width = 23,
@ .height = 16,
@ .paletteNum = 0,
@ .baseBlock = 0x0008
@ }
gUnknown_8452174:: @ 8452174 ListMenuTemplate
.4byte gUnknown_8451F6C
.4byte ListMenuDefaultCursorMoveFunc
.4byte sub_8103A40
.2byte 0, 9
.byte 0, 0, 56, 4
.byte 0x12, 0x30, 0x41, 0x02
gUnknown_845218C:: @ 845218C ListMenuWindowRect
.byte 0x00, 0x00, 0x05, 0x10, 0x00, 0x00, 0x00, 0x00
gUnknown_8452194:: @ unknown
.byte 0x05, 0x00, 0x02, 0x10, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x08, 0x10, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x08, 0x10, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00
gUnknown_84521B4:: @ 84521B4 ScrollArrowsTemplate
.byte 2, 200, 19, 3, 200, 141
.2byte 0, 0, 2000, 65535
.byte 1
.align 2
gUnknown_84521C4:: @ 84521C4 WindowTemplate
.byte 2, 0, 0, 8, 8, 0
.2byte 0x0000
@ {
@ .bg = 2,
@ .tilemapLeft = 0,
@ .tilemapTop = 0,
@ .width = 8,
@ .height = 8,
@ .paletteNum = 0,
@ .baseBlock = 0x0000
@ }
gUnknown_84521CC:: @ 84521CC WindowTemplate
.byte 1, 0, 0, 8, 5, 0
.2byte 0x0000
@ {
@ .bg = 1,
@ .tilemapLeft = 0,
@ .tilemapTop = 0,
@ .width = 8,
@ .height = 5,
@ .paletteNum = 0,
@ .baseBlock = 0x0000
@ }
gUnknown_84521D4:: @ 84521D4 WindowTemplate
.byte 1, 19, 3, 8, 8, 9
.2byte 0x01a8
@ {
@ .bg = 1,
@ .tilemapLeft = 19,
@ .tilemapTop = 3,
@ .width = 8,
@ .height = 8,
@ .paletteNum = 9,
@ .baseBlock = 0x01a8
@ }
gUnknown_84521DC:: @ 84521DC WindowTemplate
.byte 1, 2, 3, 13, 8, 0
.2byte 0x01e8
@ {
@ .bg = 1,
@ .tilemapLeft = 2,
@ .tilemapTop = 3,
@ .width = 13,
@ .height = 8,
@ .paletteNum = 0,
@ .baseBlock = 0x01e8
@ }
gUnknown_84521E4:: @ 84521E4 WindowTemplate
.byte 1, 0, 11, 30, 7, 0
.2byte 0x0250
@ {
@ .bg = 1,
@ .tilemapLeft = 0,
@ .tilemapTop = 11,
@ .width = 30,
@ .height = 7,
@ .paletteNum = 0,
@ .baseBlock = 0x0250
@ }
gUnknown_84521EC:: @ 84521EC WindowTemplate
.byte 2, 1, 2, 4, 4, 10
.2byte 0x01a8
@ {
@ .bg = 2,
@ .tilemapLeft = 1,
@ .tilemapTop = 2,
@ .width = 4,
@ .height = 4,
@ .paletteNum = 10,
@ .baseBlock = 0x01a8
@ }
gUnknown_84521F4:: @ 84521F4 WindowTemplate
.byte 2, 5, 2, 8, 3, 0
.2byte 0x01b8
@ {
@ .bg = 2,
@ .tilemapLeft = 5,
@ .tilemapTop = 2,
@ .width = 8,
@ .height = 3,
@ .paletteNum = 0,
@ .baseBlock = 0x01b8
@ }
gUnknown_84521FC:: @ 84521FC WindowTemplate
.byte 2, 2, 7, 10, 2, 0
.2byte 0x01d0
@ {
@ .bg = 2,
@ .tilemapLeft = 2,
@ .tilemapTop = 7,
@ .width = 10,
@ .height = 2,
@ .paletteNum = 0,
@ .baseBlock = 0x01d0
@ }
gUnknown_8452204:: @ 8452204 WindowTemplate
.byte 2, 18, 2, 10, 2, 0
.2byte 0x01e4
@ {
@ .bg = 2,
@ .tilemapLeft = 18,
@ .tilemapTop = 2,
@ .width = 10,
@ .height = 2,
@ .paletteNum = 0,
@ .baseBlock = 0x01e4
@ }
gUnknown_845220C:: @ 845220C WindowTemplate
.byte 2, 5, 5, 8, 2, 11
.2byte 0x01f8
@ {
@ .bg = 2,
@ .tilemapLeft = 5,
@ .tilemapTop = 5,
@ .width = 8,
@ .height = 2,
@ .paletteNum = 11,
@ .baseBlock = 0x01f8
@ }
gUnknown_8452214:: @ 8452214 WindowTemplate
.byte 2, 17, 4, 12, 9, 0
.2byte 0x0208
@ {
@ .bg = 2,
@ .tilemapLeft = 17,
@ .tilemapTop = 4,
@ .width = 12,
@ .height = 9,
@ .paletteNum = 0,
@ .baseBlock = 0x0208
@ }
gUnknown_845221C::
.byte 2, 13, 4, 4, 3, 0
.2byte 0x0274
@ {
@ .bg = 2,
@ .tilemapLeft = 13,
@ .tilemapTop = 4,
@ .width = 4,
@ .height = 3,
@ .paletteNum = 0,
@ .baseBlock = 0x0274
@ }
gUnknown_8452224::
.byte 2, 13, 7, 4, 3, 0
.2byte 0x0280
@ {
@ .bg = 2,
@ .tilemapLeft = 13,
@ .tilemapTop = 7,
@ .width = 4,
@ .height = 3,
@ .paletteNum = 0,
@ .baseBlock = 0x0280
@ }
gUnknown_845222C::
.byte 2, 13, 10, 4, 3, 0
.2byte 0x028c
@ {
@ .bg = 2,
@ .tilemapLeft = 13,
@ .tilemapTop = 10,
@ .width = 4,
@ .height = 3,
@ .paletteNum = 0,
@ .baseBlock = 0x028c
@ }
gUnknown_8452234::
.byte 2, 13, 13, 4, 4, 0
.2byte 0x0298
@ {
@ .bg = 2,
@ .tilemapLeft = 13,
@ .tilemapTop = 13,
@ .width = 4,
@ .height = 4,
@ .paletteNum = 0,
@ .baseBlock = 0x0298
@ }
gUnknown_845223C::
.byte 2, 17, 13, 4, 4, 0
.2byte 0x02a8
@ {
@ .bg = 2,
@ .tilemapLeft = 17,
@ .tilemapTop = 13,
@ .width = 4,
@ .height = 4,
@ .paletteNum = 0,
@ .baseBlock = 0x02a8
@ }
gUnknown_8452244::
.byte 2, 21, 13, 4, 4, 0
.2byte 0x02b8
@ {
@ .bg = 2,
@ .tilemapLeft = 21,
@ .tilemapTop = 13,
@ .width = 4,
@ .height = 4,
@ .paletteNum = 0,
@ .baseBlock = 0x02b8
@ }
gUnknown_845224C::
.byte 2, 25, 13, 4, 4, 0
.2byte 0x02c8
@ {
@ .bg = 2,
@ .tilemapLeft = 25,
@ .tilemapTop = 13,
@ .width = 4,
@ .height = 4,
@ .paletteNum = 0,
@ .baseBlock = 0x02c8
@ }
gUnknown_8452254:: @ 8452254 struct { dataptr; dataptr; }
@ window template, tilemap.lz
.4byte gUnknown_845221C, gUnknown_8443910
.4byte gUnknown_8452224, gUnknown_8443988
.4byte gUnknown_845222C, gUnknown_84439FC
.4byte gUnknown_8452234, gUnknown_8443A78
.4byte gUnknown_845223C, gUnknown_8443AF8
.4byte gUnknown_8452244, gUnknown_8443BB0
.4byte gUnknown_845224C, gUnknown_8443C54
gUnknown_845228C:: @ 845228C bin
.incbin "graphics/pokedex/unk_845228C.bin"
gUnknown_845230C::
.byte 0x0b, 0x03, 0x0b, 0x0b
gUnknown_8452310::
.byte 0x03, 0x03, 0x0b, 0x03
.byte 0x12, 0x09, 0x0a, 0x0b
gUnknown_8452318::
.byte 0x01, 0x02, 0x09, 0x02
.byte 0x0b, 0x09, 0x03, 0x0b
.byte 0x15, 0x03, 0x15, 0x0b
gUnknown_8452324::
.byte 0x00, 0x02, 0x06, 0x03
.byte 0x07, 0x0a, 0x00, 0x0c
.byte 0x0f, 0x0a, 0x16, 0x0b
.byte 0x16, 0x02, 0x0f, 0x04
gUnknown_8452334:: @ 8452334 dataptr
.4byte gUnknown_845230C
.4byte gUnknown_8452310
.4byte gUnknown_8452318
.4byte gUnknown_8452324
gUnknown_8452344:: @ 8452344 dataptr
.4byte gUnknown_8415DF7
.4byte gUnknown_8415E09
.4byte gUnknown_8415E18
.4byte gUnknown_8415E2D
.4byte gUnknown_8415E39
.4byte gUnknown_8415E46
.4byte gUnknown_8415E57
.4byte gUnknown_8415E6D
.4byte gUnknown_8415E7B
gUnknown_8452368:: @ 8452368 gbapal
.incbin "graphics/pokedex/unk_8452368.gbapal"
gUnknown_8452388:: @ 8452388 data8
.byte 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e
.byte 0x05, 0x0b, 0x11, 0x17, 0x1d, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e
.byte 0x02, 0x05, 0x08, 0x0b, 0x0e, 0x11, 0x14, 0x17, 0x1a, 0x1d, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e
.byte 0x02, 0x03, 0x05, 0x07, 0x09, 0x0b, 0x0d, 0x0f, 0x11, 0x13, 0x15, 0x17, 0x19, 0x1b, 0x1d, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e
.byte 0x02, 0x04, 0x05, 0x07, 0x08, 0x0a, 0x0b, 0x0d, 0x0e, 0x10, 0x11, 0x13, 0x14, 0x16, 0x17, 0x19, 0x1a, 0x1c, 0x1d, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e
.byte 0x01, 0x02, 0x03, 0x04, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0f, 0x10, 0x11, 0x13, 0x14, 0x15, 0x17, 0x18, 0x19, 0x1b, 0x1c, 0x1d, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e
.byte 0x01, 0x02, 0x03, 0x04, 0x05, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x14, 0x15, 0x16, 0x17, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1e, 0x1e, 0x1e
.byte 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1e, 0x1e
.byte 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e
.byte 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d
gUnknown_84524B4:: @ 84524B4 ScrollArrowsTemplate
.byte 0, 16, 80, 1, 224, 80
.2byte 0, 0, 2000, 65535
.byte 1
.align 2
gUnknown_84524C4:: @ 84524C4 CursorStruct
.byte 0, 160
.2byte 64, 40, 2002, 65535
.byte 4, 0
gUnknown_84524D0:: @ 84524D0
.2byte SPECIES_RATTATA
.2byte SPECIES_RATICATE
.2byte SPECIES_SENTRET
.2byte SPECIES_FURRET
gUnknown_84524D8:: @ 84524D8
.2byte SPECIES_ZIGZAGOON
.2byte SPECIES_LINOONE
.2byte SPECIES_POOCHYENA
.2byte SPECIES_MIGHTYENA
gUnknown_84524E0:: @ 84524E0
.2byte SPECIES_NIDORAN_F
.2byte SPECIES_NIDORINA
.2byte SPECIES_NIDOQUEEN
gUnknown_84524E6:: @ 84524E6
.2byte SPECIES_NIDORAN_M
.2byte SPECIES_NIDORINO
.2byte SPECIES_NIDOKING
gUnknown_84524EC:: @ 84524EC
.2byte SPECIES_DODUO
.2byte SPECIES_DODRIO
.2byte SPECIES_TAILLOW
.2byte SPECIES_SWELLOW
gUnknown_84524F4:: @ 84524F4
.2byte SPECIES_TANGELA
.2byte SPECIES_ROSELIA
.2byte SPECIES_SUNKERN
.2byte SPECIES_SUNFLORA
gUnknown_84524FC:: @ 84524FC
.2byte SPECIES_HOPPIP
.2byte SPECIES_SKIPLOOM
.2byte SPECIES_JUMPLUFF
gUnknown_8452502:: @ 8452502
.2byte SPECIES_ODDISH
.2byte SPECIES_GLOOM
.2byte SPECIES_VILEPLUME
.2byte SPECIES_BELLOSSOM
gUnknown_845250A:: @ 845250A
.2byte SPECIES_EKANS
.2byte SPECIES_ARBOK
gUnknown_845250E:: @ 845250E
.2byte SPECIES_IGGLYBUFF
.2byte SPECIES_JIGGLYPUFF
.2byte SPECIES_WIGGLYTUFF
gUnknown_8452514:: @ 8452514
.2byte SPECIES_MAREEP
.2byte SPECIES_FLAAFFY
.2byte SPECIES_AMPHAROS
gUnknown_845251A:: @ 845251A
.2byte SPECIES_FARFETCHD
.2byte SPECIES_LICKITUNG
gUnknown_845251E:: @ 845251E
.2byte SPECIES_SCYTHER
.2byte SPECIES_SCIZOR
gUnknown_8452522:: @ 8452522
.2byte SPECIES_DROWZEE
.2byte SPECIES_HYPNO
.2byte SPECIES_GULPIN
.2byte SPECIES_SWALOT
gUnknown_845252A:: @ 845252A
.2byte SPECIES_KANGASKHAN
.2byte SPECIES_GIRAFARIG
gUnknown_845252E:: @ 845252E
.2byte SPECIES_TAUROS
.2byte SPECIES_MILTANK
gUnknown_8452532:: @ 8452532
.2byte SPECIES_VULPIX
.2byte SPECIES_NINETALES
.2byte SPECIES_PONYTA
.2byte SPECIES_RAPIDASH
gUnknown_845253A:: @ 845253A
.2byte SPECIES_ELEKID
.2byte SPECIES_ELECTABUZZ
.2byte SPECIES_ELECTRIKE
.2byte SPECIES_MANECTRIC
gUnknown_8452542:: @ 8452542
.2byte SPECIES_ZANGOOSE
.2byte SPECIES_SEVIPER
gUnknown_8452546:: @ 8452546
.2byte SPECIES_PLUSLE
.2byte SPECIES_MINUN
gUnknown_845254A:: @ 845254A
.2byte SPECIES_GROWLITHE
.2byte SPECIES_ARCANINE
gUnknown_845254E:: @ 845254E
.2byte SPECIES_CASTFORM
.2byte SPECIES_CHIMECHO
gUnknown_8452552:: @ 8452552
.2byte SPECIES_BULBASAUR
.2byte SPECIES_IVYSAUR
.2byte SPECIES_VENUSAUR
gUnknown_8452558:: @ 8452558
.2byte SPECIES_CHIKORITA
.2byte SPECIES_BAYLEEF
.2byte SPECIES_MEGANIUM
gUnknown_845255E:: @ 845255E
.2byte SPECIES_CYNDAQUIL
.2byte SPECIES_QUILAVA
.2byte SPECIES_TYPHLOSION
gUnknown_8452564:: @ 8452564
.2byte SPECIES_TORCHIC
.2byte SPECIES_COMBUSKEN
.2byte SPECIES_BLAZIKEN
gUnknown_845256A:: @ 845256A
.2byte SPECIES_RAIKOU
.2byte SPECIES_ENTEI
.2byte SPECIES_SUICUNE
gUnknown_8452570:: @ 8452570
.2byte SPECIES_CATERPIE
.2byte SPECIES_METAPOD
.2byte SPECIES_BUTTERFREE
gUnknown_8452576:: @ 8452576
.2byte SPECIES_WEEDLE
.2byte SPECIES_KAKUNA
.2byte SPECIES_BEEDRILL
gUnknown_845257C:: @ 845257C
.2byte SPECIES_WURMPLE
.2byte SPECIES_SILCOON
.2byte SPECIES_BEAUTIFLY
gUnknown_8452582:: @ 8452582
.2byte SPECIES_CASCOON
.2byte SPECIES_DUSTOX
gUnknown_8452586:: @ 8452586
.2byte SPECIES_PIDGEY
.2byte SPECIES_PIDGEOTTO
.2byte SPECIES_PIDGEOT
gUnknown_845258C:: @ 845258C
.2byte SPECIES_HOOTHOOT
.2byte SPECIES_NOCTOWL
.2byte SPECIES_NATU
.2byte SPECIES_XATU
gUnknown_8452594:: @ 8452594
.2byte SPECIES_PICHU
.2byte SPECIES_PIKACHU
.2byte SPECIES_RAICHU
gUnknown_845259A:: @ 845259A
.2byte SPECIES_BELLSPROUT
.2byte SPECIES_WEEPINBELL
.2byte SPECIES_VICTREEBEL
gUnknown_84525A0:: @ 84525A0
.2byte SPECIES_PARAS
.2byte SPECIES_PARASECT
.2byte SPECIES_SHROOMISH
.2byte SPECIES_BRELOOM
gUnknown_84525A8:: @ 84525A8
.2byte SPECIES_SEEDOT
.2byte SPECIES_NUZLEAF
.2byte SPECIES_SHIFTRY
gUnknown_84525AE:: @ 84525AE
.2byte SPECIES_VENONAT
.2byte SPECIES_VENOMOTH
.2byte SPECIES_YANMA
gUnknown_84525B4:: @ 84525B4
.2byte SPECIES_LEDYBA
.2byte SPECIES_LEDIAN
.2byte SPECIES_SPINARAK
.2byte SPECIES_ARIADOS
gUnknown_84525BC:: @ 84525BC
.2byte SPECIES_NINCADA
.2byte SPECIES_NINJASK
.2byte SPECIES_SHEDINJA
gUnknown_84525C2:: @ 84525C2
.2byte SPECIES_VOLBEAT
.2byte SPECIES_ILLUMISE
gUnknown_84525C6:: @ 84525C6
.2byte SPECIES_PINECO
.2byte SPECIES_FORRETRESS
gUnknown_84525CA:: @ 84525CA
.2byte SPECIES_SLAKOTH
.2byte SPECIES_VIGOROTH
.2byte SPECIES_SLAKING
gUnknown_84525D0:: @ 84525D0
.2byte SPECIES_SKITTY
.2byte SPECIES_DELCATTY
gUnknown_84525D4:: @ 84525D4
.2byte SPECIES_MURKROW
.2byte SPECIES_SNEASEL
gUnknown_84525D8:: @ 84525D8
.2byte SPECIES_EXEGGCUTE
.2byte SPECIES_EXEGGUTOR
.2byte SPECIES_SUDOWOODO
gUnknown_84525DE:: @ 84525DE
.2byte SPECIES_AIPOM
.2byte SPECIES_STANTLER
.2byte SPECIES_KECLEON
gUnknown_84525E4:: @ 84525E4
.2byte SPECIES_PINSIR
.2byte SPECIES_HERACROSS
gUnknown_84525E8:: @ 84525E8
.2byte SPECIES_SWABLU
.2byte SPECIES_ALTARIA
.2byte SPECIES_TROPIUS
gUnknown_84525EE:: @ 84525EE
.2byte SPECIES_DUSKULL
.2byte SPECIES_DUSCLOPS
gUnknown_84525F2:: @ 84525F2
.2byte SPECIES_TOGEPI
.2byte SPECIES_TOGETIC
gUnknown_84525F6:: @ 84525F6
.2byte SPECIES_TREECKO
.2byte SPECIES_GROVYLE
.2byte SPECIES_SCEPTILE
gUnknown_84525FC:: @ 84525FC
.2byte SPECIES_CELEBI
gUnknown_84525FE:: @ 84525FE
.2byte SPECIES_GOLDEEN
.2byte SPECIES_SEAKING
gUnknown_8452602:: @ 8452602
.2byte SPECIES_MAGIKARP
.2byte SPECIES_GYARADOS
.2byte SPECIES_KRABBY
.2byte SPECIES_KINGLER
gUnknown_845260A:: @ 845260A
.2byte SPECIES_CORPHISH
.2byte SPECIES_CRAWDAUNT
.2byte SPECIES_BARBOACH
.2byte SPECIES_WHISCASH
gUnknown_8452612:: @ 8452612
.2byte SPECIES_LOTAD
.2byte SPECIES_LOMBRE
.2byte SPECIES_LUDICOLO
gUnknown_8452618:: @ 8452618
.2byte SPECIES_SURSKIT
.2byte SPECIES_MASQUERAIN
gUnknown_845261C:: @ 845261C
.2byte SPECIES_PSYDUCK
.2byte SPECIES_GOLDUCK
.2byte SPECIES_WOOPER
.2byte SPECIES_QUAGSIRE
gUnknown_8452624:: @ 8452624
.2byte SPECIES_POLIWAG
.2byte SPECIES_POLIWHIRL
.2byte SPECIES_POLIWRATH
.2byte SPECIES_POLITOED
gUnknown_845262C:: @ 845262C
.2byte SPECIES_AZURILL
.2byte SPECIES_MARILL
.2byte SPECIES_AZUMARILL
gUnknown_8452632:: @ 8452632
.2byte SPECIES_SLOWPOKE
.2byte SPECIES_SLOWBRO
.2byte SPECIES_SLOWKING
gUnknown_8452638:: @ 8452638
.2byte SPECIES_FEEBAS
.2byte SPECIES_MILOTIC
gUnknown_845263C:: @ 845263C
.2byte SPECIES_ANORITH
.2byte SPECIES_ARMALDO
gUnknown_8452640:: @ 8452640
.2byte SPECIES_DRATINI
.2byte SPECIES_DRAGONAIR
.2byte SPECIES_DRAGONITE
gUnknown_8452646:: @ 8452646
.2byte SPECIES_SQUIRTLE
.2byte SPECIES_WARTORTLE
.2byte SPECIES_BLASTOISE
gUnknown_845264C:: @ 845264C
.2byte SPECIES_TOTODILE
.2byte SPECIES_CROCONAW
.2byte SPECIES_FERALIGATR
gUnknown_8452652:: @ 8452652
.2byte SPECIES_MUDKIP
.2byte SPECIES_MARSHTOMP
.2byte SPECIES_SWAMPERT
gUnknown_8452658:: @ 8452658
.2byte SPECIES_LATIAS
.2byte SPECIES_LATIOS
gUnknown_845265C:: @ 845265C
.2byte SPECIES_TENTACOOL
.2byte SPECIES_TENTACRUEL
gUnknown_8452660:: @ 8452660
.2byte SPECIES_WINGULL
.2byte SPECIES_PELIPPER
gUnknown_8452664:: @ 8452664
.2byte SPECIES_STARYU
.2byte SPECIES_STARMIE
gUnknown_8452668:: @ 8452668
.2byte SPECIES_CHINCHOU
.2byte SPECIES_LANTURN
.2byte SPECIES_REMORAID
.2byte SPECIES_OCTILLERY
gUnknown_8452670:: @ 8452670
.2byte SPECIES_SHELLDER
.2byte SPECIES_CLOYSTER
gUnknown_8452674:: @ 8452674
.2byte SPECIES_CLAMPERL
.2byte SPECIES_HUNTAIL
.2byte SPECIES_GOREBYSS
gUnknown_845267A:: @ 845267A
.2byte SPECIES_QWILFISH
.2byte SPECIES_CORSOLA
.2byte SPECIES_MANTINE
.2byte SPECIES_LUVDISC
gUnknown_8452682:: @ 8452682
.2byte SPECIES_SEEL
.2byte SPECIES_DEWGONG
gUnknown_8452686:: @ 8452686
.2byte SPECIES_SPHEAL
.2byte SPECIES_SEALEO
.2byte SPECIES_WALREIN
gUnknown_845268C:: @ 845268C
.2byte SPECIES_CARVANHA
.2byte SPECIES_SHARPEDO
.2byte SPECIES_WAILMER
.2byte SPECIES_WAILORD
gUnknown_8452694:: @ 8452694
.2byte SPECIES_HORSEA
.2byte SPECIES_SEADRA
.2byte SPECIES_KINGDRA
gUnknown_845269A:: @ 845269A
.2byte SPECIES_RELICANTH
gUnknown_845269C:: @ 845269C
.2byte SPECIES_LAPRAS
gUnknown_845269E:: @ 845269E
.2byte SPECIES_OMANYTE
.2byte SPECIES_OMASTAR
.2byte SPECIES_KABUTO
.2byte SPECIES_KABUTOPS
gUnknown_84526A6:: @ 84526A6
.2byte SPECIES_LILEEP
.2byte SPECIES_CRADILY
gUnknown_84526AA:: @ 84526AA
.2byte SPECIES_KYOGRE
gUnknown_84526AC:: @ 84526AC
.2byte SPECIES_ZUBAT
.2byte SPECIES_GOLBAT
.2byte SPECIES_CROBAT
gUnknown_84526B2:: @ 84526B2
.2byte SPECIES_DIGLETT
.2byte SPECIES_DUGTRIO
.2byte SPECIES_ONIX
.2byte SPECIES_STEELIX
gUnknown_84526BA:: @ 84526BA
.2byte SPECIES_SWINUB
.2byte SPECIES_PILOSWINE
.2byte SPECIES_SNORUNT
.2byte SPECIES_GLALIE
gUnknown_84526C2:: @ 84526C2
.2byte SPECIES_WHISMUR
.2byte SPECIES_LOUDRED
.2byte SPECIES_EXPLOUD
gUnknown_84526C8:: @ 84526C8
.2byte SPECIES_MISDREAVUS
.2byte SPECIES_DUNSPARCE
.2byte SPECIES_NOSEPASS
gUnknown_84526CE:: @ 84526CE
.2byte SPECIES_SABLEYE
.2byte SPECIES_MAWILE
gUnknown_84526D2:: @ 84526D2
.2byte SPECIES_GASTLY
.2byte SPECIES_HAUNTER
.2byte SPECIES_GENGAR
gUnknown_84526D8:: @ 84526D8
.2byte SPECIES_WYNAUT
.2byte SPECIES_WOBBUFFET
gUnknown_84526DC:: @ 84526DC
.2byte SPECIES_LUNATONE
.2byte SPECIES_SOLROCK
gUnknown_84526E0:: @ 84526E0
.2byte SPECIES_REGIROCK
.2byte SPECIES_REGICE
.2byte SPECIES_REGISTEEL
gUnknown_84526E6:: @ 84526E6
.2byte SPECIES_GEODUDE
.2byte SPECIES_GRAVELER
.2byte SPECIES_GOLEM
gUnknown_84526EC:: @ 84526EC
.2byte SPECIES_MANKEY
.2byte SPECIES_PRIMEAPE
.2byte SPECIES_SPOINK
.2byte SPECIES_GRUMPIG
gUnknown_84526F4:: @ 84526F4
.2byte SPECIES_MACHOP
.2byte SPECIES_MACHOKE
.2byte SPECIES_MACHAMP
gUnknown_84526FA:: @ 84526FA
.2byte SPECIES_CLEFFA
.2byte SPECIES_CLEFAIRY
.2byte SPECIES_CLEFABLE
gUnknown_8452700:: @ 8452700
.2byte SPECIES_CUBONE
.2byte SPECIES_MAROWAK
gUnknown_8452704:: @ 8452704
.2byte SPECIES_SLUGMA
.2byte SPECIES_MAGCARGO
.2byte SPECIES_NUMEL
.2byte SPECIES_CAMERUPT
gUnknown_845270C:: @ 845270C
.2byte SPECIES_MAKUHITA
.2byte SPECIES_HARIYAMA
.2byte SPECIES_MEDITITE
.2byte SPECIES_MEDICHAM
gUnknown_8452714:: @ 8452714
.2byte SPECIES_SHUCKLE
.2byte SPECIES_TEDDIURSA
.2byte SPECIES_URSARING
.2byte SPECIES_DELIBIRD
gUnknown_845271C:: @ 845271C
.2byte SPECIES_GLIGAR
.2byte SPECIES_SPINDA
gUnknown_8452720:: @ 8452720
.2byte SPECIES_MAGBY
.2byte SPECIES_MAGMAR
.2byte SPECIES_TORKOAL
gUnknown_8452726:: @ 8452726
.2byte SPECIES_ARON
.2byte SPECIES_LAIRON
.2byte SPECIES_AGGRON
gUnknown_845272C:: @ 845272C
.2byte SPECIES_LARVITAR
.2byte SPECIES_PUPITAR
.2byte SPECIES_TYRANITAR
gUnknown_8452732:: @ 8452732
.2byte SPECIES_SNORLAX
gUnknown_8452734:: @ 8452734
.2byte SPECIES_ABSOL
gUnknown_8452736:: @ 8452736
.2byte SPECIES_AERODACTYL
gUnknown_8452738:: @ 8452738
.2byte SPECIES_CHARMANDER
.2byte SPECIES_CHARMELEON
.2byte SPECIES_CHARIZARD
gUnknown_845273E:: @ 845273E
.2byte SPECIES_JIRACHI
gUnknown_8452740:: @ 8452740
.2byte SPECIES_SPEAROW
.2byte SPECIES_FEAROW
gUnknown_8452744:: @ 8452744
.2byte SPECIES_SANDSHREW
.2byte SPECIES_SANDSLASH
.2byte SPECIES_RHYHORN
.2byte SPECIES_RHYDON
gUnknown_845274C:: @ 845274C
.2byte SPECIES_MAGNEMITE
.2byte SPECIES_MAGNETON
gUnknown_8452750:: @ 8452750
.2byte SPECIES_HOUNDOUR
.2byte SPECIES_HOUNDOOM
.2byte SPECIES_PHANPY
.2byte SPECIES_DONPHAN
gUnknown_8452758:: @ 8452758
.2byte SPECIES_CACNEA
.2byte SPECIES_CACTURNE
gUnknown_845275C:: @ 845275C
.2byte SPECIES_TRAPINCH
.2byte SPECIES_VIBRAVA
.2byte SPECIES_FLYGON
gUnknown_8452762:: @ 8452762
.2byte SPECIES_SKARMORY
gUnknown_8452764:: @ 8452764
.2byte SPECIES_BALTOY
.2byte SPECIES_CLAYDOL
gUnknown_8452768:: @ 8452768
.2byte SPECIES_BAGON
.2byte SPECIES_SHELGON
.2byte SPECIES_SALAMENCE
gUnknown_845276E:: @ 845276E
.2byte SPECIES_BELDUM
.2byte SPECIES_METANG
.2byte SPECIES_METAGROSS
gUnknown_8452774:: @ 8452774
.2byte SPECIES_GROUDON
gUnknown_8452776:: @ 8452776
.2byte SPECIES_MEOWTH
.2byte SPECIES_PERSIAN
.2byte SPECIES_SNUBBULL
.2byte SPECIES_GRANBULL
gUnknown_845277E:: @ 845277E
.2byte SPECIES_GRIMER
.2byte SPECIES_MUK
.2byte SPECIES_KOFFING
.2byte SPECIES_WEEZING
gUnknown_8452786:: @ 8452786
.2byte SPECIES_SHUPPET
.2byte SPECIES_BANETTE
gUnknown_845278A:: @ 845278A
.2byte SPECIES_ABRA
.2byte SPECIES_KADABRA
.2byte SPECIES_ALAKAZAM
gUnknown_8452790:: @ 8452790
.2byte SPECIES_RALTS
.2byte SPECIES_KIRLIA
.2byte SPECIES_GARDEVOIR
gUnknown_8452796:: @ 8452796
.2byte SPECIES_SMOOCHUM
.2byte SPECIES_JYNX
.2byte SPECIES_MR_MIME
.2byte SPECIES_SMEARGLE
gUnknown_845279E:: @ 845279E
.2byte SPECIES_TYROGUE
.2byte SPECIES_HITMONLEE
.2byte SPECIES_HITMONCHAN
.2byte SPECIES_HITMONTOP
gUnknown_84527A6:: @ 84527A6
.2byte SPECIES_CHANSEY
.2byte SPECIES_BLISSEY
gUnknown_84527AA:: @ 84527AA
.2byte SPECIES_VOLTORB
.2byte SPECIES_ELECTRODE
.2byte SPECIES_PORYGON
.2byte SPECIES_PORYGON2
gUnknown_84527B2:: @ 84527B2
.2byte SPECIES_DITTO
gUnknown_84527B4:: @ 84527B4
.2byte SPECIES_EEVEE
.2byte SPECIES_VAPOREON
.2byte SPECIES_JOLTEON
.2byte SPECIES_FLAREON
gUnknown_84527BC:: @ 84527BC
.2byte SPECIES_ESPEON
.2byte SPECIES_UMBREON
gUnknown_84527C0:: @ 84527C0
.2byte SPECIES_UNOWN
gUnknown_84527C2:: @ 84527C2
.2byte SPECIES_ARTICUNO
.2byte SPECIES_ZAPDOS
.2byte SPECIES_MOLTRES
gUnknown_84527C8:: @ 84527C8
.2byte SPECIES_LUGIA
gUnknown_84527CA:: @ 84527CA
.2byte SPECIES_HO_OH
gUnknown_84527CC:: @ 84527CC
.2byte SPECIES_RAYQUAZA
gUnknown_84527CE:: @ 84527CE
.2byte SPECIES_DEOXYS
gUnknown_84527D0:: @ 84527D0
.2byte SPECIES_MEWTWO
gUnknown_84527D2:: @ 84527D2
.2byte SPECIES_MEW
gUnknown_84527D4::
.4byte gUnknown_84524D0, 4
.4byte gUnknown_84524D8, 4
.4byte gUnknown_84524E0, 3
.4byte gUnknown_84524E6, 3
.4byte gUnknown_84524EC, 4
.4byte gUnknown_84524F4, 4
.4byte gUnknown_84524FC, 3
.4byte gUnknown_8452502, 4
.4byte gUnknown_845250A, 2
.4byte gUnknown_845250E, 3
.4byte gUnknown_8452514, 3
.4byte gUnknown_845251A, 2
.4byte gUnknown_845251E, 2
.4byte gUnknown_8452522, 4
.4byte gUnknown_845252A, 2
.4byte gUnknown_845252E, 2
.4byte gUnknown_8452532, 4
.4byte gUnknown_845253A, 4
.4byte gUnknown_8452542, 2
.4byte gUnknown_8452546, 2
.4byte gUnknown_845254A, 2
.4byte gUnknown_845254E, 2
.4byte gUnknown_8452552, 3
.4byte gUnknown_8452558, 3
.4byte gUnknown_845255E, 3
.4byte gUnknown_8452564, 3
.4byte gUnknown_845256A, 3
gUnknown_84528AC::
.4byte gUnknown_8452570, 3
.4byte gUnknown_8452576, 3
.4byte gUnknown_845257C, 3
.4byte gUnknown_8452582, 2
.4byte gUnknown_8452586, 3
.4byte gUnknown_845258C, 4
.4byte gUnknown_8452594, 3
.4byte gUnknown_845259A, 3
.4byte gUnknown_84525A0, 4
.4byte gUnknown_84525A8, 3
.4byte gUnknown_84525AE, 3
.4byte gUnknown_84525B4, 4
.4byte gUnknown_84525BC, 3
.4byte gUnknown_84525C2, 2
.4byte gUnknown_84525C6, 2
.4byte gUnknown_84525CA, 3
.4byte gUnknown_84525D0, 2
.4byte gUnknown_84525D4, 2
.4byte gUnknown_84525D8, 3
.4byte gUnknown_84525DE, 3
.4byte gUnknown_84525E4, 2
.4byte gUnknown_84525E8, 3
.4byte gUnknown_84525EE, 2
.4byte gUnknown_84525F2, 2
.4byte gUnknown_84525F6, 3
.4byte gUnknown_84525FC, 1
gUnknown_845297C::
.4byte gUnknown_84525FE, 2
.4byte gUnknown_8452602, 4
.4byte gUnknown_845260A, 4
.4byte gUnknown_8452612, 3
.4byte gUnknown_8452618, 2
.4byte gUnknown_845261C, 4
.4byte gUnknown_8452624, 4
.4byte gUnknown_845262C, 3
.4byte gUnknown_8452632, 3
.4byte gUnknown_8452638, 2
.4byte gUnknown_845263C, 2
.4byte gUnknown_8452640, 3
.4byte gUnknown_8452646, 3
.4byte gUnknown_845264C, 3
.4byte gUnknown_8452652, 3
.4byte gUnknown_8452658, 2
gUnknown_84529FC::
.4byte gUnknown_845265C, 2
.4byte gUnknown_8452660, 2
.4byte gUnknown_8452664, 2
.4byte gUnknown_8452668, 4
.4byte gUnknown_8452670, 2
.4byte gUnknown_8452674, 3
.4byte gUnknown_845267A, 4
.4byte gUnknown_8452682, 2
.4byte gUnknown_8452686, 3
.4byte gUnknown_845268C, 4
.4byte gUnknown_8452694, 3
.4byte gUnknown_845269A, 1
.4byte gUnknown_845269C, 1
.4byte gUnknown_845269E, 4
.4byte gUnknown_84526A6, 2
.4byte gUnknown_84526AA, 1
gUnknown_8452A7C::
.4byte gUnknown_84526AC, 3
.4byte gUnknown_84526B2, 4
.4byte gUnknown_84526BA, 4
.4byte gUnknown_84526C2, 3
.4byte gUnknown_84526C8, 3
.4byte gUnknown_84526CE, 2
.4byte gUnknown_84526D2, 3
.4byte gUnknown_84526D8, 2
.4byte gUnknown_84526DC, 2
.4byte gUnknown_84526E0, 3
gUnknown_8452ACC::
.4byte gUnknown_84526E6, 3
.4byte gUnknown_84526EC, 4
.4byte gUnknown_84526F4, 3
.4byte gUnknown_84526FA, 3
.4byte gUnknown_8452700, 2
.4byte gUnknown_8452704, 4
.4byte gUnknown_845270C, 4
.4byte gUnknown_8452714, 4
.4byte gUnknown_845271C, 2
.4byte gUnknown_8452720, 3
.4byte gUnknown_8452726, 3
.4byte gUnknown_845272C, 3
.4byte gUnknown_8452732, 1
.4byte gUnknown_8452734, 1
.4byte gUnknown_8452736, 1
.4byte gUnknown_8452738, 3
.4byte gUnknown_845273E, 1
gUnknown_8452B54::
.4byte gUnknown_8452740, 2
.4byte gUnknown_8452744, 4
.4byte gUnknown_845274C, 2
.4byte gUnknown_8452750, 4
.4byte gUnknown_8452758, 2
.4byte gUnknown_845275C, 3
.4byte gUnknown_8452762, 1
.4byte gUnknown_8452764, 2
.4byte gUnknown_8452768, 3
.4byte gUnknown_845276E, 3
.4byte gUnknown_8452774, 1
gUnknown_8452BAC::
.4byte gUnknown_8452776, 4
.4byte gUnknown_845277E, 4
.4byte gUnknown_8452786, 2
.4byte gUnknown_845278A, 3
.4byte gUnknown_8452790, 3
.4byte gUnknown_8452796, 4
.4byte gUnknown_845279E, 4
.4byte gUnknown_84527A6, 2
.4byte gUnknown_84527AA, 4
.4byte gUnknown_84527B2, 1
.4byte gUnknown_84527B4, 4
.4byte gUnknown_84527BC, 2
gUnknown_8452C0C::
.4byte gUnknown_84527C0, 1
.4byte gUnknown_84527C2, 3
.4byte gUnknown_84527C8, 1
.4byte gUnknown_84527CA, 1
.4byte gUnknown_84527CC, 1
.4byte gUnknown_84527CE, 1
.4byte gUnknown_84527D0, 1
.4byte gUnknown_84527D2, 1
gUnknown_8452C4C:: @ 8452C4C struct { dataptr; data8; }
.4byte gUnknown_84527D4, 27
.4byte gUnknown_84528AC, 26
.4byte gUnknown_845297C, 16
.4byte gUnknown_84529FC, 16
.4byte gUnknown_8452A7C, 10
.4byte gUnknown_8452ACC, 17
.4byte gUnknown_8452B54, 11
.4byte gUnknown_8452BAC, 12
.4byte gUnknown_8452C0C, 8
|