summaryrefslogtreecommitdiff
path: root/data/move/move_names.s
blob: d81353c8667673d2983c04486a96c498ec6288ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
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
.global MoveNamePierce
MoveNamePierce:
.string "Pierce\0"
.align 2,0

.global MoveNameLongToss
MoveNameLongToss:
.string "Long Toss\0"
.align 2,0

.global MoveNameSeeStairs
MoveNameSeeStairs:
.string "See Stairs\0"
.align 2,0

.global MoveNameItemToss
MoveNameItemToss:
.string "Item-Toss\0"
.align 2,0

.global MoveNameMobile
MoveNameMobile:
.string "Mobile\0"
.align 2,0

.global MoveNameHurl
MoveNameHurl:
.string "Hurl\0"
.align 2,0

.global MoveNameItemize
MoveNameItemize:
.string "Itemize\0"
.align 2,0

.global MoveNamePossess
MoveNamePossess:
.string "Possess\0"
.align 2,0

.global MoveNameTrapper
MoveNameTrapper:
.string "Trapper\0"
.align 2,0

.global MoveNameFillIn
MoveNameFillIn:
.string "Fill-In\0"
.align 2,0

.global MoveNameOneRoom
MoveNameOneRoom:
.string "One-Room\0"
.align 2,0

.global MoveNameFamish
MoveNameFamish:
.string "Famish\0"
.align 2,0

.global MoveNameEcho
MoveNameEcho:
.string "Echo\0"
.align 2,0

.global MoveNameShocker
MoveNameShocker:
.string "Shocker\0"
.align 2,0

.global MoveNameReviver
MoveNameReviver:
.string "Reviver\0"
.align 2,0

.global MoveDescriptionVacuumCut
MoveDescriptionVacuumCut:
.string "Inflicts damage on all foes in the room.\0"
.align 2,0

.global MoveNameVacuumCut
MoveNameVacuumCut:
.string "Vacuum-Cut\0"
.align 2,0

.global MoveNameHPGauge
MoveNameHPGauge:
.string "HP Gauge\0"
.align 2,0

.global MoveNameOneShot
MoveNameOneShot:
.string "One-Shot\0"
.align 2,0

.global MoveNameInvisify
MoveNameInvisify:
.string "Invisify\0"
.align 2,0

.global MoveNameWildCall
MoveNameWildCall:
.string "Wild Call\0"
.align 2,0

.global MoveNameTrapBuster
MoveNameTrapBuster:
.string "Trap Buster\0"
.align 2,0

.global MoveNameDrought
MoveNameDrought:
.string "Drought\0"
.align 2,0

.global MoveNamePowerEars
MoveNamePowerEars:
.string "Power-Ears\0"
.align 2,0

.global MoveNameScan
MoveNameScan:
.string "Scan\0"
.align 2,0

.global MoveNameEscape
MoveNameEscape:
.string "Escape\0"
.align 2,0

.global MoveNameNoMove
MoveNameNoMove:
.string "No-Move\0"
.align 2,0

.global MoveNameTwoEdge
MoveNameTwoEdge:
.string "Two-Edge\0"
.align 2,0

.global MoveNameTotter
MoveNameTotter:
.string "Totter\0"
.align 2,0

.global MoveNameSiesta
MoveNameSiesta:
.string "Siesta\0"
.align 2,0

.global MoveNameDecoyMaker
MoveNameDecoyMaker:
.string "Decoy Maker\0"
.align 2,0

.global MoveNameObserver
MoveNameObserver:
.string "Observer\0"
.align 2,0

.global MoveNameCleanse
MoveNameCleanse:
.string "Cleanse\0"
.align 2,0

.global MoveNameTrawl
MoveNameTrawl:
.string "Trawl\0"
.align 2,0

.global MoveNamePounce
MoveNamePounce:
.string "Pounce\0"
.align 2,0

.global MoveNameStayAway
MoveNameStayAway:
.string "Stay Away\0"
.align 2,0

.global MoveNamePetrify
MoveNamePetrify:
.string "Petrify\0"
.align 2,0

.global MoveNameSearchlight
MoveNameSearchlight:
.string "Searchlight\0"
.align 2,0

.global MoveNameSpeedBoost
MoveNameSpeedBoost:
.string "Speed Boost\0"
.align 2,0

.global MoveNameSlowDown
MoveNameSlowDown:
.string "Slow Down\0"
.align 2,0

.global MoveNameTransfer
MoveNameTransfer:
.string "Transfer\0"
.align 2,0

.global MoveNameWarp
MoveNameWarp:
.string "Warp\0"
.align 2,0

.global MoveNameBlowback
MoveNameBlowback:
.string "Blowback\0"
.align 2,0

.global MoveNameSwitcher
MoveNameSwitcher:
.string "Switcher\0"
.align 2,0

.global MoveNameBloopSlash
MoveNameBloopSlash:
.string "Bloop Slash\0"
.align 2,0

.global MoveNameRebound
MoveNameRebound:
.string "Rebound\0"
.align 2,0

.global MoveNameTakeaway
MoveNameTakeaway:
.string "Takeaway\0"
.align 2,0

.global MoveNameSeeTrap
MoveNameSeeTrap:
.string "See-Trap\0"
.align 2,0

.global MoveNameSpinSlash
MoveNameSpinSlash:
.string "Spin Slash\0"
.align 2,0

.global MoveNameExcavate
MoveNameExcavate:
.string "Excavate\0"
.align 2,0

.global MoveDescriptionWideSlash
MoveDescriptionWideSlash:
.string "Inflicts damage on foes on the three\ntiles diagonally and directly in front.\0"
.align 2,0

.global MoveNameWideSlash
MoveNameWideSlash:
.string "Wide Slash\0"
.align 2,0

.global MoveDescriptionPlaceholder
MoveDescriptionPlaceholder:
.string "Reserved\n\n\0"
.align 2,0

.global MoveNamePlaceholder
MoveNamePlaceholder:
.string "-\0"
.align 2,0

.global MoveUseTextBide
MoveUseTextBide:
.string "{ARG_POKEMON_0} can{APOSTROPHE}t take it anymore!\0"
.align 2,0

.global MoveNameBide2
MoveNameBide2:
.string "がみん\0"
.align 2,0

.global MoveDescriptionIsWatching
MoveDescriptionIsWatching:
.string "Wait and see\n\n\0"
.align 2,0

.global MoveNameIsWatching
MoveNameIsWatching:
.string "ようすをまる\0"
.align 2,0

.global MoveUseTextRegularAttack
MoveUseTextRegularAttack:
.string "{ARG_POKEMON_0} attacked!\0"
.align 2,0

.global MoveDescriptionNull
MoveDescriptionNull:
.string "NULL\0"
.align 2,0

.global MoveNameRegularAttack
MoveNameRegularAttack:
.string "attack\0"
.align 2,0

.global MoveDescriptionVoltTackle
MoveDescriptionVoltTackle:
.string "Inflicts damage on the target{COMMA} even at a\ndistance.\nHowever{COMMA} it also hurts the user.\0"
.align 2,0

.global MoveNameVoltTackle
MoveNameVoltTackle:
.string "Volt Tackle\0"
.align 2,0

.global MoveNameAeroblast
MoveNameAeroblast:
.string "Aeroblast\0"
.align 2,0

.global MoveDescriptionStruggle
MoveDescriptionStruggle:
.string "Inflicts damage on the target.\nHowever{COMMA} the user also takes damage one\nquarter of its {COLOR_2 YELLOW}maximum HP{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNameStruggle
MoveNameStruggle:
.string "Struggle\0"
.align 2,0

.global MoveNameCottonSpore
MoveNameCottonSpore:
.string "Cotton Spore\0"
.align 2,0

.global MoveNameRockBlast
MoveNameRockBlast:
.string "Rock Blast\0"
.align 2,0

.global MoveDescriptionLockOn
MoveDescriptionLockOn:
.string "Gives the user the {COLOR_2 CYAN}Sure Shot{END_COLOR_TEXT_2} status{COMMA}\nmaking all its moves and attacks\ncompletely accurate.\0"
.align 2,0

.global MoveNameLockOn
MoveNameLockOn:
.string "Lock-On\0"
.align 2,0

.global MoveDescriptionSkullBash
MoveDescriptionSkullBash:
.string "The user gains the {COLOR_2 CYAN}Skull Bash{END_COLOR_TEXT_2} status{COMMA}\ncausing it to attack strongly on the\nnext turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0"
.align 2,0

.global MoveNameSkullBash
MoveNameSkullBash:
.string "Skull Bash\0"
.align 2,0

.global MoveNameCometPunch
MoveNameCometPunch:
.string "Comet Punch\0"
.align 2,0

.global MoveNameFuryCutter
MoveNameFuryCutter:
.string "Fury Cutter\0"
.align 2,0

.global MoveDescriptionIceBeam
MoveDescriptionIceBeam:
.string "Inflicts damage on the target{COMMA} even at a\ndistance. It may also leave the target\n{COLOR_2 CYAN}frozen{END_COLOR_TEXT_2} and incapable of action.\0"
.align 2,0

.global MoveNameIceBeam
MoveNameIceBeam:
.string "Ice Beam\0"
.align 2,0

.global MoveNameIcePunch
MoveNameIcePunch:
.string "Ice Punch\0"
.align 2,0

.global MoveDescriptionDragonDance
MoveDescriptionDragonDance:
.string "Boosts the user{APOSTROPHE}s {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Movement\nSpeed{END_COLOR_TEXT_2} by one level.\0"
.align 2,0

.global MoveNameDragonDance
MoveNameDragonDance:
.string "Dragon Dance\0"
.align 2,0

.global MoveDescriptionDragonbreath
MoveDescriptionDragonbreath:
.string "Inflicts damage on the target{COMMA} even at a\ndistance. It may also cause {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}{COMMA}\npreventing any attacks or moves.\0"
.align 2,0

.global MoveNameDragonbreath
MoveNameDragonbreath:
.string "Dragonbreath\0"
.align 2,0

.global MoveDescriptionDragonRage
MoveDescriptionDragonRage:
.string "Inflicts a set amount of damage on the\ntarget.\0"
.align 2,0

.global MoveNameDragonRage
MoveNameDragonRage:
.string "Dragon Rage\0"
.align 2,0

.global MoveNameRevenge
MoveNameRevenge:
.string "Revenge\0"
.align 2,0

.global MoveDescriptionRefresh
MoveDescriptionRefresh:
.string "Heals all status problems of the user and\nits team members in the room.\0"
.align 2,0

.global MoveNameRefresh
MoveNameRefresh:
.string "Refresh\0"
.align 2,0

.global MoveDescriptionReflect
MoveDescriptionReflect:
.string "The user gains the {COLOR_2 CYAN}Reflect{END_COLOR_TEXT_2} status{COMMA}\nhalving the damage from all\n{COLOR_2 CYAN}Physical Attack moves{END_COLOR_TEXT_2} and\nregular attacks.\0"
.align 2,0

.global MoveNameReflect
MoveNameReflect:
.string "Reflect\0"
.align 2,0

.global MoveDescriptionRecycle
MoveDescriptionRecycle:
.string "Repairs the item {COLOR_2 GREEN}{TM}Used TM{END_COLOR_TEXT_2} and restores\nit to its original{COMMA} unused state.\0"
.align 2,0

.global MoveNameRecycle
MoveNameRecycle:
.string "Recycle\0"
.align 2,0

.global MoveNameLeafBlade
MoveNameLeafBlade:
.string "Leaf Blade\0"
.align 2,0

.global MoveNameLusterPurge
MoveNameLusterPurge:
.string "Luster Purge\0"
.align 2,0

.global MoveDescriptionSnatch
MoveDescriptionSnatch:
.string "The user gains the {COLOR_2 CYAN}Snatch{END_COLOR_TEXT_2} status.\nIt steals the moves of Pokémon on\nthe same floor.\0"
.align 2,0

.global MoveNameSnatch
MoveNameSnatch:
.string "Snatch\0"
.align 2,0

.global MoveDescriptionAcid
MoveDescriptionAcid:
.string "Inflicts damage on the target.\nIt may also lower the user{APOSTROPHE}s {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by\none level.\0"
.align 2,0

.global MoveNameAcid
MoveNameAcid:
.string "Acid\0"
.align 2,0

.global MoveDescriptionDreamEater
MoveDescriptionDreamEater:
.string "Inflicts damage on the target and restores\nthe user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\nEffective only against sleeping foes.\0"
.align 2,0

.global MoveNameDreamEater
MoveNameDreamEater:
.string "Dream Eater\0"
.align 2,0

.global MoveDescriptionMetronome
MoveDescriptionMetronome:
.string "Randomly looses a move from among all\nthe moves known to Pokémon.\0"
.align 2,0

.global MoveNameMetronome
MoveNameMetronome:
.string "Metronome\0"
.align 2,0

.global MoveDescriptionLeechSeed
MoveDescriptionLeechSeed:
.string "Inflicts the {COLOR_2 CYAN}Leech Seed{END_COLOR_TEXT_2} status\non the target.\nThe target{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} is leeched every several\nturns to restore the user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNameLeechSeed
MoveNameLeechSeed:
.string "Leech Seed\0"
.align 2,0

.global MoveDescriptionFrustration
MoveDescriptionFrustration:
.string "Inflicts damage on the target.\nIt inflicts greater damage if the user{APOSTROPHE}s\n{COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2} is low.\0"
.align 2,0

.global MoveNameFrustration
MoveNameFrustration:
.string "Frustration\0"
.align 2,0

.global MoveDescriptionMimic
MoveDescriptionMimic:
.string "Makes the user deploy the same move as\nthe one last used by the foe facing it.\nSome moves cannot be mimicked.\0"
.align 2,0

.global MoveNameMimic
MoveNameMimic:
.string "Mimic\0"
.align 2,0

.global MoveDescriptionAttract
MoveDescriptionAttract:
.string "Inflicts the {COLOR_2 CYAN}Infatuated{END_COLOR_TEXT_2} status on\nthe target.\0"
.align 2,0

.global MoveNameAttract
MoveNameAttract:
.string "Attract\0"
.align 2,0

.global MoveDescriptionMetalClaw
MoveDescriptionMetalClaw:
.string "Inflicts damage on the target.\nIt may also boost the user{APOSTROPHE}s {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} by\none level.\0"
.align 2,0

.global MoveNameMetalClaw
MoveNameMetalClaw:
.string "Metal Claw\0"
.align 2,0

.global MoveDescriptionHiddenPower
MoveDescriptionHiddenPower:
.string "Inflicts damage on the target.\nIts type and power change with the\ndungeon.\0"
.align 2,0

.global MoveNameHiddenPower
MoveNameHiddenPower:
.string "Hidden Power\0"
.align 2,0

.global MoveNameMegahorn
MoveNameMegahorn:
.string "Megahorn\0"
.align 2,0

.global MoveNameMegaPunch
MoveNameMegaPunch:
.string "Mega Punch\0"
.align 2,0

.global MoveNameMegaKick
MoveNameMegaKick:
.string "Mega Kick\0"
.align 2,0

.global MoveNameMegaDrain
MoveNameMegaDrain:
.string "Mega Drain\0"
.align 2,0

.global MoveDescriptionCalmMind
MoveDescriptionCalmMind:
.string "Boosts the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2} and\n{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2} by one level.\0"
.align 2,0

.global MoveNameCalmMind
MoveNameCalmMind:
.string "Calm Mind\0"
.align 2,0

.global MoveDescriptionMilkDrink
MoveDescriptionMilkDrink:
.string "Restores the {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} of the user and its\nteam members on the floor by one quarter\nof their {COLOR_2 YELLOW}maximum HP{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNameMilkDrink
MoveNameMilkDrink:
.string "Milk Drink\0"
.align 2,0

.global MoveNameFutureSight
MoveNameFutureSight:
.string "Future Sight\0"
.align 2,0

.global MoveDescriptionMirrorCoat
MoveDescriptionMirrorCoat:
.string "The user gains the {COLOR_2 CYAN}Mirror Coat{END_COLOR_TEXT_2} status.\nThe user returns the damage it takes from\nany {COLOR_2 CYAN}Special Attack moves{END_COLOR_TEXT_2} used\nby a foe beside it.\0"
.align 2,0

.global MoveNameMirrorCoat
MoveNameMirrorCoat:
.string "Mirror Coat\0"
.align 2,0

.global MoveDescriptionForesight
MoveDescriptionForesight:
.string "Resets the boosted {COLOR_2 YELLOW}Evasion{END_COLOR_TEXT_2} of the target.\nGhost-type foes become {COLOR_2 CYAN}exposed{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNameForesight
MoveNameForesight:
.string "Foresight\0"
.align 2,0

.global MoveDescriptionFalseSwipe
MoveDescriptionFalseSwipe:
.string "Inflicts damage on the target.\nIt leaves the target with one {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} if its\ndamage would have made the target faint.\0"
.align 2,0

.global MoveNameFalseSwipe
MoveNameFalseSwipe:
.string "False Swipe\0"
.align 2,0

.global MoveDescriptionDestinyBond
MoveDescriptionDestinyBond:
.string "The user and the target gain the\n{COLOR_2 CYAN}Destiny Bond{END_COLOR_TEXT_2} status.\nThe target sustains the same damage\nas the user in this state.\0"
.align 2,0

.global MoveNameDestinyBond
MoveNameDestinyBond:
.string "Destiny Bond\0"
.align 2,0

.global MoveNameFurySwipes
MoveNameFurySwipes:
.string "Fury Swipes\0"
.align 2,0

.global MoveNameFuryAttack
MoveNameFuryAttack:
.string "Fury Attack\0"
.align 2,0

.global MoveDescriptionWaterPulse
MoveDescriptionWaterPulse:
.string "Inflicts damage on the target{COMMA} even at a\ndistance.\nIt may also leave the target {COLOR_2 CYAN}confused{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNameWaterPulse
MoveNameWaterPulse:
.string "Water Pulse\0"
.align 2,0

.global MoveDescriptionMistBall
MoveDescriptionMistBall:
.string "Inflicts damage on the target.\nIt may lower the target{APOSTROPHE}s {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}\nby one level.\0"
.align 2,0

.global MoveNameMistBall
MoveNameMistBall:
.string "Mist Ball\0"
.align 2,0

.global MoveNameWaterGun
MoveNameWaterGun:
.string "Water Gun\0"
.align 2,0

.global MoveDescriptionWaterSport
MoveDescriptionWaterSport:
.string "Changes the floor{APOSTROPHE}s status to {COLOR_2 CYAN}Water Sport{END_COLOR_TEXT_2}{COMMA}\nwhich halves the power of Fire-type\nmoves.\0"
.align 2,0

.global MoveNameWaterSport
MoveNameWaterSport:
.string "Water Sport\0"
.align 2,0

.global MoveNamePinMissile
MoveNamePinMissile:
.string "Pin Missile\0"
.align 2,0

.global MoveNameDetect
MoveNameDetect:
.string "Detect\0"
.align 2,0

.global MoveDescriptionSubstitute
MoveDescriptionSubstitute:
.string "The target gains the {COLOR_2 CYAN}Decoy{END_COLOR_TEXT_2} status{COMMA}\nmaking it the target of its fellow\nPokémon.\0"
.align 2,0

.global MoveNameSubstitute
MoveNameSubstitute:
.string "Substitute\0"
.align 2,0

.global MoveNameRollingKick
MoveNameRollingKick:
.string "Rolling Kick\0"
.align 2,0

.global MoveNameDefenseCurl
MoveNameDefenseCurl:
.string "Defense Curl\0"
.align 2,0

.global MoveDescriptionProtect
MoveDescriptionProtect:
.string "The user gains the {COLOR_2 CYAN}Protect{END_COLOR_TEXT_2} status{COMMA}\npreventing damage from enemy attacks\nand moves.\0"
.align 2,0

.global MoveNameProtect
MoveNameProtect:
.string "Protect\0"
.align 2,0

.global MoveNameMachPunch
MoveNameMachPunch:
.string "Mach Punch\0"
.align 2,0

.global MoveNameMudShot
MoveNameMudShot:
.string "Mud Shot\0"
.align 2,0

.global MoveDescriptionMagicCoat
MoveDescriptionMagicCoat:
.string "The user gains the {COLOR_2 CYAN}Magic Coat{END_COLOR_TEXT_2} status.\nThe user reflects several moves directly\nback to the foes.\0"
.align 2,0

.global MoveNameMagicCoat
MoveNameMagicCoat:
.string "Magic Coat\0"
.align 2,0

.global MoveNameMagicalLeaf
MoveNameMagicalLeaf:
.string "Magical Leaf\0"
.align 2,0

.global MoveDescriptionMagnitude
MoveDescriptionMagnitude:
.string "Damages all Pokémon in the same room.\nThe amount of damage varies.\nIt inflicts double damage on any {COLOR_2 CYAN}digging{END_COLOR_TEXT_2}\nPokémon.\0"
.align 2,0

.global MoveNameMagnitude
MoveNameMagnitude:
.string "Magnitude\0"
.align 2,0

.global MoveDescriptionSpikes
MoveDescriptionSpikes:
.string "The user places spikes underfoot.\nThe Spiked Tile inflicts damage on\nfoes that step on it.\0"
.align 2,0

.global MoveDescriptionWrap
MoveDescriptionWrap:
.string "The user gains the {COLOR_2 CYAN}Wrap{END_COLOR_TEXT_2} status{COMMA} and\nthe {COLOR_2 CYAN}Wrapped{END_COLOR_TEXT_2} status is inflicted on\nthe target.\nBoth Pokémon become incapable of action.\0"
.align 2,0

.global MoveNameWrap
MoveNameWrap:
.string "Wrap\0"
.align 2,0

.global MoveDescriptionPerishSong
MoveDescriptionPerishSong:
.string "Inflicts the {COLOR_2 CYAN}Perish Song{END_COLOR_TEXT_2} status on all foes\non the floor. The affected foes faint\nafter several turns.\0"
.align 2,0

.global MoveNamePerishSong
MoveNamePerishSong:
.string "Perish Song\0"
.align 2,0

.global MoveNameFirePunch
MoveNameFirePunch:
.string "Fire Punch\0"
.align 2,0

.global MoveDescriptionFireSpin
MoveDescriptionFireSpin:
.string "Inflicts damage on the target.\nIt may also cause {COLOR_2 CYAN}constriction{END_COLOR_TEXT_2}.\nIt thaws and frees frozen Pokémon.\0"
.align 2,0

.global MoveNameFireSpin
MoveNameFireSpin:
.string "Fire Spin\0"
.align 2,0

.global MoveDescriptionBonemerang
MoveDescriptionBonemerang:
.string "Strikes the target twice{COMMA} even at a\ndistance.\0"
.align 2,0

.global MoveNameBonemerang
MoveNameBonemerang:
.string "Bonemerang\0"
.align 2,0

.global MoveNameBoneClub
MoveNameBoneClub:
.string "Bone Club\0"
.align 2,0

.global MoveDescriptionTailGlow
MoveDescriptionTailGlow:
.string "Boosts the user{APOSTROPHE}s {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2} by\ntwo levels.\0"
.align 2,0

.global MoveNameTailGlow
MoveNameTailGlow:
.string "Tail Glow\0"
.align 2,0

.global MoveNameCovet
MoveNameCovet:
.string "Covet\0"
.align 2,0

.global MoveDescriptionCamouflage
MoveDescriptionCamouflage:
.string "The user{APOSTROPHE}s type changes to match the\nterrain.\0"
.align 2,0

.global MoveNameCamouflage
MoveNameCamouflage:
.string "Camouflage\0"
.align 2,0

.global MoveNameBoneRush
MoveNameBoneRush:
.string "Bone Rush\0"
.align 2,0

.global MoveNameRoar
MoveNameRoar:
.string "Roar\0"
.align 2,0

.global MoveDescriptionPoisonTail
MoveDescriptionPoisonTail:
.string "Inflicts damage on the target.\nIt may also leave the target {COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2}.\nIt has a high critical-hit rate.\0"
.align 2,0

.global MoveNamePoisonTail
MoveNamePoisonTail:
.string "Poison Tail\0"
.align 2,0

.global MoveDescriptionTransform
MoveDescriptionTransform:
.string "The user gains the {COLOR_2 CYAN}Transformed{END_COLOR_TEXT_2} status.\nThe user transforms into a hostile\nPokémon that appears on the floor.\0"
.align 2,0

.global MoveNameGlare
MoveNameGlare:
.string "Glare\0"
.align 2,0

.global MoveDescriptionSludgeBomb
MoveDescriptionSludgeBomb:
.string "Inflicts damage on the target{COMMA} even at a\ndistance. It may also leave the target\n{COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2}{COMMA} damaging it for several turns.\0"
.align 2,0

.global MoveNameSludgeBomb
MoveNameSludgeBomb:
.string "Sludge Bomb\0"
.align 2,0

.global MoveDescriptionSludge
MoveDescriptionSludge:
.string "Inflicts damage on the target.\nIt may also leave the target {COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2}{COMMA}\ndamaging it for several turns.\0"
.align 2,0

.global MoveDescriptionEruption
MoveDescriptionEruption:
.string "Inflicts damage on the target.\nThe higher the user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}{COMMA} the greater\nthe damage.\nIt thaws and frees frozen Pokémon.\0"
.align 2,0

.global MoveDescriptionPresent
MoveDescriptionPresent:
.string "Either inflicts damage on the target\nor restores its {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNamePresent
MoveNamePresent:
.string "Present\0"
.align 2,0

.global MoveDescriptionBlazeKick
MoveDescriptionBlazeKick:
.string "Inflicts damage on the target.\nIt may also cause a {COLOR_2 CYAN}burn{END_COLOR_TEXT_2}.\nIt thaws and frees frozen Pokémon.\nIt has a high critical-hit rate.\0"
.align 2,0

.global MoveNameBlazeKick
MoveNameBlazeKick:
.string "Blaze Kick\0"
.align 2,0

.global MoveNameCrushClaw
MoveNameCrushClaw:
.string "Crush Claw\0"
.align 2,0

.global MoveDescriptionTeeterDance
MoveDescriptionTeeterDance:
.string "Inflicts the {COLOR_2 CYAN}Confused{END_COLOR_TEXT_2} status on all\nPokémon on the floor{COMMA} making their attacks\nand movements erratic.\0"
.align 2,0

.global MoveNameTeeterDance
MoveNameTeeterDance:
.string "Teeter Dance\0"
.align 2,0

.global MoveNameFlash
MoveNameFlash:
.string "Flash\0"
.align 2,0

.global MoveDescriptionBlastBurn
MoveDescriptionBlastBurn:
.string "Inflicts damage on the target. However{COMMA} it\nalso inflicts the {COLOR_2 CYAN}Paused{END_COLOR_TEXT_2} status on the user.\nIt also thaws and frees frozen Pokémon.\0"
.align 2,0

.global MoveNameBlastBurn
MoveNameBlastBurn:
.string "Blast Burn\0"
.align 2,0

.global MoveNameStomp
MoveNameStomp:
.string "Stomp\0"
.align 2,0

.global MoveNameBlizzard
MoveNameBlizzard:
.string "Blizzard\0"
.align 2,0

.global MoveDescriptionBeatUp
MoveDescriptionBeatUp:
.string "Summons the team members around\nthe user.\0"
.align 2,0

.global MoveNameBeatUp
MoveNameBeatUp:
.string "Beat Up\0"
.align 2,0

.global MoveDescriptionWhirlwind
MoveDescriptionWhirlwind:
.string "Knocks the target flying.\nIf the target hits a wall or another\nPokémon{COMMA} it sustains damage.\0"
.align 2,0

.global MoveNameWhirlwind
MoveNameWhirlwind:
.string "Whirlwind\0"
.align 2,0

.global MoveDescriptionFeatherdance
MoveDescriptionFeatherdance:
.string "Lowers the target{APOSTROPHE}s {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} by two levels.\0"
.align 2,0

.global MoveNameFeatherdance
MoveNameFeatherdance:
.string "Featherdance\0"
.align 2,0

.global MoveDescriptionImprison
MoveDescriptionImprison:
.string "Inflicts the {COLOR_2 CYAN}Paused{END_COLOR_TEXT_2} status on the target{COMMA}\nmaking it incapable of action.\0"
.align 2,0

.global MoveNameImprison
MoveNameImprison:
.string "Imprison\0"
.align 2,0

.global MoveDescriptionBulkUp
MoveDescriptionBulkUp:
.string "Raises the user{APOSTROPHE}s {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}\nby one level.\0"
.align 2,0

.global MoveNameBulkUp
MoveNameBulkUp:
.string "Bulk Up\0"
.align 2,0

.global MoveNameDizzyPunch
MoveNameDizzyPunch:
.string "Dizzy Punch\0"
.align 2,0

.global MoveDescriptionSecretPower
MoveDescriptionSecretPower:
.string "Inflicts damage on the target.\nIt may also trigger other effects\ndepending on the terrain.\0"
.align 2,0

.global MoveNameSecretPower
MoveNameSecretPower:
.string "Secret Power\0"
.align 2,0

.global MoveNameEmber
MoveNameEmber:
.string "Ember\0"
.align 2,0

.global MoveNameHyperFang
MoveNameHyperFang:
.string "Hyper Fang\0"
.align 2,0

.global MoveNameScratch
MoveNameScratch:
.string "Scratch\0"
.align 2,0

.global MoveDescriptionLightScreen
MoveDescriptionLightScreen:
.string "The user gains the {COLOR_2 CYAN}Light Screen{END_COLOR_TEXT_2} status.\nIt halves the damage from\n{COLOR_2 CYAN}Special Attack moves{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNameLightScreen
MoveNameLightScreen:
.string "Light Screen\0"
.align 2,0

.global MoveDescriptionBellyDrum
MoveDescriptionBellyDrum:
.string "Boosts the user{APOSTROPHE}s {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} to maximum{COMMA}\nbut empties its {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} to just one.\nIt has no effect if the {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} is one or less.\0"
.align 2,0

.global MoveNameBellyDrum
MoveNameBellyDrum:
.string "Belly Drum\0"
.align 2,0

.global MoveDescriptionFixedDamage
MoveDescriptionFixedDamage:
.string "The user gains the {COLOR_2 CYAN}Set Damage{END_COLOR_TEXT_2} status.\nIn this state{COMMA} all damage inflicted by the\nuser will remain constant.\0"
.align 2,0

.global MoveNameDoomDesire
MoveNameDoomDesire:
.string "Doom Desire\0"
.align 2,0

.global MoveNameBubblebeam
MoveNameBubblebeam:
.string "Bubblebeam\0"
.align 2,0

.global MoveDescriptionSplash
MoveDescriptionSplash:
.string "Makes the user flop around as it moves.\nIf there is another Pokémon where it\nlands{COMMA} both Pokémon are hurt.\0"
.align 2,0

.global MoveNameSplash
MoveNameSplash:
.string "Splash\0"
.align 2,0

.global MoveDescriptionPetalDance
MoveDescriptionPetalDance:
.string "Hits the target two to five times in\nsuccession. However it also makes the\nuser {COLOR_2 CYAN}confused{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNamePetalDance
MoveNamePetalDance:
.string "Petal Dance\0"
.align 2,0

.global MoveDescriptionBatonPass
MoveDescriptionBatonPass:
.string "Successively switches the user{APOSTROPHE}s position\nwith the positions of other Pokémon in\nthe room.\0"
.align 2,0

.global MoveNameBatonPass
MoveNameBatonPass:
.string "Baton Pass\0"
.align 2,0

.global MoveDescriptionHighCriticalDistance
MoveDescriptionHighCriticalDistance:
.string "Inflicts damage on the target{COMMA} even at a\ndistance.\nIt has a high critical-hit rate.\0"
.align 2,0

.global MoveNameRazorLeaf
MoveNameRazorLeaf:
.string "Razor Leaf\0"
.align 2,0

.global MoveNamePound
MoveNamePound:
.string "Pound\0"
.align 2,0

.global MoveDescriptionKnockOff
MoveDescriptionKnockOff:
.string "Knocks the target{APOSTROPHE}s hold item to\nthe ground.\0"
.align 2,0

.global MoveNameKnockOff
MoveNameKnockOff:
.string "Knock Off\0"
.align 2,0

.global MoveNameVicegrip
MoveNameVicegrip:
.string "Vicegrip\0"
.align 2,0

.global MoveNameGuillotine
MoveNameGuillotine:
.string "Guillotine\0"
.align 2,0

.global MoveDescriptionDynamicpunch
MoveDescriptionDynamicpunch:
.string "Inflicts damage on the target.\nIt also leaves the target {COLOR_2 CYAN}confused{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNameDynamicpunch
MoveNameDynamicpunch:
.string "Dynamicpunch\0"
.align 2,0

.global MoveDescriptionSpitUp
MoveDescriptionSpitUp:
.string "Inflicts damage on the target.\nIts power depends on how often the move\n{COLOR_2 GREEN}Stockpile{END_COLOR_TEXT_2} was used before.\0"
.align 2,0

.global MoveNameSpitUp
MoveNameSpitUp:
.string "Spit Up\0"
.align 2,0

.global MoveDescriptionSteelWing
MoveDescriptionSteelWing:
.string "Inflicts damage on the target.\nIt may also raise the user{APOSTROPHE}s {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by\none level.\0"
.align 2,0

.global MoveNameSteelWing
MoveNameSteelWing:
.string "Steel Wing\0"
.align 2,0

.global MoveDescriptionSuperpower
MoveDescriptionSuperpower:
.string "Inflicts damage on the target.\nHowever{COMMA} it also lowers the user{APOSTROPHE}s\n{COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by one level.\0"
.align 2,0

.global MoveDescriptionHyperBeam
MoveDescriptionHyperBeam:
.string "Inflicts damage on the target{COMMA} even at a\ndistance. It also inflicts the {COLOR_2 CYAN}Paused{END_COLOR_TEXT_2} status\non the user{COMMA} making it incapable of action.\0"
.align 2,0

.global MoveNameHyperBeam
MoveNameHyperBeam:
.string "Hyper Beam\0"
.align 2,0

.global MoveNameHyperVoice
MoveNameHyperVoice:
.string "Hyper Voice\0"
.align 2,0

.global MoveDescriptionHydroPump
MoveDescriptionHydroPump:
.string "Inflicts damage on the target{COMMA} even at a\ndistance.\0"
.align 2,0

.global MoveNameHydroPump
MoveNameHydroPump:
.string "Hydro Pump\0"
.align 2,0

.global MoveDescriptionHydroCannon
MoveDescriptionHydroCannon:
.string "Inflicts damage on the target{COMMA} even at a\ndistance. It also inflicts the {COLOR_2 CYAN}Paused{END_COLOR_TEXT_2}\nstatus on the user{COMMA} making it incapable\nof action.\0"
.align 2,0

.global MoveNameHydroCannon
MoveNameHydroCannon:
.string "Hydro Cannon\0"
.align 2,0

.global MoveDescriptionFrenzyPlant
MoveDescriptionFrenzyPlant:
.string "Inflicts damage on the target.\nHowever{COMMA} it also inflicts the {COLOR_2 CYAN}Paused{END_COLOR_TEXT_2} status\non the user{COMMA} making it incapable of action.\0"
.align 2,0

.global MoveNameFrenzyPlant
MoveNameFrenzyPlant:
.string "Frenzy Plant\0"
.align 2,0

.global MoveDescriptionCurse
MoveDescriptionCurse:
.string "Boosts the user{APOSTROPHE}s {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by\none level{COMMA} but also lowers {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2}\nby one level. If used by a Ghost type{COMMA} the\ntarget is {COLOR_2 CYAN}cursed{END_COLOR_TEXT_2}{COMMA} and the user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} halved.\0"
.align 2,0

.global MoveNameCurse
MoveNameCurse:
.string "Curse\0"
.align 2,0

.global MoveDescriptionSwallow
MoveDescriptionSwallow:
.string "Restores the user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\nThe {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} recovered depends on how often\nthe move {COLOR_2 GREEN}Stockpile{END_COLOR_TEXT_2} was used before.\0"
.align 2,0

.global MoveNameBodySlam
MoveNameBodySlam:
.string "Body Slam\0"
.align 2,0

.global MoveDescriptionConfuseChance
MoveDescriptionConfuseChance:
.string "Inflicts damage on the target.\nIt may also leave the target {COLOR_2 CYAN}confused{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNameConfusion
MoveNameConfusion:
.string "Confusion\0"
.align 2,0

.global MoveDescriptionIngrain
MoveDescriptionIngrain:
.string "The user gains the {COLOR_2 CYAN}Ingrain{END_COLOR_TEXT_2} status.\nThe user becomes incapable of moving{COMMA}\nbut regains {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} over several turns.\0"
.align 2,0

.global MoveNameIngrain
MoveNameIngrain:
.string "Ingrain\0"
.align 2,0

.global MoveDescriptionRest
MoveDescriptionRest:
.string "The user gains the {COLOR_2 CYAN}Napping{END_COLOR_TEXT_2} status.\nUpon awakening{COMMA} the Pokémon regains {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}\nand recovers from any status problems.\0"
.align 2,0

.global MoveNameRest
MoveNameRest:
.string "Rest\0"
.align 2,0

.global MoveDescriptionSleepPowder
MoveDescriptionSleepPowder:
.string "Makes all foes around the user go to\n{COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}{COMMA} making them incapable of action.\0"
.align 2,0

.global MoveNameSleepPowder
MoveNameSleepPowder:
.string "Sleep Powder\0"
.align 2,0

.global MoveDescriptionHeatWave
MoveDescriptionHeatWave:
.string "Inflicts damage on foes in the room.\nIt may also cause a {COLOR_2 CYAN}burn{END_COLOR_TEXT_2}.\nIt thaws and frees frozen Pokémon.\0"
.align 2,0

.global MoveNameHeatWave
MoveNameHeatWave:
.string "Heat Wave\0"
.align 2,0

.global MoveUseTextAssist
MoveUseTextAssist:
.string "{ARG_POKEMON_0} chose {ARG_MOVE_ITEM_0}!\0"
.align 2,0

.global MoveDescriptionAssist
MoveDescriptionAssist:
.string "Makes the user randomly use one move\nout of all the moves of the Pokémon on\nthe floor.\0"
.align 2,0

.global MoveNameAssist
MoveNameAssist:
.string "Assist\0"
.align 2,0

.global MoveDescriptionPayDay
MoveDescriptionPayDay:
.string "Inflicts damage on the target.\nIf the foe faints{COMMA} it will drop money.\0"
.align 2,0

.global MoveNamePayDay
MoveNamePayDay:
.string "Pay Day\0"
.align 2,0

.global MoveDescriptionSleepTalk
MoveDescriptionSleepTalk:
.string "Makes the user deploy one of its moves\nagainst a foe that attacks it while it is\nsleeping.\0"
.align 2,0

.global MoveNameSleepTalk
MoveNameSleepTalk:
.string "Sleep Talk\0"
.align 2,0

.global MoveDescriptionFakeOut
MoveDescriptionFakeOut:
.string "Inflicts damage on the target.\nIt may also make the target {COLOR_2 CYAN}cringe{END_COLOR_TEXT_2}.\nIt reaches up to two tiles ahead.\0"
.align 2,0

.global MoveNameFakeOut
MoveNameFakeOut:
.string "Fake Out\0"
.align 2,0

.global MoveDescriptionWish
MoveDescriptionWish:
.string "The user gains the {COLOR_2 CYAN}Wish{END_COLOR_TEXT_2} status.\nIt boosts the user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} recovery rate.\0"
.align 2,0

.global MoveNameLeer
MoveNameLeer:
.string "Leer\0"
.align 2,0

.global MoveDescriptionSunnyDay
MoveDescriptionSunnyDay:
.string "Changes the dungeon floor{APOSTROPHE}s weather to\n{COLOR_2 CYAN}Sunny{END_COLOR_TEXT_2} over several turns.\0"
.align 2,0

.global MoveNameSunnyDay
MoveNameSunnyDay:
.string "Sunny Day\0"
.align 2,0

.global MoveDescriptionHitTwice
MoveDescriptionHitTwice:
.string "Attacks the target twice in succession.\0"
.align 2,0

.global MoveNameDoubleKick
MoveNameDoubleKick:
.string "Double Kick\0"
.align 2,0

.global MoveNameNeedleArm
MoveNameNeedleArm:
.string "Needle Arm\0"
.align 2,0

.global MoveDescriptionRolePlay
MoveDescriptionRolePlay:
.string "Copies the target{APOSTROPHE}s {COLOR_2 YELLOW}Special Ability{END_COLOR_TEXT_2}.\nThe user regains its own {COLOR_2 YELLOW}Special Ability{END_COLOR_TEXT_2}\nwhen it leaves the floor.\0"
.align 2,0

.global MoveNameRolePlay
MoveNameRolePlay:
.string "Role Play\0"
.align 2,0

.global MoveDescriptionSurf
MoveDescriptionSurf:
.string "Inflicts damage on the target.\nInflicts double damage on a {COLOR_2 CYAN}diving{END_COLOR_TEXT_2} foe.\0"
.align 2,0

.global MoveNameSurf
MoveNameSurf:
.string "Surf\0"
.align 2,0

.global MoveNameSlackOff
MoveNameSlackOff:
.string "Slack Off\0"
.align 2,0

.global MoveDescriptionGrowl
MoveDescriptionGrowl:
.string "Lowers the {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} of all foes in the room\nby one level.\0"
.align 2,0

.global MoveNameGrowl
MoveNameGrowl:
.string "Growl\0"
.align 2,0

.global MoveDescriptionNightShade
MoveDescriptionNightShade:
.string "Damages all foes around the user.\nThe amount of damage depends on the\nuser{APOSTROPHE}s {COLOR_2 YELLOW}level{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNameNightShade
MoveNameNightShade:
.string "Night Shade\0"
.align 2,0

.global MoveDescriptionAmnesia
MoveDescriptionAmnesia:
.string "Boosts the user{APOSTROPHE}s {COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2} by\ntwo levels.\0"
.align 2,0

.global MoveNameAmnesia
MoveNameAmnesia:
.string "Amnesia\0"
.align 2,0

.global MoveDescriptionThief
MoveDescriptionThief:
.string "Inflicts damage on the target.\nIt also snatches the target{APOSTROPHE}s hold item\nto make it the user{APOSTROPHE}s.\0"
.align 2,0

.global MoveNameThief
MoveNameThief:
.string "Thief\0"
.align 2,0

.global MoveDescriptionMudSlap
MoveDescriptionMudSlap:
.string "Inflicts damage on the target.\nIt also lowers the target{APOSTROPHE}s {COLOR_2 YELLOW}Accuracy{END_COLOR_TEXT_2} by\none level.\0"
.align 2,0

.global MoveNameMudSlap
MoveNameMudSlap:
.string "Mud-Slap\0"
.align 2,0

.global MoveDescriptionMudSport
MoveDescriptionMudSport:
.string "Changes the floor{APOSTROPHE}s status to {COLOR_2 CYAN}Mud Sport{END_COLOR_TEXT_2}{COMMA}\nwhich halves the power of Electric-type\nmoves.\0"
.align 2,0

.global MoveNameMudSport
MoveNameMudSport:
.string "Mud Sport\0"
.align 2,0

.global MoveNameDrillPeck
MoveNameDrillPeck:
.string "Drill Peck\0"
.align 2,0

.global MoveDescriptionTripleKick
MoveDescriptionTripleKick:
.string "Kicks the target three times.\nIts power rises with every kick.\0"
.align 2,0

.global MoveNameTripleKick
MoveNameTripleKick:
.string "Triple Kick\0"
.align 2,0

.global MoveDescriptionTrick
MoveDescriptionTrick:
.string "Switches the user{APOSTROPHE}s hold item with the\ntarget{APOSTROPHE}s hold item.\nIt only works if both Pokémon hold items.\0"
.align 2,0

.global MoveNameTrick
MoveNameTrick:
.string "Trick\0"
.align 2,0

.global MoveNameDragonClaw
MoveNameDragonClaw:
.string "Dragon Claw\0"
.align 2,0

.global MoveDescriptionTriAttack
MoveDescriptionTriAttack:
.string "Inflicts damage on the target.\nIt may also cause a {COLOR_2 CYAN}burn{END_COLOR_TEXT_2}{COMMA}\n{COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}{COMMA} or leave the target {COLOR_2 CYAN}frozen{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNameTriAttack
MoveNameTriAttack:
.string "Tri Attack\0"
.align 2,0

.global MoveNameHiJumpKick
MoveNameHiJumpKick:
.string "Hi Jump Kick\0"
.align 2,0

.global MoveDescriptionBounce
MoveDescriptionBounce:
.string "The user gains the {COLOR_2 CYAN}Bouncing{END_COLOR_TEXT_2} status{COMMA}\nmaking it attack strongly on the next turn.\nIt may also cause {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0"
.align 2,0

.global MoveDescriptionJumpKick
MoveDescriptionJumpKick:
.string "Inflicts damage on the target{COMMA} but hurts\nthe user if it misses.\0"
.align 2,0

.global MoveNameJumpKick
MoveNameJumpKick:
.string "Jump Kick\0"
.align 2,0

.global MoveDescriptionTakeDown
MoveDescriptionTakeDown:
.string "Inflicts damage on the target{COMMA} but also\nhurts the user.\0"
.align 2,0

.global MoveNameTakeDown
MoveNameTakeDown:
.string "Take Down\0"
.align 2,0

.global MoveNameAcidArmor
MoveNameAcidArmor:
.string "Acid Armor\0"
.align 2,0

.global MoveNameSpikeCannon
MoveNameSpikeCannon:
.string "Spike Cannon\0"
.align 2,0

.global MoveNamePoisonSting
MoveNamePoisonSting:
.string "Poison Sting\0"
.align 2,0

.global MoveNamePoisonpowder
MoveNamePoisonpowder:
.string "Poisonpowder\0"
.align 2,0

.global MoveDescriptionPoisonFang
MoveDescriptionPoisonFang:
.string "Inflicts damage on the target.\nIt may also leave the target\n{COLOR_2 CYAN}badly poisoned{END_COLOR_TEXT_2}{COMMA} damaging it over\nseveral turns.\0"
.align 2,0

.global MoveNamePoisonFang
MoveNamePoisonFang:
.string "Poison Fang\0"
.align 2,0

.global MoveDescriptionToxic
MoveDescriptionToxic:
.string "{COLOR_2 CYAN}Badly poisons{END_COLOR_TEXT_2} the target.\nIf a Pokémon is {COLOR_2 CYAN}badly poisoned{END_COLOR_TEXT_2}{COMMA} it\nsustains damage over several turns.\0"
.align 2,0

.global MoveNameToxic
MoveNameToxic:
.string "Toxic\0"
.align 2,0

.global MoveDescriptionPoison
MoveDescriptionPoison:
.string "{COLOR_2 CYAN}Poisons{END_COLOR_TEXT_2} the target.\nIf a Pokémon is {COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2}{COMMA} it sustains\ndamage over several turns.\0"
.align 2,0

.global MoveNameHowl
MoveNameHowl:
.string "Howl\0"
.align 2,0

.global MoveDescriptionBlock
MoveDescriptionBlock:
.string "Inflicts the {COLOR_2 CYAN}Leg Hold{END_COLOR_TEXT_2} status on the\ntarget{COMMA} making it incapable of movement.\0"
.align 2,0

.global MoveNameBlock
MoveNameBlock:
.string "Block\0"
.align 2,0

.global MoveDescriptionZapCannon
MoveDescriptionZapCannon:
.string "Inflicts damage on the target{COMMA} even at a\ndistance. It also causes {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}{COMMA}\npreventing any attacks or moves.\0"
.align 2,0

.global MoveNameZapCannon
MoveNameZapCannon:
.string "Zap Cannon\0"
.align 2,0

.global MoveNameThunderWave
MoveNameThunderWave:
.string "Thunder Wave\0"
.align 2,0

.global MoveNameSweetKiss
MoveNameSweetKiss:
.string "Sweet Kiss\0"
.align 2,0

.global MoveNameQuickAttack
MoveNameQuickAttack:
.string "Quick Attack\0"
.align 2,0

.global MoveDescriptionShockWave
MoveDescriptionShockWave:
.string "Inflicts damage on the target{COMMA} even at a\ndistance.\nIt never misses.\0"
.align 2,0

.global MoveNameShockWave
MoveNameShockWave:
.string "Shock Wave\0"
.align 2,0

.global MoveNameThundershock
MoveNameThundershock:
.string "Thundershock\0"
.align 2,0

.global MoveDescriptionTeleport
MoveDescriptionTeleport:
.string "Warps the user to another spot on the\nsame floor.\0"
.align 2,0

.global MoveNameTeleport
MoveNameTeleport:
.string "Teleport\0"
.align 2,0

.global MoveDescriptionBoostDefenseTwo
MoveDescriptionBoostDefenseTwo:
.string "Boosts the user{APOSTROPHE}s {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by two levels.\0"
.align 2,0

.global MoveNameIronDefense
MoveNameIronDefense:
.string "Iron Defense\0"
.align 2,0

.global MoveDescriptionHelpingHand
MoveDescriptionHelpingHand:
.string "Boosts the {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2} of\nteam members in the same room by one\nlevel.\0"
.align 2,0

.global MoveNameHelpingHand
MoveNameHelpingHand:
.string "Helping Hand\0"
.align 2,0

.global MoveDescriptionConversion2
MoveDescriptionConversion2:
.string "The user gains the {COLOR_2 CYAN}Conversion 2{END_COLOR_TEXT_2} status.\nIt changes the user{APOSTROPHE}s type to one that is\nstrong against the move type it took last.\0"
.align 2,0

.global MoveNameConversion2
MoveNameConversion2:
.string "Conversion 2\0"
.align 2,0

.global MoveDescriptionConversion
MoveDescriptionConversion:
.string "Changes the user{APOSTROPHE}s type into the same\ntype as one of its moves.\0"
.align 2,0

.global MoveNameConversion
MoveNameConversion:
.string "Conversion\0"
.align 2,0

.global MoveNameVineWhip
MoveNameVineWhip:
.string "Vine Whip\0"
.align 2,0

.global MoveDescriptionSwordsDance
MoveDescriptionSwordsDance:
.string "Boosts the user{APOSTROPHE}s {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} by two levels.\0"
.align 2,0

.global MoveNameSwordsDance
MoveNameSwordsDance:
.string "Swords Dance\0"
.align 2,0

.global MoveNameIcicleSpear
MoveNameIcicleSpear:
.string "Icicle Spear\0"
.align 2,0

.global MoveNameAerialAce
MoveNameAerialAce:
.string "Aerial Ace\0"
.align 2,0

.global MoveNameWingAttack
MoveNameWingAttack:
.string "Wing Attack\0"
.align 2,0

.global MoveDescriptionOneHit
MoveDescriptionOneHit:
.string "Defeats the target in one shot--if it hits.\nIt has no effect on a Ghost-type foe.\0"
.align 2,0

.global MoveNameHornDrill
MoveNameHornDrill:
.string "Horn Drill\0"
.align 2,0

.global MoveNameHornAttack
MoveNameHornAttack:
.string "Horn Attack\0"
.align 2,0

.global MoveNamePeck
MoveNamePeck:
.string "Peck\0"
.align 2,0

.global MoveDescriptionMoonlight
MoveDescriptionMoonlight:
.string "Restores the {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} of the user and team\nmembers on the same floor. The amount of\n{COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} recovered depends on the weather.\0"
.align 2,0

.global MoveDescriptionTaunt
MoveDescriptionTaunt:
.string "Inflicts the {COLOR_2 CYAN}Taunted{END_COLOR_TEXT_2} status\non the targeted Pokémon.\0"
.align 2,0

.global MoveNameTaunt
MoveNameTaunt:
.string "Taunt\0"
.align 2,0

.global MoveDescriptionConfuse
MoveDescriptionConfuse:
.string "Inflicts the {COLOR_2 CYAN}Confused{END_COLOR_TEXT_2} status on the\ntarget{COMMA} making its attacks and\nmovements erratic.\0"
.align 2,0

.global MoveNameSupersonic
MoveNameSupersonic:
.string "Supersonic\0"
.align 2,0

.global MoveDescriptionSeismicToss
MoveDescriptionSeismicToss:
.string "Inflicts damage on the target.\nThe amount of damage depends on the\nuser{APOSTROPHE}s {COLOR_2 YELLOW}level{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNameSeismicToss
MoveNameSeismicToss:
.string "Seismic Toss\0"
.align 2,0

.global MoveNameMinimize
MoveNameMinimize:
.string "Minimize\0"
.align 2,0

.global MoveNameBarrage
MoveNameBarrage:
.string "Barrage\0"
.align 2,0

.global MoveNameFaintAttack
MoveNameFaintAttack:
.string "Faint Attack\0"
.align 2,0

.global MoveNameEggBomb
MoveNameEggBomb:
.string "Egg Bomb\0"
.align 2,0

.global MoveDescriptionSoftboiled
MoveDescriptionSoftboiled:
.string "Restores the {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} of the user and team\nmembers in the same room by one quarter\nof their {COLOR_2 YELLOW}maximum HP{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNameSoftboiled
MoveNameSoftboiled:
.string "Softboiled\0"
.align 2,0

.global MoveDescriptionTwineedle
MoveDescriptionTwineedle:
.string "Hits the target twice{COMMA} even at a distance.\nIt may also leave the target {COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2}{COMMA}\ndamaging it over several turns.\0"
.align 2,0

.global MoveNameTwineedle
MoveNameTwineedle:
.string "Twineedle\0"
.align 2,0

.global MoveDescriptionMultiHitDistance
MoveDescriptionMultiHitDistance:
.string "Inflicts damage on the target{COMMA} even at a\ndistance.\nIt hits two to five times in succession.\0"
.align 2,0

.global MoveNameBulletSeed
MoveNameBulletSeed:
.string "Bullet Seed\0"
.align 2,0

.global MoveDescriptionTwister
MoveDescriptionTwister:
.string "Inflicts damage on the target. It may also\ncause the target to {COLOR_2 CYAN}cringe{END_COLOR_TEXT_2}{COMMA} making\nit incapable of action. Doubles damage\non a {COLOR_2 CYAN}flying{END_COLOR_TEXT_2} or {COLOR_2 CYAN}bouncing{END_COLOR_TEXT_2} Pokémon.\0"
.align 2,0

.global MoveNameTwister
MoveNameTwister:
.string "Twister\0"
.align 2,0

.global MoveNameSlam
MoveNameSlam:
.string "Slam\0"
.align 2,0

.global MoveDescriptionStockpile
MoveDescriptionStockpile:
.string "Stockpiles power for up to three turns.\nThe stored power boosts the performance\nof the moves {COLOR_2 GREEN}Swallow{END_COLOR_TEXT_2} and {COLOR_2 GREEN}Spit Up{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNameStockpile
MoveNameStockpile:
.string "Stockpile\0"
.align 2,0

.global MoveDescriptionMuddyWater
MoveDescriptionMuddyWater:
.string "Inflicts damage on the target.\nIt may also lower the target{APOSTROPHE}s {COLOR_2 YELLOW}Accuracy{END_COLOR_TEXT_2}\nby one level.\0"
.align 2,0

.global MoveNameMuddyWater
MoveNameMuddyWater:
.string "Muddy Water\0"
.align 2,0

.global MoveNameWaterfall
MoveNameWaterfall:
.string "Waterfall\0"
.align 2,0

.global MoveNameFireBlast
MoveNameFireBlast:
.string "Fire Blast\0"
.align 2,0

.global MoveDescriptionDive
MoveDescriptionDive:
.string "The user gains the {COLOR_2 CYAN}Diving{END_COLOR_TEXT_2} status{COMMA}\nmaking it attack strongly on the next turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\nIt can{APOSTROPHE}t be used without water.\0"
.align 2,0

.global MoveNameDive
MoveNameDive:
.string "Dive\0"
.align 2,0

.global MoveDescriptionExplosion
MoveDescriptionExplosion:
.string "Makes the user blow up in\na {COLOR_2 CYAN}huge explosion{END_COLOR_TEXT_2}{COMMA} inflicting damage on all\nsurrounding Pokémon. It also destroys\nsurrounding items and walls.\0"
.align 2,0

.global MoveNameExplosion
MoveNameExplosion:
.string "Explosion\0"
.align 2,0

.global MoveNameTackle
MoveNameTackle:
.string "Tackle\0"
.align 2,0

.global MoveDescriptionFly
MoveDescriptionFly:
.string "The user gains the {COLOR_2 CYAN}Flying{END_COLOR_TEXT_2} status{COMMA} \nmaking it attack strongly on the next turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0"
.align 2,0

.global MoveNameFly
MoveNameFly:
.string "Fly\0"
.align 2,0

.global MoveDescriptionSonicboom
MoveDescriptionSonicboom:
.string "Inflicts a set amount of damage on the\ntarget{COMMA} even at a distance.\0"
.align 2,0

.global MoveNameSonicboom
MoveNameSonicboom:
.string "Sonicboom\0"
.align 2,0

.global MoveDescriptionSolarbeam
MoveDescriptionSolarbeam:
.string "The user gains the {COLOR_2 CYAN}Solarbeam{END_COLOR_TEXT_2} status{COMMA}\nmaking it attack strongly on the next turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0"
.align 2,0

.global MoveNameSolarbeam
MoveNameSolarbeam:
.string "Solarbeam\0"
.align 2,0

.global MoveDescriptionSheerCold
MoveDescriptionSheerCold:
.string "Defeats the target in one shot--if it hits.\0"
.align 2,0

.global MoveNameSheerCold
MoveNameSheerCold:
.string "Sheer Cold\0"
.align 2,0

.global MoveDescriptionSacredFire
MoveDescriptionSacredFire:
.string "Inflicts damage on the target.\nIt may also cause a {COLOR_2 CYAN}burn{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNameSacredFire
MoveNameSacredFire:
.string "Sacred Fire\0"
.align 2,0

.global MoveDescriptionGrowth
MoveDescriptionGrowth:
.string "Boosts the user{APOSTROPHE}s {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2} by one\nlevel.\0"
.align 2,0

.global MoveNameGrowth
MoveNameGrowth:
.string "Growth\0"
.align 2,0

.global MoveDescriptionPoisonChance
MoveDescriptionPoisonChance:
.string "Inflicts damage on the target.\nIt may also leave the target {COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2}{COMMA}\ndamaging it over several turns.\0"
.align 2,0

.global MoveNameSmog
MoveNameSmog:
.string "Smog\0"
.align 2,0

.global MoveNameKinesis
MoveNameKinesis:
.string "Kinesis\0"
.align 2,0

.global MoveNameSwift
MoveNameSwift:
.string "Swift\0"
.align 2,0

.global MoveNameSpark
MoveNameSpark:
.string "Spark\0"
.align 2,0

.global MoveNameSandTomb
MoveNameSandTomb:
.string "Sand Tomb\0"
.align 2,0

.global MoveDescriptionLowerAccuracy
MoveDescriptionLowerAccuracy:
.string "Lowers the target{APOSTROPHE}s {COLOR_2 YELLOW}Accuracy{END_COLOR_TEXT_2} by one level.\0"
.align 2,0

.global MoveNameSandAttack
MoveNameSandAttack:
.string "Sand-Attack\0"
.align 2,0

.global MoveDescriptionSandstorm
MoveDescriptionSandstorm:
.string "Changes the dungeon floor{APOSTROPHE}s weather to\n{COLOR_2 CYAN}Sandstorm{END_COLOR_TEXT_2} for several turns.\0"
.align 2,0

.global MoveNameSandstorm
MoveNameSandstorm:
.string "Sandstorm\0"
.align 2,0

.global MoveNameDoubleEdge
MoveNameDoubleEdge:
.string "Double-Edge\0"
.align 2,0

.global MoveNameHeadbutt
MoveNameHeadbutt:
.string "Headbutt\0"
.align 2,0

.global MoveDescriptionSketch
MoveDescriptionSketch:
.string "Copies the move last used by the target\nand makes it the user{APOSTROPHE}s.\n{COLOR_2 GREEN}Sketch{END_COLOR_TEXT_2} disappears after it copies a move.\0"
.align 2,0

.global MoveNameSketch
MoveNameSketch:
.string "Sketch\0"
.align 2,0

.global MoveDescriptionSkillSwap
MoveDescriptionSkillSwap:
.string "Switches the user{APOSTROPHE}s {COLOR_2 YELLOW}Special Ability{END_COLOR_TEXT_2} with\nthat of the target.\0"
.align 2,0

.global MoveNameSkillSwap
MoveNameSkillSwap:
.string "Skill Swap\0"
.align 2,0

.global MoveDescriptionSkyUppercut
MoveDescriptionSkyUppercut:
.string "Inflicts damage on the target.\nIt hits even a Pokémon that is either\n{COLOR_2 CYAN}flying{END_COLOR_TEXT_2} or {COLOR_2 CYAN}bouncing{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNameSkyUppercut
MoveNameSkyUppercut:
.string "Sky Uppercut\0"
.align 2,0

.global MoveNameAbsorb
MoveNameAbsorb:
.string "Absorb\0"
.align 2,0

.global MoveDescriptionSafeguard
MoveDescriptionSafeguard:
.string "The user and team members in the same\nroom gain the {COLOR_2 CYAN}Safeguard{END_COLOR_TEXT_2} status{COMMA}\nwhich prevents status problems.\0"
.align 2,0

.global MoveNameSafeguard
MoveNameSafeguard:
.string "Safeguard\0"
.align 2,0

.global MoveDescriptionExtrasensory
MoveDescriptionExtrasensory:
.string "Inflicts damage on the target.\nIt may also cause the target to {COLOR_2 CYAN}cringe{END_COLOR_TEXT_2}{COMMA}\nmaking it incapable of attacking\nor using moves.\0"
.align 2,0

.global MoveNameExtrasensory
MoveNameExtrasensory:
.string "Extrasensory\0"
.align 2,0

.global MoveDescriptionTwoTilesAhead
MoveDescriptionTwoTilesAhead:
.string "Inflicts damage on a target up to\ntwo tiles ahead.\0"
.align 2,0

.global MoveNameExtremespeed
MoveNameExtremespeed:
.string "Extremespeed\0"
.align 2,0

.global MoveDescriptionFissure
MoveDescriptionFissure:
.string "Defeats the target in one shot--if it hits.\nIt has no effect on a flying foe.\0"
.align 2,0

.global MoveNameFissure
MoveNameFissure:
.string "Fissure\0"
.align 2,0

.global MoveDescriptionMist
MoveDescriptionMist:
.string "The user gains the {COLOR_2 CYAN}Mist{END_COLOR_TEXT_2} status.\nIt prevents {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}{COMMA} {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}{COMMA} {COLOR_2 YELLOW}Special\nAttack{END_COLOR_TEXT_2}{COMMA} {COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2}{COMMA} {COLOR_2 YELLOW}Accuracy{END_COLOR_TEXT_2}{COMMA} and\n{COLOR_2 YELLOW}Evasion{END_COLOR_TEXT_2} from being reduced.\0"
.align 2,0

.global MoveNameMist
MoveNameMist:
.string "Mist\0"
.align 2,0

.global MoveDescriptionThunderbolt
MoveDescriptionThunderbolt:
.string "Damages all foes around the user.\nIt may also cause {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2} and prevent\nany attacks or moves.\0"
.align 2,0

.global MoveNameThunderbolt
MoveNameThunderbolt:
.string "Thunderbolt\0"
.align 2,0

.global MoveDescriptionCharge
MoveDescriptionCharge:
.string "The user gains the {COLOR_2 CYAN}Charging{END_COLOR_TEXT_2} status.\nIt boosts the power of the Electric-type\nmove to be used next.\0"
.align 2,0

.global MoveNameCharge
MoveNameCharge:
.string "Charge\0"
.align 2,0

.global MoveDescriptionShadowBall
MoveDescriptionShadowBall:
.string "Inflicts damage on the target{COMMA} even at a\ndistance. It may also lower the target{APOSTROPHE}s\n{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2} by one level.\0"
.align 2,0

.global MoveNameShadowBall
MoveNameShadowBall:
.string "Shadow Ball\0"
.align 2,0

.global MoveDescriptionNeverMiss
MoveDescriptionNeverMiss:
.string "Inflicts damage on the target.\nIt never misses.\0"
.align 2,0

.global MoveNameShadowPunch
MoveNameShadowPunch:
.string "Shadow Punch\0"
.align 2,0

.global MoveNameBind
MoveNameBind:
.string "Bind\0"
.align 2,0

.global MoveDescriptionStunSpore
MoveDescriptionStunSpore:
.string "Causes {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2} in surrounding foes.\nA Pokémon affected by {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2} is\nincapable of attacking or using moves.\0"
.align 2,0

.global MoveNameStunSpore
MoveNameStunSpore:
.string "Stun Spore\0"
.align 2,0

.global MoveDescriptionSelfdestruct
MoveDescriptionSelfdestruct:
.string "Makes the user {COLOR_2 CYAN}explode{END_COLOR_TEXT_2}{COMMA} inflicting\ndamage on all surrounding Pokémon.\nIt also destroys surrounding items.\0"
.align 2,0

.global MoveNameSelfdestruct
MoveNameSelfdestruct:
.string "Selfdestruct\0"
.align 2,0

.global MoveDescriptionLowerDefense
MoveDescriptionLowerDefense:
.string "Lowers the target{APOSTROPHE}s {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by one level.\0"
.align 2,0

.global MoveNameTailWhip
MoveNameTailWhip:
.string "Tail Whip\0"
.align 2,0

.global MoveDescriptionFlail
MoveDescriptionFlail:
.string "Inflicts damage on the target.\nThe lower the user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}{COMMA} the greater\nthe damage.\0"
.align 2,0

.global MoveNameFlail
MoveNameFlail:
.string "Flail\0"
.align 2,0

.global MoveNameLick
MoveNameLick:
.string "Lick\0"
.align 2,0

.global MoveDescriptionNaturePower
MoveDescriptionNaturePower:
.string "Looses a variety of moves depending\non the dungeon terrain.\0"
.align 2,0

.global MoveNameNaturePower
MoveNameNaturePower:
.string "Nature Power\0"
.align 2,0

.global MoveDescriptionEarthquake
MoveDescriptionEarthquake:
.string "Damages all Pokémon in the same room.\nIt inflicts double damage on any {COLOR_2 CYAN}digging{END_COLOR_TEXT_2}\nPokémon.\0"
.align 2,0

.global MoveNameEarthquake
MoveNameEarthquake:
.string "Earthquake\0"
.align 2,0

.global MoveDescriptionRecover
MoveDescriptionRecover:
.string "Restores the user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} by half its\n{COLOR_2 YELLOW}maximum HP{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNameRecover
MoveNameRecover:
.string "Recover\0"
.align 2,0

.global MoveDescriptionRecoil
MoveDescriptionRecoil:
.string "Inflicts damage on the target.\nHowever{COMMA} it also damages the user.\0"
.align 2,0

.global MoveNameSubmission
MoveNameSubmission:
.string "Submission\0"
.align 2,0

.global MoveDescriptionPsychUp
MoveDescriptionPsychUp:
.string "Copies the target{APOSTROPHE}s levels for stats such\nas {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNamePsychUp
MoveNamePsychUp:
.string "Psych Up\0"
.align 2,0

.global MoveNameSignalBeam
MoveNameSignalBeam:
.string "Signal Beam\0"
.align 2,0

.global MoveDescriptionWaterSpout
MoveDescriptionWaterSpout:
.string "Inflicts damage on the target.\nThe higher the user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}{COMMA} the greater\nthe damage.\0"
.align 2,0

.global MoveNameWaterSpout
MoveNameWaterSpout:
.string "Water Spout\0"
.align 2,0

.global MoveDescriptionUproar
MoveDescriptionUproar:
.string "The user and team members in the room\ngain the {COLOR_2 CYAN}Sleepless{END_COLOR_TEXT_2} status{COMMA}\nso they cannot fall asleep.\nIt also awakens sleeping team members.\0"
.align 2,0

.global MoveNameUproar
MoveNameUproar:
.string "Uproar\0"
.align 2,0

.global MoveDescriptionPsychoBoost
MoveDescriptionPsychoBoost:
.string "Inflicts damage on the target.\nHowever{COMMA} it also lowers the user{APOSTROPHE}s {COLOR_2 YELLOW}Special\nAttack{END_COLOR_TEXT_2} by two levels.\0"
.align 2,0

.global MoveNamePsychoBoost
MoveNamePsychoBoost:
.string "Psycho Boost\0"
.align 2,0

.global MoveNamePsychic
MoveNamePsychic:
.string "Psychic\0"
.align 2,0

.global MoveDescriptionPsywave
MoveDescriptionPsywave:
.string "Inflicts damage on the target{COMMA} even at a\ndistance. The amount of damage depends\non the user{APOSTROPHE}s {COLOR_2 YELLOW}level{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNamePsywave
MoveNamePsywave:
.string "Psywave\0"
.align 2,0

.global MoveDescriptionConfuseChanceDistance
MoveDescriptionConfuseChanceDistance:
.string "Inflicts damage on the target{COMMA} even at a\ndistance. It may also leave the target\n{COLOR_2 CYAN}confused{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNamePsybeam
MoveNamePsybeam:
.string "Psybeam\0"
.align 2,0

.global MoveDescriptionLowerSpeed
MoveDescriptionLowerSpeed:
.string "Lowers the target{APOSTROPHE}s {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} by\none level.\0"
.align 2,0

.global MoveNameScaryFace
MoveNameScaryFace:
.string "Scary Face\0"
.align 2,0

.global MoveNameRollout
MoveNameRollout:
.string "Rollout\0"
.align 2,0

.global MoveDescriptionEndure
MoveDescriptionEndure:
.string "The user gains the {COLOR_2 CYAN}Enduring{END_COLOR_TEXT_2} status.\nThe user will survive any attack with just\none {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNameEndure
MoveNameEndure:
.string "Endure\0"
.align 2,0

.global MoveDescriptionMeteorMash
MoveDescriptionMeteorMash:
.string "Inflicts damage on the target{COMMA} even at a\ndistance. It may also boost the user{APOSTROPHE}s\n{COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} by one level.\0"
.align 2,0

.global MoveNameMeteorMash
MoveNameMeteorMash:
.string "Meteor Mash\0"
.align 2,0

.global MoveDescriptionFollowMe
MoveDescriptionFollowMe:
.string "The user gains the {COLOR_2 CYAN}Decoy{END_COLOR_TEXT_2} status{COMMA}\nmaking it the primary target of foes.\0"
.align 2,0

.global MoveNameFollowMe
MoveNameFollowMe:
.string "Follow Me\0"
.align 2,0

.global MoveDescriptionFreezeChanceRoom
MoveDescriptionFreezeChanceRoom:
.string "Inflicts damage on the target.\nIt may also leave the target {COLOR_2 CYAN}frozen{END_COLOR_TEXT_2} and\nincapable of action.\0"
.align 2,0

.global MoveNamePowderSnow
MoveNamePowderSnow:
.string "Powder Snow\0"
.align 2,0

.global MoveDescriptionSkyAttack
MoveDescriptionSkyAttack:
.string "The user gains the {COLOR_2 CYAN}Sky Attack{END_COLOR_TEXT_2} status{COMMA}\nand it attacks strongly on the next turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0"
.align 2,0

.global MoveNameSkyAttack
MoveNameSkyAttack:
.string "Sky Attack\0"
.align 2,0

.global MoveDescriptionCosmicPower
MoveDescriptionCosmicPower:
.string "Boosts the user{APOSTROPHE}s {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Special\nDefense{END_COLOR_TEXT_2} by one level.\0"
.align 2,0

.global MoveNameCosmicPower
MoveNameCosmicPower:
.string "Cosmic Power\0"
.align 2,0

.global MoveDescriptionMindReader
MoveDescriptionMindReader:
.string "Gives the user {COLOR_2 CYAN}Sure Shot{END_COLOR_TEXT_2} status{COMMA} making\nall its moves and attacks completely\naccurate.\0"
.align 2,0

.global MoveNameMindReader
MoveNameMindReader:
.string "Mind Reader\0"
.align 2,0

.global MoveDescriptionIcyWind
MoveDescriptionIcyWind:
.string "Inflicts damage on the target{COMMA} even at a\ndistance. It also lowers the target{APOSTROPHE}s\n{COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} by one level.\0"
.align 2,0

.global MoveNameIcyWind
MoveNameIcyWind:
.string "Icy Wind\0"
.align 2,0

.global MoveDescriptionRapidSpin
MoveDescriptionRapidSpin:
.string "Inflicts damage on the target.\nIt also frees the user from {COLOR_2 CYAN}Leech Seed{END_COLOR_TEXT_2}{COMMA}\n{COLOR_2 CYAN}Leg Hold{END_COLOR_TEXT_2}{COMMA} {COLOR_2 CYAN}Ingrain{END_COLOR_TEXT_2}{COMMA} or {COLOR_2 CYAN}Constriction{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNameRapidSpin
MoveNameRapidSpin:
.string "Rapid Spin\0"
.align 2,0

.global MoveDescriptionAgility
MoveDescriptionAgility:
.string "Boosts by one level the {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2}\nof the user and team members in the\nsame room.\0"
.align 2,0

.global MoveNameAgility
MoveNameAgility:
.string "Agility\0"
.align 2,0

.global MoveDescriptionSynthesis
MoveDescriptionSynthesis:
.string "Restores the user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\nThe amount of {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} regained depends on\nthe weather.\0"
.align 2,0

.global MoveNameSynthesis
MoveNameSynthesis:
.string "Synthesis\0"
.align 2,0

.global MoveDescriptionAncientpower
MoveDescriptionAncientpower:
.string "Inflicts damage on the target.\nIt may also simultaneously raise by one\nlevel {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}{COMMA} {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}{COMMA} {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}{COMMA}\n{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2}{COMMA} and {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNameAncientpower
MoveNameAncientpower:
.string "Ancientpower\0"
.align 2,0

.global MoveDescriptionLowKick
MoveDescriptionLowKick:
.string "Inflicts damage on the target.\nThe heavier the target{COMMA} the greater the\ndamage.\0"
.align 2,0

.global MoveNameLowKick
MoveNameLowKick:
.string "Low Kick\0"
.align 2,0

.global MoveDescriptionOutrage
MoveDescriptionOutrage:
.string "Hits the target two to five times in\nsuccession. However{COMMA} it also makes the\nuser {COLOR_2 CYAN}confused{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNameOutrage
MoveNameOutrage:
.string "Outrage\0"
.align 2,0

.global MoveNameCrossChop
MoveNameCrossChop:
.string "Cross Chop\0"
.align 2,0

.global MoveNameMeanLook
MoveNameMeanLook:
.string "Mean Look\0"
.align 2,0

.global MoveDescriptionHaze
MoveDescriptionHaze:
.string "Resets the {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}{COMMA} {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}{COMMA} etc.{COMMA} of all\nPokémon on the floor whether they were\nboosted or lowered.\0"
.align 2,0

.global MoveNameHaze
MoveNameHaze:
.string "Haze\0"
.align 2,0

.global MoveNameCrabhammer
MoveNameCrabhammer:
.string "Crabhammer\0"
.align 2,0

.global MoveDescriptionLegHolder
MoveDescriptionLegHolder:
.string "Inflicts the {COLOR_2 CYAN}Leg Hold{END_COLOR_TEXT_2} status on the target{COMMA}\nmaking it incapable of movement.\0"
.align 2,0

.global MoveNameSpiderWeb
MoveNameSpiderWeb:
.string "Spider Web\0"
.align 2,0

.global MoveDescriptionTickle
MoveDescriptionTickle:
.string "Reduces the target{APOSTROPHE}s {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}\nby one level.\0"
.align 2,0

.global MoveNameTickle
MoveNameTickle:
.string "Tickle\0"
.align 2,0

.global MoveDescriptionSleep
MoveDescriptionSleep:
.string "Makes the target go to {COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}{COMMA} causing it\nto be incapable of action.\0"
.align 2,0

.global MoveNameGrasswhistle
MoveNameGrasswhistle:
.string "Grasswhistle\0"
.align 2,0

.global MoveDescriptionMetalSound
MoveDescriptionMetalSound:
.string "Reduces the target{APOSTROPHE}s {COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2} by\nthree levels.\0"
.align 2,0

.global MoveNameMetalSound
MoveNameMetalSound:
.string "Metal Sound\0"
.align 2,0

.global MoveDescriptionSilverWind
MoveDescriptionSilverWind:
.string "Inflicts damage on foes in the same room.\nIt may also simultaneously raise by one\nlevel {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}{COMMA} {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}{COMMA} {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}{COMMA}\n{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2}{COMMA} and {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNameSilverWind
MoveNameSilverWind:
.string "Silver Wind\0"
.align 2,0

.global MoveNameSlash
MoveNameSlash:
.string "Slash\0"
.align 2,0

.global MoveNameLeechLife
MoveNameLeechLife:
.string "Leech Life\0"
.align 2,0

.global MoveDescriptionSpore
MoveDescriptionSpore:
.string "Makes all the foes in the room go to\n{COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNameSpore
MoveNameSpore:
.string "Spore\0"
.align 2,0

.global MoveDescriptionSmellingsalt
MoveDescriptionSmellingsalt:
.string "Inflicts damage on the target.\nIt inflicts greater damage if the target\nhas {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}{COMMA} but it also heals {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNameSmellingsalt
MoveNameSmellingsalt:
.string "Smellingsalt\0"
.align 2,0

.global MoveDescriptionReversal
MoveDescriptionReversal:
.string "Inflicts damage on the target.\nThe lower the user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}{COMMA} the greater the\ndamage it inflicts.\0"
.align 2,0

.global MoveNameReversal
MoveNameReversal:
.string "Reversal\0"
.align 2,0

.global MoveDescriptionDrain
MoveDescriptionDrain:
.string "Inflicts damage on the target.\nIt also restores the user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} based\non the damage it inflicted.\0"
.align 2,0

.global MoveNameGigaDrain
MoveNameGigaDrain:
.string "Giga Drain\0"
.align 2,0

.global MoveDescriptionFocusPunch
MoveDescriptionFocusPunch:
.string "The user gains the {COLOR_2 CYAN}Focus Punch{END_COLOR_TEXT_2} status{COMMA}\nand it attacks on the next turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0"
.align 2,0

.global MoveNameFocusPunch
MoveNameFocusPunch:
.string "Focus Punch\0"
.align 2,0

.global MoveDescriptionFocusEnergy
MoveDescriptionFocusEnergy:
.string "The user gains the {COLOR_2 CYAN}Focus Energy{END_COLOR_TEXT_2} status{COMMA}\nraising its critical-hit rate.\0"
.align 2,0

.global MoveNameFocusEnergy
MoveNameFocusEnergy:
.string "Focus Energy\0"
.align 2,0

.global MoveDescriptionDamageLowerSpeed
MoveDescriptionDamageLowerSpeed:
.string "Inflicts damage on the target.\nIt also lowers the target{APOSTROPHE}s {COLOR_2 YELLOW}Movement\nSpeed{END_COLOR_TEXT_2} by one level.\0"
.align 2,0

.global MoveNameRockTomb
MoveNameRockTomb:
.string "Rock Tomb\0"
.align 2,0

.global MoveDescriptionBrickBreak
MoveDescriptionBrickBreak:
.string "Shatters the target{APOSTROPHE}s {COLOR_2 CYAN}Reflect{END_COLOR_TEXT_2}\nor {COLOR_2 CYAN}Light Screen{END_COLOR_TEXT_2} to inflict damage.\0"
.align 2,0

.global MoveNameBrickBreak
MoveNameBrickBreak:
.string "Brick Break\0"
.align 2,0

.global MoveDescriptionConstrict
MoveDescriptionConstrict:
.string "Inflicts damage on the target.\nIt may also lower the target{APOSTROPHE}s {COLOR_2 YELLOW}Movement\nSpeed{END_COLOR_TEXT_2} by one level.\0"
.align 2,0

.global MoveNameConstrict
MoveNameConstrict:
.string "Constrict\0"
.align 2,0

.global MoveNameWithdraw
MoveNameWithdraw:
.string "Withdraw\0"
.align 2,0

.global MoveDescriptionConstriction
MoveDescriptionConstriction:
.string "Inflicts damage on the target.\nIt may also cause {COLOR_2 CYAN}constriction{END_COLOR_TEXT_2}{COMMA} making the\nfoe incapable of movement.\0"
.align 2,0

.global MoveNameClamp
MoveNameClamp:
.string "Clamp\0"
.align 2,0

.global MoveNameKarateChop
MoveNameKarateChop:
.string "Karate Chop\0"
.align 2,0

.global MoveDescriptionFacade
MoveDescriptionFacade:
.string "Inflicts damage on the target.\nIf the user is {COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2}{COMMA} {COLOR_2 CYAN}badly poisoned{END_COLOR_TEXT_2}{COMMA}\nor has a {COLOR_2 CYAN}burn{END_COLOR_TEXT_2}{COMMA} its power is doubled.\0"
.align 2,0

.global MoveNameFacade
MoveNameFacade:
.string "Facade\0"
.align 2,0

.global MoveDescriptionEndeavor
MoveDescriptionEndeavor:
.string "The difference between the foe{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} and\nthe user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} is applied as this move{APOSTROPHE}s\ndamage.\0"
.align 2,0

.global MoveNameEndeavor
MoveNameEndeavor:
.string "Endeavor\0"
.align 2,0

.global MoveDescriptionParalyzeChance
MoveDescriptionParalyzeChance:
.string "Inflicts damage on the target.\nIt may also cause {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2} and prevent\nany attacks or moves.\0"
.align 2,0

.global MoveNameThunderpunch
MoveNameThunderpunch:
.string "Thunderpunch\0"
.align 2,0

.global MoveDescriptionThunder
MoveDescriptionThunder:
.string "Inflicts damage on the target. It may also\ncause {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}. Its accuracy is affected\nby the weather. It even hits a Pokémon\nthat is {COLOR_2 CYAN}flying{END_COLOR_TEXT_2} or {COLOR_2 CYAN}bouncing{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveDescriptionLowerSpecialDefenseChance
MoveDescriptionLowerSpecialDefenseChance:
.string "Inflicts damage on the target.\nIt may also lower the target{APOSTROPHE}s {COLOR_2 YELLOW}Special\nDefense{END_COLOR_TEXT_2} by one level.\0"
.align 2,0

.global MoveNameCrunch
MoveNameCrunch:
.string "Crunch\0"
.align 2,0

.global MoveDescriptionBide
MoveDescriptionBide:
.string "The user gains the {COLOR_2 CYAN}Bide{END_COLOR_TEXT_2} status.\nWhen {COLOR_2 CYAN}Bide{END_COLOR_TEXT_2} is released{COMMA} the user looses an\nattack double the damage it took\nwhile waiting.\0"
.align 2,0

.global MoveNameBide
MoveNameBide:
.string "Bide\0"
.align 2,0

.global MoveDescriptionRazorWind
MoveDescriptionRazorWind:
.string "The user gains the {COLOR_2 CYAN}Razor Wind{END_COLOR_TEXT_2} status{COMMA}\nand it looses a powerful attack with a\nhigh critical-hit rate on the next turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0"
.align 2,0

.global MoveNameRazorWind
MoveNameRazorWind:
.string "Razor Wind\0"
.align 2,0

.global MoveDescriptionParalyze
MoveDescriptionParalyze:
.string "Causes {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2} in the target.\nA Pokémon affected by {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2} is\nincapable of attacking or using moves.\0"
.align 2,0

.global MoveNameDisable
MoveNameDisable:
.string "Disable\0"
.align 2,0

.global MoveDescriptionBoostDefense
MoveDescriptionBoostDefense:
.string "Boosts the user{APOSTROPHE}s {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by one level.\0"
.align 2,0

.global MoveNameHarden
MoveNameHarden:
.string "Harden\0"
.align 2,0

.global MoveDescriptionGust
MoveDescriptionGust:
.string "Inflicts damage on the target.\nDoubles damage on a {COLOR_2 CYAN}flying{END_COLOR_TEXT_2} or {COLOR_2 CYAN}bouncing{END_COLOR_TEXT_2}\nPokémon.\0"
.align 2,0

.global MoveNameGust
MoveNameGust:
.string "Gust\0"
.align 2,0

.global MoveDescriptionBoostEvasion
MoveDescriptionBoostEvasion:
.string "Boosts the user{APOSTROPHE}s {COLOR_2 YELLOW}Evasion{END_COLOR_TEXT_2} by one level.\0"
.align 2,0

.global MoveNameDoubleTeam
MoveNameDoubleTeam:
.string "Double Team\0"
.align 2,0

.global MoveDescriptionBoostAttack
MoveDescriptionBoostAttack:
.string "Boosts the user{APOSTROPHE}s {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} by one level.\0"
.align 2,0

.global MoveNameSharpen
MoveNameSharpen:
.string "Sharpen\0"
.align 2,0

.global MoveDescriptionOdorSleuth
MoveDescriptionOdorSleuth:
.string "Resets the boosted {COLOR_2 YELLOW}Evasion{END_COLOR_TEXT_2} of foes in\nthe same room.\nGhost-type foes are {COLOR_2 CYAN}exposed{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNameOdorSleuth
MoveNameOdorSleuth:
.string "Odor Sleuth\0"
.align 2,0

.global MoveDescriptionFlamethrower
MoveDescriptionFlamethrower:
.string "Inflicts damage on the target{COMMA} even at a\ndistance. It may also cause a {COLOR_2 CYAN}burn{END_COLOR_TEXT_2}.\nIt thaws and frees frozen Pokémon.\0"
.align 2,0

.global MoveNameFlamethrower
MoveNameFlamethrower:
.string "Flamethrower\0"
.align 2,0

.global MoveDescriptionBurnChance
MoveDescriptionBurnChance:
.string "Inflicts damage on the target.\nIt may also cause a {COLOR_2 CYAN}burn{END_COLOR_TEXT_2}.\nIt thaws and frees frozen Pokémon.\0"
.align 2,0

.global MoveNameFlameWheel
MoveNameFlameWheel:
.string "Flame Wheel\0"
.align 2,0

.global MoveNameCounter
MoveNameCounter:
.string "Counter\0"
.align 2,0

.global MoveDescriptionStrength
MoveDescriptionStrength:
.string "Hurls the target at another hostile\nPokémon to inflict damage.\0"
.align 2,0

.global MoveNameStrength
MoveNameStrength:
.string "Strength\0"
.align 2,0

.global MoveDescriptionGrudge
MoveDescriptionGrudge:
.string "The user gains the {COLOR_2 CYAN}Grudge{END_COLOR_TEXT_2} status.\nIf the user is defeated{COMMA} it zeroes the {COLOR_2 YELLOW}PP{END_COLOR_TEXT_2}\nof the move last used by the foe.\0"
.align 2,0

.global MoveNameGrudge
MoveNameGrudge:
.string "Grudge\0"
.align 2,0

.global MoveDescriptionReturn
MoveDescriptionReturn:
.string "Inflicts damage on the target.\nIts power rises with the user{APOSTROPHE}s\n{COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNameReturn
MoveNameReturn:
.string "Return\0"
.align 2,0

.global MoveDescriptionWillOWisp
MoveDescriptionWillOWisp:
.string "Inflicts a {COLOR_2 CYAN}burn{END_COLOR_TEXT_2} on the target.\nA {COLOR_2 CYAN}burn{END_COLOR_TEXT_2} inflicts damage every few turns.\0"
.align 2,0

.global MoveNameWillOWisp
MoveNameWillOWisp:
.string "Will-O-Wisp\0"
.align 2,0

.global MoveDescriptionCringe
MoveDescriptionCringe:
.string "Inflicts damage on the target.\nIt may also cause the target to {COLOR_2 CYAN}cringe{END_COLOR_TEXT_2}{COMMA}\nmaking it incapable of action.\0"
.align 2,0

.global MoveNameAstonish
MoveNameAstonish:
.string "Astonish\0"
.align 2,0

.global MoveDescriptionFlatter
MoveDescriptionFlatter:
.string "Inflicts the {COLOR_2 CYAN}Confused{END_COLOR_TEXT_2} status on the\ntarget{COMMA} but also raises its {COLOR_2 YELLOW}Special\nAttack{END_COLOR_TEXT_2} by one level.\0"
.align 2,0

.global MoveNameFlatter
MoveNameFlatter:
.string "Flatter\0"
.align 2,0

.global MoveDescriptionOctazooka
MoveDescriptionOctazooka:
.string "Inflicts damage on the target{COMMA} even at a\ndistance. It may also lower the target{APOSTROPHE}s\n{COLOR_2 YELLOW}Accuracy{END_COLOR_TEXT_2} by one level.\0"
.align 2,0

.global MoveNameOctazooka
MoveNameOctazooka:
.string "Octazooka\0"
.align 2,0

.global MoveDescriptionMemento
MoveDescriptionMemento:
.string "Sharply reduces the {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Special\nAttack{END_COLOR_TEXT_2} of all foes in the room. It also\ncuts the user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} to one and warps the\nuser to a different place on the floor.\n\0"
.align 2,0

.global MoveNameMemento
MoveNameMemento:
.string "Memento\0"
.align 2,0

.global MoveDescriptionAuroraBeam
MoveDescriptionAuroraBeam:
.string "Inflicts damage on the target{COMMA} even at a\ndistance. It may also halve the \ntarget{APOSTROPHE}s {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNameAuroraBeam
MoveNameAuroraBeam:
.string "Aurora Beam\0"
.align 2,0

.global MoveDescriptionOverheat
MoveDescriptionOverheat:
.string "Damages all foes around the user{COMMA} but\nalso lowers the user{APOSTROPHE}s {COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2}\nby two levels and thaws frozen Pokémon.\0"
.align 2,0

.global MoveNameOverheat
MoveNameOverheat:
.string "Overheat\0"
.align 2,0

.global MoveDescriptionMirrorMove
MoveDescriptionMirrorMove:
.string "The user gains the {COLOR_2 CYAN}Mirror Move{END_COLOR_TEXT_2} status.\nAny move used against the user is\ncountered with the same move.\0"
.align 2,0

.global MoveNameMirrorMove
MoveNameMirrorMove:
.string "Mirror Move\0"
.align 2,0

.global MoveDescriptionMultiHit
MoveDescriptionMultiHit:
.string "Inflicts damage on the target.\nIt hits two to five times in succession.\0"
.align 2,0

.global MoveNameDoubleslap
MoveNameDoubleslap:
.string "Doubleslap\0"
.align 2,0

.global MoveDescriptionCounter
MoveDescriptionCounter:
.string "The user gains the {COLOR_2 CYAN}Counter{END_COLOR_TEXT_2} status.\nAny damage from {COLOR_2 CYAN}Physical Attack moves{END_COLOR_TEXT_2}\nor a regular attack is partially returned.\0"
.align 2,0

.global MoveNamePursuit
MoveNamePursuit:
.string "Pursuit\0"
.align 2,0

.global MoveDescriptionSmokescreen
MoveDescriptionSmokescreen:
.string "Inflicts the {COLOR_2 CYAN}Whiffer{END_COLOR_TEXT_2} status on the target{COMMA}\nmaking it miss almost all of its attacks\nand moves.\0"
.align 2,0

.global MoveNameSmokescreen
MoveNameSmokescreen:
.string "Smokescreen\0"
.align 2,0

.global MoveDescriptionHighCritical
MoveDescriptionHighCritical:
.string "Inflicts damage on the target.\nIt has a high critical-hit rate.\0"
.align 2,0

.global MoveNameAirCutter
MoveNameAirCutter:
.string "Air Cutter\0"
.align 2,0

.global MoveDescriptionSpite
MoveDescriptionSpite:
.string "Zeroes the {COLOR_2 YELLOW}PP{END_COLOR_TEXT_2} of the move last used by\nthe target{COMMA} making it unusable.\0"
.align 2,0

.global MoveNameSpite
MoveNameSpite:
.string "Spite\0"
.align 2,0

.global MoveDescriptionSing
MoveDescriptionSing:
.string "Makes the target go to {COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}{COMMA} causing\nit to be incapable of action.\0"
.align 2,0

.global MoveNameSing
MoveNameSing:
.string "Sing\0"
.align 2,0

.global MoveDescriptionFakeTears
MoveDescriptionFakeTears:
.string "Lowers the target{APOSTROPHE}s {COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2} by\ntwo levels.\0"
.align 2,0

.global MoveNameFakeTears
MoveNameFakeTears:
.string "Fake Tears\0"
.align 2,0

.global MoveDescriptionWhirlpool
MoveDescriptionWhirlpool:
.string "Inflicts damage on the target.\nIt may also cause {COLOR_2 CYAN}constriction{END_COLOR_TEXT_2}{COMMA} making the\nfoe incapable of movement.\nInflicts double damage on a {COLOR_2 CYAN}diving{END_COLOR_TEXT_2} foe.\0"
.align 2,0

.global MoveNameWhirlpool
MoveNameWhirlpool:
.string "Whirlpool\0"
.align 2,0

.global MoveDescriptionWeatherBall
MoveDescriptionWeatherBall:
.string "Inflicts damage on the target{COMMA} even at a\ndistance{COMMA} using the weather{APOSTROPHE}s power.\0"
.align 2,0

.global MoveNameWeatherBall
MoveNameWeatherBall:
.string "Weather Ball\0"
.align 2,0

.global MoveDescriptionRockSlide
MoveDescriptionRockSlide:
.string "Inflicts damage on the target.\nIt may also cause the target to {COLOR_2 CYAN}cringe{END_COLOR_TEXT_2}{COMMA} \nmaking it incapable of action.\0"
.align 2,0

.global MoveNameRockSlide
MoveNameRockSlide:
.string "Rock Slide\0"
.align 2,0

.global MoveDescriptionRockSmash
MoveDescriptionRockSmash:
.string "Digs through the wall the user is facing.\0"
.align 2,0

.global MoveNameRockSmash
MoveNameRockSmash:
.string "Rock Smash\0"
.align 2,0

.global MoveDescriptionDamage
MoveDescriptionDamage:
.string "Inflicts damage on the target.\0"
.align 2,0

.global MoveNameRockThrow
MoveNameRockThrow:
.string "Rock Throw\0"
.align 2,0

.global MoveDescriptionScreech
MoveDescriptionScreech:
.string "Sharply lowers the target{APOSTROPHE}s {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNameHealBell
MoveNameHealBell:
.string "Heal Bell\0"
.align 2,0

.global MoveDescriptionSnore
MoveDescriptionSnore:
.string "If the user is attacked while asleep{COMMA} it\ncounterattacks. It may also cause the\ntarget to {COLOR_2 CYAN}cringe{END_COLOR_TEXT_2}{COMMA} making it incapable\nof action.\0"
.align 2,0

.global MoveNameSnore
MoveNameSnore:
.string "Snore\0"
.align 2,0

.global MoveDescriptionSwagger
MoveDescriptionSwagger:
.string "Inflicts the {COLOR_2 CYAN}Confused{END_COLOR_TEXT_2} status on the\ntarget{COMMA} but also raises its {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} by\ntwo levels.\0"
.align 2,0

.global MoveNameSwagger
MoveNameSwagger:
.string "Swagger\0"
.align 2,0

.global MoveDescriptionStringShot
MoveDescriptionStringShot:
.string "Reduces the target{APOSTROPHE}s {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} by\none level{COMMA} even at a distance.\0"
.align 2,0

.global MoveNameStringShot
MoveNameStringShot:
.string "String Shot\0"
.align 2,0

.global MoveDescriptionTorment
MoveDescriptionTorment:
.string "Prevents the targeted Pokémon{COMMA}\nwhile it remains on the floor{COMMA} from \nusing the last move it used.\0"
.align 2,0

.global MoveNameTorment
MoveNameTorment:
.string "Torment\0"
.align 2,0

.global MoveDescriptionPainSplit
MoveDescriptionPainSplit:
.string "Adds the {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} of the user and the target{COMMA}\nthen shares it equally.\0"
.align 2,0

.global MoveNamePainSplit
MoveNamePainSplit:
.string "Pain Split\0"
.align 2,0

.global MoveDescriptionSuperFang
MoveDescriptionSuperFang:
.string "Halves the target{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\0"
.align 2,0

.global MoveNameSuperFang
MoveNameSuperFang:
.string "Super Fang\0"
.align 2,0

.global MoveDescriptionRage
MoveDescriptionRage:
.string "The user gains the {COLOR_2 CYAN}Enraged{END_COLOR_TEXT_2} status.\nIts {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} rises by one level every time\nthe user takes damage.\0"
.align 2,0

.global MoveNameRage
MoveNameRage:
.string "Rage\0"
.align 2,0

.global MoveDescriptionCut
MoveDescriptionCut:
.string "Damages all foes around the user.\0"
.align 2,0

.global MoveNameCut
MoveNameCut:
.string "Cut\0"
.align 2,0

.global MoveDescriptionEncore
MoveDescriptionEncore:
.string "Inflicts the {COLOR_2 CYAN}Encore{END_COLOR_TEXT_2} status on the target{COMMA}\nmaking it capable of using only\nthe move it last used.\0"
.align 2,0

.global MoveNameEncore
MoveNameEncore:
.string "Encore\0"
.align 2,0

.global MoveDescriptionLowerSpeedChanceDistance
MoveDescriptionLowerSpeedChanceDistance:
.string "Inflicts damage on the target{COMMA} even at a\ndistance. It may also lower the target{APOSTROPHE}s\n{COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} by one level.\0"
.align 2,0

.global MoveNameBubble
MoveNameBubble:
.string "Bubble\0"
.align 2,0

.global MoveDescriptionHealTeamStatus
MoveDescriptionHealTeamStatus:
.string "Heals all status problems of the user and\nteam members in the room.\0"
.align 2,0

.global MoveNameAromatherapy
MoveNameAromatherapy:
.string "Aromatherapy\0"
.align 2,0

.global MoveDescriptionHail
MoveDescriptionHail:
.string "Changes the dungeon floor{APOSTROPHE}s weather to\n{COLOR_2 CYAN}Hail{END_COLOR_TEXT_2} for several turns.\0"
.align 2,0

.global MoveNameHail
MoveNameHail:
.string "Hail\0"
.align 2,0

.global MoveDescriptionConfuseRay
MoveDescriptionConfuseRay:
.string "Inflicts the {COLOR_2 CYAN}Confused{END_COLOR_TEXT_2} status on\nthe target{COMMA} making its attacks and\nmovements erratic.\0"
.align 2,0

.global MoveNameConfuseRay
MoveNameConfuseRay:
.string "Confuse Ray\0"
.align 2,0

.global MoveDescriptionRainDance
MoveDescriptionRainDance:
.string "Changes the dungeon floor{APOSTROPHE}s weather to\n{COLOR_2 CYAN}Rain{END_COLOR_TEXT_2} over several turns.\0"
.align 2,0

.global MoveNameRainDance
MoveNameRainDance:
.string "Rain Dance\0"
.align 2,0

.global MoveDescriptionCharm
MoveDescriptionCharm:
.string "Lowers the {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} of the target\nby two levels.\0"
.align 2,0

.global MoveNameCharm
MoveNameCharm:
.string "Charm\0"
.align 2,0

.global MoveDescriptionSweetScent
MoveDescriptionSweetScent:
.string "Lowers the {COLOR_2 YELLOW}Evasion{END_COLOR_TEXT_2} of foes in the same\nroom by one level.\0"
.align 2,0

.global MoveNameSweetScent
MoveNameSweetScent:
.string "Sweet Scent\0"
.align 2,0

.global MoveDescriptionThrash
MoveDescriptionThrash:
.string "Attacks three times in random directions.\0"
.align 2,0

.global MoveNameThrash
MoveNameThrash:
.string "Thrash\0"
.align 2,0

.global MoveDescriptionDig
MoveDescriptionDig:
.string "The user gains the {COLOR_2 CYAN}Digging{END_COLOR_TEXT_2} status{COMMA}\nand it attacks on the next turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0"
.align 2,0

.global MoveNameDig
MoveNameDig:
.string "Dig\0"
.align 2,0

.global MoveDescriptionVitalThrow
MoveDescriptionVitalThrow:
.string "The user gains the {COLOR_2 CYAN}Vital Throw{END_COLOR_TEXT_2} status.\nFoes that attack the user are hurled at\nother foes.\0"
.align 2,0

.global MoveNameVitalThrow
MoveNameVitalThrow:
.string "Vital Throw\0"
.align 2,0

.global MoveDescriptionMorningSun
MoveDescriptionMorningSun:
.string "Restores the {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} of the user and team\nmembers on the floor.\nThe amount of {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} regained depends on\nthe weather.\0"
.align 2,0

.global MoveNameMorningSun
MoveNameMorningSun:
.string "Morning Sun\0"
.align 2,0

.global MoveDescriptionNightmare
MoveDescriptionNightmare:
.string "Inflicts the {COLOR_2 CYAN}Nightmare{END_COLOR_TEXT_2} status\non the target{COMMA} making it incapable\nof action.\0"
.align 2,0

.global MoveNameNightmare
MoveNameNightmare:
.string "Nightmare\0"
.align 2,0

.global MoveDescriptionLovelyKiss
MoveDescriptionLovelyKiss:
.string "Makes all foes around the user go to {COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}{COMMA}\ncausing them to be incapable of action.\0"
.align 2,0

.global MoveNameLovelyKiss
MoveNameLovelyKiss:
.string "Lovely Kiss\0"
.align 2,0

.global MoveDescriptionYawn
MoveDescriptionYawn:
.string "Inflicts the {COLOR_2 CYAN}Yawning{END_COLOR_TEXT_2} status on the target.\nA {COLOR_2 CYAN}yawning{END_COLOR_TEXT_2} Pokémon falls\nasleep sometime later.\0"
.align 2,0

.global MoveNameYawn
MoveNameYawn:
.string "Yawn\0"
.align 2,0

.global MoveDescriptionMultiHitUntilMiss
MoveDescriptionMultiHitUntilMiss:
.string "Hits the target in succession until it\nmisses. Its power rises with every hit.\nIt may hit up to five times.\0"
.align 2,0

.global MoveNameIceBall
MoveNameIceBall:
.string "Ice Ball\0"
.align 2,0

.global MoveUseTextUse
MoveUseTextUse:
.string "{ARG_POKEMON_0} used {ARG_MOVE_ITEM_0}!\0"
.align 2,0

.global MoveDescriptionLowerDefenseChance
MoveDescriptionLowerDefenseChance:
.string "Inflicts damage on the target.\nIt may also lower the target{APOSTROPHE}s {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}\nby one level.\0"
.align 2,0

.global MoveNameIronTail
MoveNameIronTail:
.string "Iron Tail\0"
.align 2,0

.global MoveDescriptionNone
MoveDescriptionNone:
.string "\0"
.align 2,0

.global MoveNameNone
MoveNameNone:
.string "なにのも?\0"
.align 2,0