Spaces:
Running
Running
File size: 225,919 Bytes
5c2ed06 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 |
import { ssbSets } from "./random-teams";
import { PSEUDO_WEATHERS, changeSet, getName } from "./scripts";
import { Teams } from '../../../sim/teams';
export const Moves: import('../../../sim/dex-moves').ModdedMoveDataTable = {
/*
// Example
moveid: {
accuracy: 100, // a number or true for always hits
basePower: 100, // Not used for Status moves, base power of the move, number
category: "Physical", // "Physical", "Special", or "Status"
shortDesc: "", // short description, shows up in /dt
desc: "", // long description
name: "Move Name",
gen: 8,
pp: 10, // unboosted PP count
priority: 0, // move priority, -6 -> 6
flags: {}, // Move flags https://github.com/smogon/pokemon-showdown/blob/master/data/moves.js#L1-L27
onTryMove() {
this.attrLastMove('[still]'); // For custom animations
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Move Name 1', source);
this.add('-anim', source, 'Move Name 2', source);
}, // For custom animations
secondary: {
status: "tox",
chance: 20,
}, // secondary, set to null to not use one. Exact usage varies, check data/moves.js for examples
target: "normal", // What does this move hit?
// normal = the targeted foe, self = the user, allySide = your side (eg light screen), foeSide = the foe's side (eg spikes), all = the field (eg raindance). More can be found in data/moves.js
type: "Water", // The move's type
// Other useful things
noPPBoosts: true, // add this to not boost the PP of a move, not needed for Z moves, dont include it otherwise
isZ: "crystalname", // marks a move as a z move, list the crystal name inside
zMove: {effect: ''}, // for status moves, what happens when this is used as a Z move? check data/moves.js for examples
zMove: {boost: {atk: 2}}, // for status moves, stat boost given when used as a z move
critRatio: 2, // The higher the number (above 1) the higher the ratio, lowering it lowers the crit ratio
drain: [1, 2], // recover first num / second num % of the damage dealt
heal: [1, 2], // recover first num / second num % of the target's HP
},
*/
// Please keep sets organized alphabetically based on staff member name!
// aegii
equipaegislash: {
accuracy: 100,
basePower: 80,
category: "Physical",
shortDesc: "50% +1 Atk, 50% +1 Def, eats berry.",
desc: "This move has a 50% chance to raise the user's Attack by 1 stage and a 50% chance to raise the user's Defense by 1 stage. After using the move, the user eats its berry if holding one.",
name: "Equip Aegislash",
gen: 9,
pp: 10,
priority: 0,
flags: { protect: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Shadow Sneak', target);
this.add('-anim', source, 'Swords Dance', source);
this.add('-anim', source, 'Iron Defense', source);
},
secondaries: [
{
chance: 50,
self: {
boosts: {
atk: 1,
},
},
}, {
chance: 50,
self: {
boosts: {
def: 1,
},
},
},
],
self: {
onHit(target, source) {
if (!source.getItem().isBerry) return;
source.eatItem(true);
},
},
secondary: null,
target: "normal",
type: "Steel",
},
// Aelita
smelt: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "User burns itself and gains +2 Spe/+1 Atk.",
desc: "This move burns the user, raises their Speed by 2 stages, and raises their Attack by 1 stage.",
name: "Smelt",
gen: 9,
pp: 10,
priority: 0,
flags: {},
onPrepareHit(pokemon) {
this.attrLastMove('[still]');
},
onHit(pokemon) {
pokemon.trySetStatus('brn');
this.add('-anim', pokemon, 'Shift Gear', pokemon);
this.boost({ spe: 2, atk: 1 });
},
secondary: null,
target: "self",
type: "Steel",
},
// Aethernum
iamatomic: {
accuracy: 100,
basePower: 140,
category: "Special",
shortDesc: "Lowers user's Def, Sp. Atk and Speed by 2 stages.",
desc: "Lowers the user's Defense, Special Attack, and Speed by 2 stages.",
name: "I. AM. ATOMIC.",
gen: 9,
pp: 5,
priority: 0,
flags: { protect: 1 },
onPrepareHit(target, source, move) {
this.add('-anim', source, 'Trick Room', target);
this.add('-anim', source, 'Clangerous Soul', source);
this.add('-anim', source, 'Flash', target);
this.add(`c:|${getName((source.illusion || source).name)}|I`);
this.add(`c:|${getName((source.illusion || source).name)}|AM`);
this.add(`c:|${getName((source.illusion || source).name)}|ATOMIC.`);
},
self: {
boosts: {
spe: -2,
def: -2,
spa: -2,
},
},
secondary: null,
target: "normal",
type: "Ghost",
},
// Akir
freeswitchbutton: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Haze + Parting Shot + Replacement heals 33%.",
desc: "Resets the stat stages of all active Pokemon to 0, then lowers the foe's Attack and Special Attack by 1 stage each while switching out. The Pokemon that switches in heals 33% of its maximum HP. This move bypasses all Protect-like effects.",
name: "Free Switch Button",
gen: 9,
pp: 10,
priority: 0,
flags: {},
onTryMove() {
this.attrLastMove('[still]');
},
onHit(target, source, move) {
this.add('-clearallboost');
for (const pokemon of this.getAllActive()) {
pokemon.clearBoosts();
}
const foe = source.foes()[0];
if (!foe) return;
const success = this.boost({ atk: -1, spa: -1 }, foe, source);
if (!success && !foe.hasAbility('mirrorarmor')) {
delete move.selfSwitch;
}
},
// the foe cannot be set as the target in move properties because it breaks the 33% replacement heal
selfSwitch: true,
onPrepareHit(target, source) {
this.add('-anim', source, 'Haze', source);
},
slotCondition: 'freeswitchbutton',
condition: {
onSwitchIn(target) {
if (!target.fainted && (target.hp < target.maxhp)) {
target.heal(target.maxhp / 3);
this.add('-heal', target, target.getHealth, '[from] move: Free Switch Button');
target.side.removeSlotCondition(target, 'freeswitchbutton');
}
},
},
secondary: null,
target: "self",
type: "Water",
},
// Alex
spicierextract: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Leech Seed + Heal Block + Infestation",
desc: "Applies the effects of Leech Seed, Heal Block, and partial trapping to the target, causing the user to steal 1/8 of the target's maximum HP at the end of each turn until the target switches out, preventing the target from using any moves, items, or Abilities that heal HP for 5 turns, and preventing the target from switching out while damaging it for an additional 1/8 of its maximum HP at the end of each turn for 4-5 turns. If the target uses Baton Pass, the effects of Leech Seed, Heal Block, and partial trapping will remain in effect for the replacement.",
name: "Spicier Extract",
pp: 15,
priority: 0,
flags: { protect: 1, reflectable: 1, mirror: 1, powder: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Leafage', target);
this.add('-anim', source, 'Stun Spore', target);
},
onHit(target, source) {
let success = false;
if (target.addVolatile('partiallytrapped', source)) success = true;
if (target.addVolatile('leechseed', source)) success = true;
if (target.addVolatile('healblock', source)) success = true;
return success;
},
secondary: null,
target: "normal",
type: "Grass",
},
// Alexander489
scumhunt: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Uses a random damaging, non-resisted move.",
desc: "A random damaging non-resisted move is selected for use, other than moves uncallable by Metronome and moves originating from Super Staff Bros Ultimate.",
name: "Scumhunt",
pp: 10,
priority: 0,
flags: { protect: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source, move) {
const nresTypes = [];
for (const i of this.dex.types.names()) {
if (i === "Stellar") continue;
if (target) {
const effect = this.dex.getEffectiveness(i, target);
const immune = !this.dex.getImmunity(i, target);
if (effect >= 0 && !immune) {
nresTypes.push(i);
}
}
}
if (!nresTypes.length) return;
const netType = this.sample(nresTypes);
const moves = this.dex.moves.all().filter(m => (
(![2, 4].includes(this.gen) || !source.moves.includes(m.id)) &&
(!m.isNonstandard || m.isNonstandard === 'Unobtainable') &&
m.flags['metronome'] && m.type === netType && m.category !== "Status"
));
let randomMove = '';
if (moves.length) {
moves.sort((a, b) => a.num - b.num);
randomMove = this.sample(moves).id;
}
if (!randomMove) return false;
source.side.lastSelectedMove = this.toID(randomMove);
this.add('-anim', source, 'Spite', target);
this.add('-anim', source, 'Grudge', target);
this.add('-anim', source, 'Metronome', source);
this.actions.useMove(randomMove, source);
},
target: "normal",
type: "???",
},
// Apple
woppleorflopple: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Confuse; +2 SpA/D. Fail=Confuse self; -1 SpA/D.",
desc: "Usually moves first. This move has a 50% chance of confusing the target and raising the user's Special Attack and Special Defense by 2 stages. Otherwise, it will confuse the user and lower the user's Special Attack and Special Defense by 1 stage.",
name: "Wopple or Flopple",
gen: 9,
pp: 10,
priority: 1,
flags: { protect: 1, reflectable: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Moonlight', source);
},
onHit(target, source, move) {
if (this.randomChance(1, 2)) {
target.addVolatile('confusion');
this.boost({ spa: 2, spd: 2 }, source);
} else {
source.addVolatile('confusion');
this.boost({ spa: -1, spd: -1 }, source);
}
},
secondary: null,
target: "normal",
type: "Normal",
},
// Appletun a la Mode
extracourse: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Recycles berry, +1 to 2 random stats (-acc/eva).",
desc: "The user regains the item it last used, and then boosts two random stats by 1 stage each, except Accuracy and Evasion. If the user is currently holding an item or has had their item forcibly removed, the stat boosts occur without the Recycle effect.",
name: "Extra Course",
gen: 9,
pp: 5,
priority: 0,
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Recycle', target);
},
flags: { snatch: 1 },
onHit(pokemon) {
if (!pokemon.item && pokemon.lastItem) {
const item = pokemon.lastItem;
pokemon.lastItem = '';
this.add('-item', pokemon, this.dex.items.get(item), '[from] move: Extra Course');
pokemon.setItem(item);
}
let stats: BoostID[] = [];
const boost: SparseBoostsTable = {};
let statPlus: BoostID;
for (statPlus in pokemon.boosts) {
if (statPlus === 'accuracy' || statPlus === 'evasion') continue;
if (pokemon.boosts[statPlus] < 6) {
stats.push(statPlus);
}
}
let randomStat: BoostID | undefined = stats.length ? this.sample(stats) : undefined;
if (randomStat) boost[randomStat] = 1;
stats = [];
for (statPlus in pokemon.boosts) {
if (statPlus === 'accuracy' || statPlus === 'evasion') continue;
if (pokemon.boosts[statPlus] < 6 && statPlus !== randomStat) {
stats.push(statPlus);
}
}
randomStat = stats.length ? this.sample(stats) : undefined;
if (randomStat) boost[randomStat] = 1;
this.boost(boost, pokemon, pokemon);
},
target: "self",
type: "Normal",
},
// aQrator
torisstori: {
accuracy: 100,
basePower: 0,
category: "Status",
shortDesc: "Confuses foe & deals 1/6th max HP for 4-5 turns.",
desc: "Causes the target to become confused. If this move is successful, the target takes damage equal to 1/6th of its maximum HP at the end of each turn for 4-5 turns.",
name: "Tori's Stori",
gen: 9,
pp: 5,
priority: 0,
flags: { protect: 1, reflectable: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Water Spout', target);
this.add('-anim', source, 'Confuse Ray', target);
},
volatileStatus: 'torisstori',
condition: {
duration: 5,
durationCallback(target, source) {
if (source?.hasItem('gripclaw')) return 8;
return this.random(5, 6);
},
onStart(target) {
this.add('-start', target, 'Tori\'s Stori');
},
onResidualOrder: 6,
onResidual(pokemon) {
this.damage(pokemon.baseMaxhp / 6);
},
onEnd(target) {
this.add('-end', target, 'Tori\'s Stori');
},
},
secondary: {
chance: 100,
volatileStatus: 'confusion',
},
target: "normal",
type: "Water",
},
// A Quag To The Past
sireswitch: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Quag: Protect; Clod: Recover. Switch sires.",
desc: "Nearly always moves first. If the user is Quagsire, the user is protected from most attacks made by other Pokemon during this turn and then transforms into Clodsire. If the user is Clodsire, the user recovers 1/2 of its maximum HP and then transforms into Quagsire. This move fails if the user is neither Quagsire nor Clodsire.",
name: "Sire Switch",
gen: 9,
pp: 20,
priority: 4,
onTry(source) {
if (['Quagsire', 'Clodsire'].includes(source.species.name)) {
return;
}
this.hint("Only Clodsire and Quagsire can use this move.");
this.attrLastMove('[still]');
this.add('-fail', source, 'move: Sire Switch');
return null;
},
onModifyPriority(relayVar, source, target, move) {
if (source.species.name === 'Clodsire') {
return -6;
}
},
flags: { failcopycat: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Max Guard', source);
if (source.species.name === 'Quagsire') {
this.add('-anim', source, 'Protect', source);
return !!this.queue.willAct() && this.runEvent('StallMove', source);
} else {
this.add('-anim', source, 'Recover', source);
}
},
volatileStatus: 'protect',
onModifyMove(move, pokemon) {
if (pokemon.species.name === 'Clodsire') {
move.flags['heal'] = 1;
move.heal = [1, 2];
delete move.volatileStatus;
}
},
onHit(pokemon) {
if (pokemon.species.name === 'Quagsire') {
pokemon.addVolatile('stall');
changeSet(this, pokemon, ssbSets['A Quag To The Past-Clodsire'], true);
} else {
changeSet(this, pokemon, ssbSets['A Quag To The Past'], true);
}
},
secondary: null,
target: "self",
type: "Ground",
},
// Archas
aurarain: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Cures team status, all but user heal 50% max HP.",
desc: "Z-Move that requires Lilligantium Z. Every Pokemon in the user's party is cured of its non-volatile status condition. With the exception of the user, every Pokemon in the user's party heals for 1/2 of their maximum HP. This effect cannot revive fainted Pokemon.",
name: "Aura Rain",
pp: 1,
priority: 0,
flags: {},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Rain Dance', source);
this.add('-anim', source, 'Water Sport', source);
this.add('-anim', source, 'Aromatherapy', source);
},
onHit(pokemon) {
this.add('-message', 'An alleviating aura rains down on the field!');
let success = false;
const allies = [...pokemon.side.pokemon, ...pokemon.side.allySide?.pokemon || []];
for (const ally of allies) {
if (ally === pokemon) continue;
if (ally.heal(this.modify(ally.maxhp, 0.5))) {
this.add('-heal', ally, ally.getHealth);
success = true;
}
if (ally.cureStatus()) success = true;
}
return success;
},
isZ: "lilligantiumz",
secondary: null,
target: "self",
type: "Grass",
},
// Arcueid
funnyvamp: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Changes user's forme, effects vary with forme.",
desc: "If the user is Deoxys-Defense, it transforms into Deoxys-Attack and uses a random move from its moveset. If the user is Deoxys-Attack, it transforms into Deoxys-Defense and boosts two random stats by 1 stage each, except Accuracy and Evasion.",
name: "Funny Vamp",
gen: 9,
pp: 10,
priority: 0,
flags: { protect: 1, mirror: 1, failcopycat: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Moonlight', target);
this.add('-anim', source, 'Quiver Dance', target);
this.add('-anim', source, 'Geomancy', target);
this.add(`c:|${getName('Arcueid')}|I've got nine lives 🐈. You knew that about cats, right, 😹? That means I haven't lost until you beat me nine times 🙀!`);
},
onHit(target, source, move) {
if (source.species.name === "Deoxys-Defense") {
changeSet(this, source, ssbSets['Arcueid-Attack'], true);
let randMove = this.random(3) - 1;
if (randMove < 0) randMove = 0;
this.actions.useMove(source.moveSlots[randMove].id, target);
} else {
changeSet(this, source, ssbSets['Arcueid'], true);
for (let i = 0; i < 2; i++) {
const stats: BoostID[] = [];
const boost: SparseBoostsTable = {};
let statPlus: BoostID;
for (statPlus in source.boosts) {
if (statPlus === 'accuracy' || statPlus === 'evasion') continue;
if (source.boosts[statPlus] < 6) {
stats.push(statPlus);
}
}
const randomStat: BoostID | undefined = stats.length ? this.sample(stats) : undefined;
if (randomStat) boost[randomStat] = 1;
this.boost(boost, source, source);
}
this.heal(source.baseMaxhp / 2, source);
}
},
secondary: null,
target: "self",
type: "Psychic",
},
// Arsenal
megidolaon: {
accuracy: 100,
basePower: 255,
category: "Special",
shortDesc: "Flinches if resulting in a critical hit.",
name: "Megidolaon",
gen: 9,
pp: 10,
priority: 0,
flags: { protect: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Hyper Beam', target);
this.add('-anim', source, 'Earthquake', target);
},
volatileStatus: 'flinch',
secondary: null,
target: "normal",
type: "???",
},
// Artemis
automatedresponse: {
accuracy: 100,
basePower: 80,
category: "Special",
shortDesc: "Change move/user's type to SE. 25% NVE instead.",
desc: "Randomly changes the move's and user's type to deal super effective damage. There is a 25% chance that this move has a false positive and changes the move's and user's type to deal not very effective damage instead.",
name: "Automated Response",
pp: 10,
priority: 0,
flags: { protect: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
beforeTurnCallback(source, target) {
const seTypes = [];
const nveTypes = [];
let netType = "";
for (const i of this.dex.types.names()) {
if (target) {
const effect = this.dex.getEffectiveness(i, target);
const isImmune = !this.dex.getImmunity(i, target);
if (effect > 0 && !isImmune) {
seTypes.push(i);
} else if (effect < 0 && !isImmune) {
nveTypes.push(i);
}
}
}
let falsePositive = false;
if (!seTypes.length) seTypes.push('Electric');
if (!nveTypes.length) nveTypes.push('Electric');
if (this.randomChance(75, 100)) {
netType = this.sample(seTypes);
} else { // false positive
falsePositive = true;
netType = this.sample(nveTypes);
}
if (falsePositive) {
this.add('-message', `${(target.illusion || target).name} triggered a false-positive and caused Automated Response to become not-very effective!`);
}
if (source.setType(netType)) {
this.add('-start', source, 'typechange', netType);
}
source.m.artemisMoveType = netType;
},
onPrepareHit(target, source, move) {
this.add('-anim', source, 'Techno Blast', target);
},
onModifyType(move, pokemon, target) {
if (pokemon.m.artemisMoveType) {
move.type = pokemon.m.artemisMoveType;
}
},
self: {
boosts: {
spa: -2,
},
},
target: "normal",
type: "Electric",
},
// Arya
anyonecanbekilled: {
accuracy: 95,
basePower: 80,
category: "Special",
shortDesc: "+2 SpA for 2 turns.",
desc: "The user's Special Attack is boosted by 2 stages for 2 turns and is restored to its original value at the end. Does not stack with itself.",
name: "Anyone can be killed",
pp: 10,
priority: 0,
flags: { protect: 1, sound: 1, bypasssub: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
self: {
volatileStatus: 'anyonecanbekilled',
},
condition: {
duration: 3,
onResidualOrder: 3,
onStart(target, source, sourceEffect) {
this.boost({ spa: 2 }, source);
},
onEnd(target) {
this.boost({ spa: -2 }, target);
},
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Dragon Dance', target);
this.add('-anim', source, 'Earth Power', target);
},
target: "normal",
type: "Ground",
},
// Audiino
thinkinginprogress: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Cure status, +1 Def/SpA/SpD.",
name: "Thinking In Progress",
gen: 9,
pp: 20,
priority: 0,
flags: { snatch: 1, metronome: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Calm Mind', source);
},
onHit(target, source, move) {
source.cureStatus();
},
boosts: {
def: 1,
spa: 1,
spd: 1,
},
secondary: null,
target: "self",
type: "Psychic",
},
// autumn
seasonssmite: {
accuracy: 100,
basePower: 90,
category: "Special",
shortDesc: "+1 Defense if Protosynthesis is active.",
desc: "Raises the user's Defense by 1 stage if the user is under the effect of the Protosynthesis Ability.",
name: "Season's Smite",
gen: 9,
pp: 10,
priority: 0,
flags: { protect: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', target, 'Morning Sun', target);
},
secondary: {
chance: 100,
onHit(target, source, move) {
if (source.volatiles['protosynthesis']) {
this.boost({ def: 1 }, source, source, move);
}
},
},
target: "normal",
type: "Ghost",
},
// ausma
sigilsstorm: {
accuracy: 100,
basePower: 123,
category: "Special",
shortDesc: "If hit, Trick Room. Else, attack+random effect.",
desc: "Begins to charge an attack at the start of the turn. Nearly always moves last. If the user is directly damaged while charging, Trick Room is set instead, making the slower Pokemon move first for 5 turns. The Trick Room effect occurs before Cascade if both would activate on the same turn. If the user was not directly damaged while charging, the attack executes and one random effect will occur from the following: poison; burn; paralysis; confusion; the user recovers HP equal to 75% of damage dealt; all entry hazards are removed from the field; a random entry hazard is set, except G-Max Steelsurge; two random stats of the user are raised by 1 stage each, except Accuracy and Evasion; two random stats of the target are lowered by 1 stage each, except Accuracy and Evasion; or the target transforms into a Fennekin with Ember, Scratch, and Growl until they switch out.",
name: "Sigil's Storm",
pp: 20,
priority: -6,
onModifyPriority(priority, source, target, move) {
if (source.species.id === 'mismagius') return priority + 6;
},
flags: { snatch: 1, metronome: 1, protect: 1, failcopycat: 1 },
priorityChargeCallback(pokemon) {
if (pokemon.species.id === 'mismagius') return;
pokemon.addVolatile('sigilsstorm');
this.add('-anim', pokemon, 'Calm Mind', pokemon);
},
beforeMoveCallback(pokemon) {
if (pokemon.species.id === 'mismagius') return;
if (pokemon.volatiles['sigilsstorm']?.lostFocus) {
this.add('cant', pokemon, 'sigilsstorm', 'sigilsstorm');
this.actions.useMove('trickroom', pokemon);
this.add(`c:|${getName('ausma')}|dog can you not`);
return true;
}
},
onModifyType(move, pokemon, target) {
if (pokemon.species.id === 'mismagius') {
move.type = 'Ghost';
}
},
condition: {
duration: 1,
onStart(pokemon) {
this.add('-singleturn', pokemon, 'move: Sigil\'s Storm');
},
onHit(pokemon, source, move) {
if (move.category !== 'Status') {
this.effectState.lostFocus = true;
}
},
onTryAddVolatile(status, pokemon) {
if (status.id === 'flinch') return null;
},
},
onTry(source) {
if (source.illusion || source.name === 'ausma') {
return;
}
this.attrLastMove('[still]');
this.add('-fail', source, 'move: Sigil\'s Storm');
this.hint("Only a Pokemon whose nickname is \"ausma\" can use this move.");
return null;
},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Geomancy', source);
this.add('-anim', source, 'Blood Moon', target);
},
secondary: {
chance: 100,
onHit(target, source, move) {
const sideConditions = ['spikes', 'toxicspikes', 'stealthrock', 'stickyweb', 'gmaxsteelsurge'];
const chance = this.random(100);
if (chance <= 10) {
target.trySetStatus('psn', target);
} else if (chance <= 20) {
target.trySetStatus('par', target);
} else if (chance <= 30) {
target.trySetStatus('brn', target);
} else if (chance <= 50) {
const stats: BoostID[] = [];
const boost: SparseBoostsTable = {};
let statPlus: BoostID;
const statTarget = chance <= 40 ? target : source;
for (statPlus in statTarget.boosts) {
if (statPlus === 'accuracy' || statPlus === 'evasion') continue;
if (chance <= 40 && statTarget.boosts[statPlus] > -6) {
stats.push(statPlus);
} else if (chance <= 50 && statTarget.boosts[statPlus] < 6) {
stats.push(statPlus);
}
}
const randomStat: BoostID | undefined = stats.length ? this.sample(stats) : undefined;
const randomStat2: BoostID | undefined = stats.length ? this.sample(stats.filter(s => s !== randomStat)) : undefined;
if (randomStat && randomStat2) {
if (chance <= 40) {
boost[randomStat] = -1;
boost[randomStat2] = -1;
} else {
boost[randomStat] = 1;
boost[randomStat2] = 1;
}
this.boost(boost, statTarget, statTarget);
}
} else if (chance <= 60) {
target.addVolatile('confusion', source);
} else if (chance <= 70) {
for (const condition of sideConditions) {
if (source.side.removeSideCondition(condition)) {
this.add('-sideend', source.side, this.dex.conditions.get(condition).name, '[from] move: Sigil\'s Storm', `[of] ${source}`);
}
}
} else if (chance <= 80) {
target.side.addSideCondition(this.sample(sideConditions.filter(hazard => !target.side.getSideCondition(hazard))));
} else if (chance <= 90) {
move.drain = [3, 4];
} else {
changeSet(this, target, ssbSets["ausma-Fennekin"], true);
this.add(`c:|${getName('ausma')}|oh shit i posted to the wrong account`);
}
},
},
target: "normal",
type: "Psychic",
},
// AuzBat
preptime: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Raises the user's Sp. Atk by 2 and Speed by 1.",
desc: "The user's Special Attack is boosted by 2 stages and its Speed is boosted by 1 stage.",
name: "Prep Time",
pp: 5,
priority: 0,
flags: { snatch: 1, metronome: 1 },
boosts: {
spa: 2,
spe: 1,
},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Tidy Up', source);
},
target: "self",
type: "Psychic",
},
// avarice
yugiohreference: {
accuracy: 90,
basePower: 105,
category: "Special",
shortDesc: "40% chance to force the foe out.",
desc: "Nearly always moves last. If this attack is successful, there is a 40% chance that the target is forced to switch out and be replaced with a random unfainted ally.",
name: "yu-gi-oh reference",
pp: 5,
priority: -6,
flags: { protect: 1, bullet: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Never-Ending Nightmare', target);
},
secondary: {
chance: 40,
onHit(target, source, move) {
move.forceSwitch = true;
},
},
target: "normal",
type: "Ghost",
},
// Beowulf
buzzerstingercounter: {
accuracy: 100,
basePower: 50,
category: "Physical",
shortDesc: "+3 prio if foe uses custom move. +3 Atk on KO.",
desc: "This move will nearly always move first (+3 priority) if the target would use a custom move from Super Staff Bros Ultimate this turn. Raises the user's Attack by 3 stages if this move knocks out the target.",
name: "Buzzer Stinger Counter",
gen: 9,
pp: 10,
priority: 0,
flags: { contact: 1, protect: 1, mirror: 1 },
onModifyPriority(priority, pokemon, target) {
if (!target) return;
const move = this.queue.willMove(target)?.moveid;
if (move && target.moves.indexOf(move) === target.moves.length - 1) {
this.debug('BSC priority boost');
return priority + 3;
}
},
onAfterMoveSecondarySelf(pokemon, target, move) {
if (!target || target.fainted || target.hp <= 0) this.boost({ atk: 3 }, pokemon, pokemon, move);
},
secondary: null,
target: "normal",
type: "Bug",
},
// berry
whatkind: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Eats berry, gives random new berry, heals 25%.",
desc: "The user consumes its held berry if it is holding one, heals 25% of its maximum HP, and then gains a random item from the following: Iapapa Berry, Leppa Berry, Lum Berry, Maranga Berry, Ganlon Berry, Starf Berry, Liechi Berry, or Enigma Berry.",
name: "what kind",
gen: 9,
pp: 10,
priority: 0,
flags: {},
onPrepareHit() {
this.attrLastMove('[anim] Nasty Plot');
},
onHit(pokemon, qwerty, move) {
if (pokemon.item && pokemon.getItem().isBerry) {
pokemon.eatItem(true);
}
pokemon.lastItem = '';
const berries = ['iapapa', 'leppa', 'lum', 'maranga', 'ganlon', 'starf', 'liechi', 'enigma'];
const item = this.dex.items.get(this.sample(berries) + 'berry');
pokemon.setItem(item, pokemon, move);
this.add('-item', pokemon, item, '[from] move: what kind');
this.heal(pokemon.baseMaxhp / 4, pokemon);
},
secondary: null,
target: "self",
type: "Water",
},
// Bert122
shatterandscatter: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Protect, hit=-2 Atk/SpA/or Spe, user swap.",
desc: "Nearly always moves first. This move can only be used by Mega Sableye. The user is protected from most attacks made by other Pokemon during this turn. If a targeted move is blocked during this effect, the attacker's stats are lowered depending on the move used. If the attacker used a physical attack, their Attack is lowered by 2 stages. If the attacker used a special attack, their Special Attack is lowered by 2 stages. If the attacker used a status move, their Speed is lowered by 2 stages. If this move successfully decreases a Pokemon's stat stages, this Pokemon's Mega Evolution is removed, and it immediately switches out and is replaced by a selected party member. This move fails if the user moves last, and has an increasing chance to fail when used consecutively.",
name: "Shatter and Scatter",
pp: 10,
priority: 4,
flags: { failinstruct: 1, failcopycat: 1 },
stallingMove: true,
volatileStatus: 'shatterandscatter',
onTry(source) {
if (source.species.name === 'Sableye-Mega') {
return;
}
this.hint("Only Sableye-Mega can use this move.");
this.attrLastMove('[still]');
this.add('-fail', source, 'move: Shatter and Scatter');
return null;
},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(pokemon) {
this.add('-anim', pokemon, 'Protect', pokemon);
this.add('-anim', pokemon, 'Rock Polish', pokemon);
return !!this.queue.willAct() && this.runEvent('StallMove', pokemon);
},
onHit(pokemon) {
pokemon.addVolatile('stall');
},
condition: {
duration: 1,
onStart(target) {
this.add('-singleturn', target, 'Protect');
},
onTryHitPriority: 3,
onTryHit(target, source, move) {
if (!move.flags['protect']) {
if (['gmaxoneblow', 'gmaxrapidflow'].includes(move.id)) return;
if (move.isZ || move.isMax) target.getMoveHitData(move).zBrokeProtect = true;
return;
}
if (move.smartTarget) {
move.smartTarget = false;
} else {
this.add('-activate', target, 'move: Protect');
}
const lockedmove = source.getVolatile('lockedmove');
if (lockedmove) {
// Outrage counter is reset
if (source.volatiles['lockedmove'].duration === 2) {
delete source.volatiles['lockedmove'];
}
}
let statDebuff = 'spe';
if (move.category === 'Special') statDebuff = 'spa';
if (move.category === 'Physical') statDebuff = 'atk';
const success = this.boost({ [statDebuff]: -2 }, source, target, this.dex.getActiveMove("Shatter and Scatter"));
if (success) {
target.formeChange('Sableye', this.dex.getActiveMove('Shatter and Scatter'), true);
target.canMegaEvo = 'Sableye-Mega';
target.switchFlag = 'shatterandscatter' as ID;
}
return this.NOT_FAIL;
},
onHit(target, source, move) {
if (move.isZOrMaxPowered) {
let statDebuff = 'spe';
if (move.category === 'Special') statDebuff = 'spa';
if (move.category === 'Physical') statDebuff = 'atk';
const success = this.boost({ [statDebuff]: -2 }, source, target, this.dex.getActiveMove("Shatter and Scatter"));
if (success) {
target.formeChange('Sableye', this.dex.getActiveMove('Shatter and Scatter'), true);
target.canMegaEvo = 'Sableye-Mega';
target.switchFlag = 'shatterandscatter' as ID;
}
}
},
},
secondary: null,
target: "self",
type: "Dark",
},
// Billo
hackcheck: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Cosmog: 80%: Change into Lunala, else Solgaleo.",
desc: "This move has an 80% chance of transforming the user into Lunala. It has a 20% chance of instead transforming the user into Solgaleo, boosting its Attack by 1 stage, preventing it from switching out, and causing it to faint after three turns, akin to Perish Song. This move cannot be used successfully unless the user's current form, while considering Transform, is Cosmog.",
name: "Hack Check",
gen: 9,
pp: 5,
priority: 0,
flags: { protect: 1, mirror: 1, bypasssub: 1, failcopycat: 1 },
onTry(source) {
if (source.species.name === 'Cosmog') {
return;
}
this.hint("Only Cosmog can use this move.");
this.attrLastMove('[still]');
this.add('-fail', source, 'move: Hack Check');
return null;
},
onTryMove() {
this.attrLastMove('[still]');
},
onHit(target, source, move) {
if (this.randomChance(1, 5)) {
changeSet(this, source, ssbSets['Billo-Solgaleo'], true);
source.addVolatile('trapped', source, move, 'trapper');
source.addVolatile('perishsong');
this.add('-start', source, 'perish3', '[silent]');
this.boost({ atk: 1 }, source, source, move);
this.add(`c:|${getName('Billo')}|This is a streamer mon, you're banned from the room.`);
} else {
changeSet(this, source, ssbSets['Billo-Lunala'], true);
this.add(`c:|${getName('Billo')}|Everything checks out, remember to report any suspicious mons to staff!`);
}
},
target: "self",
type: "Normal",
},
// blazeofvictory
veto: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Protects user, Disables attackers.",
desc: "Nearly always moves first. The user is protected from most attacks made by other Pokemon during this turn. If a targeted move is blocked during this effect, the move used by the target is disabled and cannot be selected for 4 turns. This move cannot disable more than one move at a time. This move fails if the user moves last, and has an increasing chance to fail when used consecutively.",
name: "Veto",
gen: 9,
pp: 10,
priority: 3,
flags: { noassist: 1, failcopycat: 1 },
stallingMove: true,
volatileStatus: 'veto',
onPrepareHit(pokemon) {
return !!this.queue.willAct() && this.runEvent('StallMove', pokemon);
},
onHit(pokemon) {
pokemon.addVolatile('stall');
},
condition: {
duration: 1,
onStart(target) {
this.add('-singleturn', target, 'move: Protect');
},
onTryHitPriority: 3,
onTryHit(target, source, move) {
if (!move.flags['protect']) {
if (['gmaxoneblow', 'gmaxrapidflow'].includes(move.id)) return;
if (move.isZ || move.isMax) target.getMoveHitData(move).zBrokeProtect = true;
return;
}
if (move.smartTarget) {
move.smartTarget = false;
} else {
this.add('-activate', target, 'move: Protect');
}
const lockedmove = source.getVolatile('lockedmove');
if (lockedmove) {
// Outrage counter is reset
if (source.volatiles['lockedmove'].duration === 2) {
delete source.volatiles['lockedmove'];
}
}
if (!source.volatiles['disable']) {
source.addVolatile('disable', this.effectState.target);
}
return this.NOT_FAIL;
},
onHit(target, source, move) {
if (move.isZOrMaxPowered && !source.volatiles['disable']) {
source.addVolatile('disable', this.effectState.target);
}
},
},
secondary: null,
target: "self",
type: "Normal",
},
// Blitz
geyserblast: {
accuracy: 95,
basePower: 100,
category: "Special",
shortDesc: "Fire + Water-type attack. Ignores weather.",
desc: "This move combines Fire in its type effectiveness against the target and does not increase or decrease damage dealt based on the current weather condition.",
name: "Geyser Blast",
gen: 9,
pp: 10,
priority: 0,
flags: { protect: 1, mirror: 1 },
onPrepareHit() {
this.attrLastMove('[anim] Steam Eruption');
},
onEffectiveness(typeMod, target, type, move) {
return typeMod + this.dex.getEffectiveness('Fire', type);
},
secondary: null,
target: "normal",
type: "Water",
},
// Breadey
bakersdouzeoff: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Wake up -> Wish + Substitute -> Baton Pass.",
desc: "The user wakes up if it is asleep. Then, the user uses the moves Wish, Substitute, and Baton Pass in that order. If the user does not have enough HP to set a Substitute, the rest of the effects of the move will still occur.",
name: "Baker's Douze Off",
gen: 9,
pp: 15,
priority: 1,
flags: {},
sleepUsable: true,
slotCondition: 'Wish',
volatileStatus: 'substitute',
onPrepareHit(pokemon) {
this.attrLastMove('[anim] Teleport');
if (pokemon.status === 'slp') pokemon.cureStatus();
},
onTry(source, target, move) {
if (source.volatiles['substitute'] ||
source.hp <= source.maxhp / 4 || source.maxhp === 1) { // Shedinja clause
delete move.volatileStatus;
}
},
onHit(target, source, move) {
if (move.volatileStatus) this.directDamage(target.maxhp / 4);
},
onAfterMoveSecondarySelf(source) {
if (this.canSwitch(source.side)) {
this.actions.useMove('batonpass', source);
source.skipBeforeSwitchOutEventFlag = false;
}
},
secondary: null,
target: "self",
type: "Normal",
},
// Cake
rolesystem: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Protects, changes set. Can't use twice in a row.",
// it was easier to do it this way rather than implement failing on consecutive uses
desc: "Nearly always moves first. This move cannot be selected if it was the last move used by this Pokemon. The user is protected from most attacks made by other Pokemon during this turn, and all of the user's stat changes are set to 0. Then, the user gains varying stat boosts and changes its moveset based on the role it picks. Fast Attacker: +2 Attack, +4 Speed with Hyper Drill, Combat Torque, and Extreme Speed. Bulky Setup: +1 Attack, +1 Defense, +2 Special Defense with Coil, Body Slam, and Heal Order. Bulky Support: +2 Defense, +2 Special Defense with Heal Order and any two of Ceaseless Edge, Stone Axe, Mortal Spin, and G-Max Steelsurge. Wallbreaker: +6 Special Attack with Blood Moon.",
name: "Role System",
gen: 9,
pp: 40,
priority: 6,
flags: { protect: 1, mirror: 1, cantusetwice: 1, failcopycat: 1 },
onTry(source) {
if (source.species.baseSpecies === 'Dunsparce') {
return;
}
this.attrLastMove('[still]');
this.add('-fail', source, 'move: Role System');
this.hint("Only a Pokemon whose form is Dunsparce can use this move.");
return null;
},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Haze', target);
},
onHit(target, source, move) {
if (this.randomChance(1, 256)) {
this.add('-activate', target, 'move: Celebrate');
} else {
target.clearBoosts();
this.add('-clearboost', target);
target.addVolatile('protect');
const set = this.random(4);
const newMoves = [];
let role = '';
switch (set) {
case 0:
newMoves.push('hyperdrill', 'combattorque', 'extremespeed');
role = 'Fast Attacker';
this.boost({ atk: 2, spe: 4 });
break;
case 1:
newMoves.push('coil', 'bodyslam', 'healorder');
role = 'Bulky Setup';
this.boost({ atk: 1, def: 1, spd: 2 });
break;
case 2:
const varMoves = ['Ceaseless Edge', 'Stone Axe', 'Mortal Spin', 'G-Max Steelsurge'];
const move1 = this.sample(varMoves);
const move2 = this.sample(varMoves.filter(i => i !== move1));
newMoves.push('healorder', move1, move2);
role = 'Bulky Support';
this.boost({ def: 2, spd: 2 });
break;
case 3:
newMoves.push('bloodmoon', 'bloodmoon', 'bloodmoon');
role = 'Wallbreaker';
this.boost({ spa: 6 });
break;
// removing moveslots becomes very messy so this was the next best thing
}
this.add('-message', `Cake takes up the role of ${role}!`);
for (let i = 0; i < 3; i++) {
const replacement = this.dex.moves.get(newMoves[i]);
const replacementMove = {
move: replacement.name,
id: replacement.id,
pp: replacement.pp,
maxpp: replacement.pp,
target: replacement.target,
disabled: false,
used: false,
};
source.moveSlots[i] = replacementMove;
source.baseMoveSlots[i] = replacementMove;
}
}
},
secondary: null,
target: "self",
type: "Normal",
// bird type crashes during testing (runStatusImmunity for Bird at sim\pokemon.ts:2101:10). no-go.
},
// chaos
outage: {
accuracy: 95,
basePower: 110,
category: "Special",
shortDesc: "Clear Smog + Taunt + Embargo.",
desc: "If this move is successful, the target has all stat stages reset to 0, cannot use status moves for the next 3 turns, and cannot gain any effect from held items for 5 turns. Z-Crystals and forme-changing items are unaffected.",
name: "Outage",
gen: 9,
pp: 5,
priority: 0,
flags: { contact: 1, protect: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Dark Pulse', target);
},
secondaries: [
{
chance: 100,
volatileStatus: 'taunt',
}, {
chance: 100,
volatileStatus: 'embargo',
},
{
chance: 100,
onHit(target) {
target.clearBoosts();
this.add('-clearboost', target);
},
},
],
target: "normal",
type: "Dark",
},
// Chloe
detodaslasflores: {
accuracy: 90,
basePower: 90,
category: "Physical",
shortDesc: "Sets Grassy Terrain before. -50% HP on miss.",
desc: "Before attacking, this move will set Grassy Terrain for 5 turns. If the attack is not successful, the user loses half of its maximum HP, rounded down, as crash damage.",
name: "De Todas las Flores",
gen: 9,
pp: 15,
priority: 0,
flags: { contact: 1, protect: 1, mirror: 1, gravity: 1 },
hasCrashDamage: true,
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.field.setTerrain('grassyterrain');
this.add('-anim', source, 'High Jump Kick', target);
},
onMoveFail(target, source, move) {
this.damage(source.baseMaxhp / 2, source, source, this.dex.conditions.get('High Jump Kick'));
},
secondary: null,
target: "normal",
type: "Grass",
},
// Chris
antidote: {
accuracy: true,
basePower: 0,
category: "Status",
name: "Antidote",
shortDesc: "Heal 50% HP + 3 turn Magnet Rise.",
desc: "The user restores 1/2 of its maximum HP, rounded half up. If the user is not currently under the effect of Magnet Rise, it gains the effect of Magnet Rise for 3 turns, causing it to be immune to all Ground-type moves except Thousand Arrows for the duration.",
pp: 10,
priority: 0,
flags: { snatch: 1, heal: 1, gravity: 1, metronome: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(pokemon) {
this.add('-anim', pokemon, 'Recover', pokemon);
this.add('-anim', pokemon, 'Magnet Rise', pokemon);
},
onTry(source, target, move) {
if (target.volatiles['smackdown'] || target.volatiles['ingrain']) return false;
// Additional Gravity check for Z-move variant
if (this.field.getPseudoWeather('Gravity')) {
this.add('cant', source, 'move: Gravity', move);
return null;
}
},
onHit(target, source, move) {
const success = !!this.heal(this.modify(source.maxhp, 0.25));
return source.addVolatile('magnetrise', source, move) || success;
},
secondary: null,
target: "self",
type: "Normal",
},
// ciran
summonmonsterviiifiendishmonstrouspiplupedecolossal: {
accuracy: 90,
basePower: 60,
basePowerCallback(pokemon, target, move) {
if (move.hit === 1) return 60;
if (move.hit === 2) return 0;
return 20;
},
category: "Physical",
shortDesc: "60 BP Bite->Toxic->2-5 multihit w/ 20 BP each.",
desc: "The user calls the following effects in order: a 100% accurate 60 Base Power Poison-type attack with a 20% chance to cause the target to flinch; 100% accurate Toxic; and 2-5 90% accurate 20 Base Power Poison-type attacks.",
name: "Summon Monster VIII: Fiendish monstrous Piplupede, Colossal",
gen: 9,
pp: 15,
priority: 0,
flags: { protect: 1, contact: 1, mirror: 1 },
multihit: [3, 7],
self: {
volatileStatus: 'summonmonsterviiifiendishmonstrouspiplupedecolossal',
},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Crunch', target);
this.add('-anim', source, 'Fury Swipes', target);
},
condition: {
duration: 1,
noCopy: true,
onAccuracy(accuracy, target, source, move) {
if (move.hit <= 2) return 100;
return 90;
},
},
secondaries: [
{
chance: 20,
onHit(target, source, move) {
if (move.hit !== 1) return;
target.addVolatile('flinch', source, move);
},
},
{
chance: 100,
onHit(target, source, move) {
if (move.hit !== 2) return;
target.trySetStatus('tox', source, move);
},
},
],
onAfterMove(source, target, move) {
this.add(`c:|${getName((source.illusion || source).name)}|There's no way this'll faint in one punch!`);
},
target: "allAdjacentFoes",
type: "Poison",
},
// Clefable
giveaway: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "User switches, passing stat changes and more.",
desc: "The user is replaced with another Pokemon in its party. The selected Pokemon has the user's stat stage changes, confusion, and certain move effects transferred to it.",
name: "Giveaway!",
gen: 9,
pp: 10,
priority: 0,
flags: { metronome: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Teleport', target);
this.add('-anim', source, 'Baton Pass', target);
},
// Baton Pass clones are stupid client side so we're doing this
onHit(target) {
this.actions.useMove('batonpass', target);
},
secondary: null,
target: "self",
type: "Normal",
},
// Clementine
o: {
accuracy: 100,
basePower: 100,
category: "Special",
shortDesc: "Phys if Atk > SpA. Flips user.",
desc: "This move becomes a physical attack if the user's Attack is greater than its Special Attack, including stat stage changes. This move's type depends on the user's primary type. If this move is successful and the user is an Avalugg, it either gains or loses the Flipped condition, changing its moveset and base stats. When under the Flipped condition, Avalugg's Base Stats are 95/46/44/184/116/95 and its moveset changes to Earth Power, Volt Switch, and Heal Pulse. This move is super effective against Kennedy.",
name: "(╯°o°)╯︵ ┻━┻",
pp: 10,
priority: 0,
flags: { protect: 1, failcopycat: 1, nosketch: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Malicious Moonsault', target);
this.add('-anim', source, 'Blizzard', target);
},
onModifyMove(move, pokemon) {
if (pokemon.getStat('atk', false, true) > pokemon.getStat('spa', false, true)) move.category = 'Physical';
},
onModifyType(move, pokemon) {
let type = pokemon.getTypes()[0];
if (type === "Bird") type = "???";
if (type === "Stellar") type = pokemon.getTypes(false, true)[0];
move.type = type;
},
onEffectiveness(typeMod, target, type) {
if (target?.name === 'Kennedy') return 1;
},
onHit(target, source, move) {
if (source.illusion || source.baseSpecies.baseSpecies !== 'Avalugg') return;
if (source.volatiles['flipped']) {
source.removeVolatile('flipped');
changeSet(this, source, ssbSets['Clementine']);
} else {
source.addVolatile('flipped', source, move);
changeSet(this, source, ssbSets['Clementine-Flipped']);
}
},
target: "normal",
type: "Normal",
},
// clerica
stockholmsyndrome: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Curses and traps foe. User loses 1/2 HP.",
desc: "The user loses 1/2 of its maximum HP, rounded down and even if it would cause fainting, in exchange for the target losing 1/4 of its maximum HP, rounded down, at the end of each turn while it is active and becoming unable to switch out.",
name: "Stockholm Syndrome",
pp: 5,
priority: 0,
flags: { bypasssub: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Curse', target);
this.add('-anim', source, 'Block', target);
},
onHit(target, source, move) {
let success = false;
if (!target.volatiles['curse']) {
this.directDamage(source.maxhp / 2, source, source);
target.addVolatile('curse');
success = true;
}
return target.addVolatile('trapped', source, move, 'trapper') || success;
},
zMove: { effect: 'heal' },
secondary: null,
target: "normal",
type: "Ghost",
},
// Clouds
windsofchange: {
accuracy: 100,
basePower: 70,
category: "Physical",
shortDesc: "User sets Tailwind and switches out.",
desc: "If this attack is successful and the user has not fainted, the user switches out even if it is trapped and is replaced immediately by a selected party member, and its party members have their Speed doubled for 4 turns.",
name: "Winds of Change",
pp: 15,
priority: 0,
flags: { protect: 1 },
self: {
sideCondition: 'tailwind',
},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Tailwind', target);
this.add('-anim', source, 'U-turn', target);
},
selfSwitch: true,
secondary: null,
target: "normal",
type: "Flying",
},
// Coolcodename
haxerswill: {
accuracy: 100,
basePower: 0,
category: "Status",
shortDesc: "70% +1 SpA/Spe & Focus Energy, else lose boosts.",
desc: "This move has a 70% chance to boost the user's Special Attack and Speed by 1 stage and grant the user an increased chance of dealing critical hits. If it does not do this, the user's positive stat stage changes will instead be removed.",
name: "Haxer's Will",
gen: 9,
pp: 15,
priority: 0,
flags: {},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Clangorous Soul', source);
this.add('-anim', source, 'Focus Energy', source);
},
onHit(pokemon) {
if (this.randomChance(7, 10)) {
this.boost({ spa: 1, spe: 1 });
pokemon.addVolatile('focusenergy');
} else {
pokemon.clearBoosts();
this.add('-clearboost', pokemon);
}
},
target: "self",
type: "Normal",
},
// Corthius
monkeybeatup: {
accuracy: 100,
basePower: 20,
category: "Physical",
shortDesc: "Hits 4-5 times. +1 priority under Grassy Terrain.",
desc: "Usually moves first when Grassy Terrain is in effect. This move has a 50% chance to hit 4 times and a 50% chance to hit 5 times.",
name: "Monkey Beat Up",
gen: 9,
pp: 10,
priority: 0,
multihit: [4, 5],
flags: { protect: 1, contact: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Beat Up', target);
this.add('-anim', source, 'Wood Hammer', target);
},
onModifyPriority(priority, source, target, move) {
if (this.field.isTerrain('grassyterrain') && source.isGrounded()) {
return priority + 1;
}
},
target: "normal",
type: "Grass",
},
// Dawn of Artemis
magicalfocus: {
accuracy: 100,
basePower: 80,
category: "Special",
name: "Magical Focus",
shortDesc: "Move type cycles. Sets Reflect. Fail if Ultra.",
desc: "This move's type cycles between Fire, Electric, and Ice depending on the current turn number, starting at Fire on turn 1, Electric on turn 2, Ice on turn 3, and repeating this pattern on future turns. For 5 turns, all Pokemon on the user's side of the field take 0.5x damage from physical attacks. This move fails if the user is Necrozma-Ultra.",
pp: 10,
priority: 0,
flags: { protect: 1, mirror: 1 },
onTryMove(target, source, move) {
switch (move.type) {
case 'Fire':
this.attrLastMove('[anim] Flamethrower');
break;
case 'Electric':
this.attrLastMove('[anim] Thunderbolt');
break;
case 'Ice':
this.attrLastMove('[anim] Ice Beam');
break;
default:
this.attrLastMove('[anim] Hyper Beam');
break;
}
},
onModifyType(move) {
if (this.turn % 3 === 1) {
move.type = 'Fire';
} else if (this.turn % 3 === 2) {
move.type = 'Electric';
} else {
move.type = 'Ice';
}
},
onDisableMove(pokemon) {
if (pokemon.species.id === 'necrozmaultra') pokemon.disableMove('magicalfocus');
},
self: {
sideCondition: 'reflect',
},
target: "normal",
type: "Normal",
},
// DaWoblefet
superegoinflation: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "User heals 25% HP; Target: +2 Atk/SpA + Taunt.",
desc: "The user heals 1/4 of its maximum HP. The target's Attack and Special Attack are raised by 2 stages each, and the target cannot use status moves for 3 turns.",
name: "Super Ego Inflation",
gen: 9,
pp: 5,
priority: -7,
flags: { protect: 1, mirror: 1, bypasssub: 1, reflectable: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Follow Me', source);
this.add('-anim', target, 'Swords Dance', target);
this.add('-anim', target, 'Nasty Plot', target);
},
onHit(target, source) {
this.heal(source.maxhp / 4, source);
this.boost({ atk: 2, spa: 2 });
target.addVolatile('taunt');
},
target: "normal",
type: "Normal",
},
// deftinwolf
trivialpursuit: {
accuracy: 100,
basePower: 70,
basePowerCallback(pokemon, target, move) {
// You can't get here unless the pursuit succeeds
if (target.beingCalledBack || target.switchFlag) {
this.debug('Trivial Pursuit damage boost');
return move.basePower * 2;
}
return move.basePower;
},
category: "Physical",
shortDesc: "If foe is switching out, 2x power. Doesn't KO.",
desc: "If an opposing Pokemon switches out this turn, this move hits that Pokemon before it leaves the field, even if it was not the original target. If the user moves after an opponent using Flip Turn, Parting Shot, Teleport, U-turn, or Volt Switch, but not Baton Pass, it will hit that opponent before it leaves the field. Power doubles and no accuracy check is done if the user hits an opponent switching out, and the user's turn is over. Leaves the target with at least 1 HP.",
name: "Trivial Pursuit",
pp: 5,
priority: 0,
flags: { contact: 1, protect: 1, mirror: 1 },
onPrepareHit() {
this.attrLastMove('[anim] Pursuit');
},
beforeTurnCallback(pokemon) {
for (const side of this.sides) {
if (side.hasAlly(pokemon)) continue;
side.addSideCondition('trivialpursuit', pokemon);
const data = side.getSideConditionData('trivialpursuit');
if (!data.sources) {
data.sources = [];
}
data.sources.push(pokemon);
}
},
onModifyMove(move, source, target) {
if (target?.beingCalledBack || target?.switchFlag) move.accuracy = true;
},
onTryHit(target, pokemon) {
target.side.removeSideCondition('trivialpursuit');
},
condition: {
duration: 1,
onBeforeSwitchOut(pokemon) {
this.debug('Trivial Pursuit start');
let alreadyAdded = false;
pokemon.removeVolatile('destinybond');
for (const source of this.effectState.sources) {
if (!source.isAdjacent(pokemon) || !this.queue.cancelMove(source) || !source.hp) continue;
if (!alreadyAdded) {
this.add('-activate', pokemon, 'move: Pursuit');
alreadyAdded = true;
}
// Run through each action in queue to check if the Pursuit user is supposed to Mega Evolve this turn.
// If it is, then Mega Evolve before moving.
if (source.canMegaEvo || source.canUltraBurst) {
for (const [actionIndex, action] of this.queue.entries()) {
if (action.pokemon === source && action.choice === 'megaEvo') {
this.actions.runMegaEvo(source);
this.queue.list.splice(actionIndex, 1);
break;
}
}
}
this.actions.runMove('trivialpursuit', source, source.getLocOf(pokemon));
}
},
},
onDamagePriority: -20,
onDamage(damage, target, source, effect) {
if (damage >= target.hp) return target.hp - 1;
},
secondary: null,
target: "normal",
type: "Dark",
},
// dhelmise
bioticorb: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: ">50% HP:Set orb that damages foes.<50% heals you.",
desc: "If the user's HP is at or above 50% of its maximum HP, a damaging orb is set on the opponent's side of the field, dealing 50 points of damage at the end of each turn for 4 turns. If the user's HP is below 50% of its maximum HP, a healing orb is set on the user's side of the field, healing the active Pokemon for 65 HP at the end of each turn until it has healed a total of 300 HP. If the appropriate side already has its orb, this move will try to place the other orb down. This move fails if an orb is already in place on the side an orb would be set.",
name: "Biotic Orb",
gen: 9,
pp: 10,
priority: 0,
flags: { reflectable: 1, mustpressure: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
if (source.hp < source.maxhp / 2) {
this.add('-anim', source, 'Wish', source);
} else {
this.add('-anim', source, 'Shadow Ball', target);
}
},
// Volatiles implemented in conditions.ts
onHit(target, source, move) {
if (source.hp < source.maxhp / 2) {
if (!source.side.addSideCondition('bioticorbself', source, move)) {
if (!source.side.foe.addSideCondition('bioticorbfoe', source, move)) return null;
}
} else {
if (!source.side.foe.addSideCondition('bioticorbfoe', source, move)) {
if (!source.side.addSideCondition('bioticorbself', source, move)) return null;
}
}
},
secondary: null,
target: "normal",
type: "Poison",
},
// DianaNicole
breathoftiamat: {
accuracy: 95,
basePower: 20,
category: "Special",
shortDesc: "5 hits: Fire, Ice, Poison, Elec, Poison. Is STAB.",
desc: "This move hits 5 times. The first hit is Fire-type, the second is Ice-type, the third is Poison-type, the fourth is Electric-type, and the fifth is Poison-type. Each move checks accuracy individually, and if one hit misses, the attack stops. If the target is immune to one or more of the hits, the rest will still execute as normal. This move will always have Same-Type Attack Bonus.",
name: "Breath of Tiamat",
pp: 20,
priority: 0,
flags: { protect: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source, move) {
if (target.runImmunity('Fire')) {
this.add('-anim', source, 'Flamethrower', target);
}
},
onHit(target, source, move) {
const moveTypes = ['Fire', 'Ice', 'Poison', 'Electric', 'Poison'];
const hitTypes = moveTypes.filter(x => target.runImmunity(x));
if (move.hit >= hitTypes.length) {
move.basePower = 0;
move.category = 'Status';
/* Problem here - we can't retroactively change the multihit parameter.
With this specific code, the move functions as intended, but will display the incorrect
number of hits if a target is immune to any of them. Even if you try to return false, null, etc
during this step, it will not interrupt the move. Nor will a this.add(-fail) do so either.
This seems to be the only way to get it to work and is a decent enough compromise for now. */
} else {
move.type = hitTypes[move.hit];
const moveAnims = ['Flamethrower', 'Ice Beam', 'Gunk Shot', 'Charge Beam', 'Sludge Bomb'];
const hitAnims = [];
for (const [i, anim] of moveAnims.entries()) {
const index2 = Math.min(i, hitTypes.length - 1);
if (moveTypes[i] === hitTypes[index2]) {
hitAnims.push(anim);
}
}
this.add('-anim', source, hitAnims[move.hit], target);
}
},
multihit: 5,
multiaccuracy: true,
forceSTAB: true,
secondary: null,
target: 'normal',
type: "Fire",
},
// EasyOnTheHills
snacktime: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Charges.Turn 2: +2 Atk/Def, heal 25% for 3 turns.",
desc: "Boosts the user's Attack and Defense by 2 stages, and heals the user for 1/4 of its maximum HP at the end of each turn for 3 turns. This attack charges on the first turn and executes on the second. This move will fail if it is already in effect.",
name: "Snack Time",
pp: 10,
priority: 0,
flags: {},
volatileStatus: 'snack',
onTryMove(attacker, defender, move) {
if (attacker.volatiles['snack']) {
this.add('-fail', attacker, 'move: Snack Time');
this.attrLastMove('[still]');
return null;
}
if (attacker.removeVolatile(move.id)) {
this.attrLastMove('[still]');
this.add('-anim', attacker, 'Shell Smash', attacker);
return;
}
this.attrLastMove('[still]');
this.add('-anim', attacker, 'Geomancy', attacker);
if (!this.runEvent('ChargeMove', attacker, defender, move)) {
return;
}
attacker.addVolatile('twoturnmove', defender);
return null;
},
boosts: {
atk: 2,
def: 2,
},
// passive recovery implemented in conditions.ts
secondary: null,
target: "self",
type: "Normal",
},
// Elliot
teaparty: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Recover & Refresh. 7/8 get Boiled, 1/8 Beefed.",
desc: "The user heals 1/2 of its maximum HP and cures its non-volatile status condition. The user has a 7/8 chance of gaining the Boiled condition, removing all previously-added extra types, adding a Water typing to the user, replacing its ability with Speed Boost, and replacing Teatime or Body Press with Steam Eruption if it exists on the set; and a 1/8 chance of gaining the Beefed condition, removing all previously-added extra types, adding a Fighting typing to the user, replacing its ability with Stamina, and replacing Teatime or Steam Eruption with Body Press.",
name: "Tea Party",
pp: 5,
priority: 0,
flags: { protect: 1, mirror: 1, heal: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Milk Drink', source);
},
onHit(pokemon) {
this.heal(pokemon.baseMaxhp / 2);
pokemon.cureStatus();
let newMove = "";
let backupMove = "";
if (this.randomChance(7, 8)) { // get boiled
pokemon.removeVolatile('beefed');
pokemon.addVolatile('boiled');
pokemon.setAbility("Speed Boost");
newMove = 'steameruption';
backupMove = 'bodypress';
if (!pokemon.hasType('Water') && pokemon.addType('Water')) {
this.add('-start', pokemon, 'typeadd', 'Water', '[from] move: Tea Party');
}
this.add(`c:|${getName((pokemon.illusion || pokemon).name)}|Just tea, thank you`);
} else { // get beefed
pokemon.removeVolatile('boiled');
pokemon.addVolatile('beefed');
pokemon.setAbility("Stamina");
newMove = 'bodypress';
backupMove = 'steameruption';
if (!pokemon.hasType('Fighting') && pokemon.addType('Fighting')) {
this.add('-start', pokemon, 'typeadd', 'Fighting', '[from] move: Tea Party');
}
this.add(`c:|${getName((pokemon.illusion || pokemon).name)}|BOVRIL TIME`);
}
// -start for beefed and boiled is not necessary, i put it in there for an indicator
// as to what form sinistea is currently using. backupMove also eases the form switch
let teaIndex = pokemon.moves.indexOf('teatime');
const replacement = this.dex.moves.get(newMove);
if (teaIndex < 0) {
if (pokemon.moves.includes(backupMove)) {
teaIndex = pokemon.moves.indexOf(backupMove);
} else {
return;
}
}
const newMoveSlot = {
move: replacement.name,
id: replacement.id,
pp: replacement.pp,
maxpp: replacement.pp,
target: replacement.target,
disabled: false,
used: false,
};
pokemon.moveSlots[teaIndex] = newMoveSlot;
},
secondary: null,
target: 'self',
type: "Flying",
},
// Elly
sustainedwinds: {
accuracy: 90,
basePower: 20,
category: "Special",
shortDesc: "Hits 5 times.",
name: "Sustained Winds",
pp: 10,
priority: 0,
flags: { protect: 1, mirror: 1, wind: 1 },
onPrepareHit() {
this.attrLastMove('[anim] Bleakwind Storm');
},
multihit: 5,
secondary: null,
target: 'normal',
type: "Flying",
},
// Emboar02
insertboarpunhere: {
accuracy: 100,
basePower: 80,
category: "Physical",
shortDesc: "Has 33% recoil. Switch after using.",
desc: "If the target lost HP, the user takes recoil damage equal to 33% of the HP lost by the target, rounded half up, but not less than 1 HP. If this move is successful and the user has not fainted, the user switches out even if it is trapped and is replaced immediately by a selected party member. The user does not switch out if there are no unfainted party members, or if the target switched out using an Eject Button or through the effect of the Emergency Exit or Wimp Out Abilities.",
name: "Insert boar pun here",
pp: 20,
priority: 0,
flags: { protect: 1, contact: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Collision Course', target);
this.add('-anim', source, 'U-turn', target);
},
selfSwitch: true,
recoil: [33, 100],
secondary: null,
target: 'normal',
type: "Fighting",
},
// Fame
solidarity: {
accuracy: 100,
basePower: 0,
category: "Status",
shortDesc: "Creates a Substitute and sets Leech Seed.",
desc: "The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. The Pokemon at the user's position steals 1/8 of the target's maximum HP, rounded down, at the end of each turn. If either of the affected Pokemon uses Baton Pass, its respective effect will remain for its replacement.",
name: "Solidarity",
pp: 15,
priority: 0,
flags: { protect: 1, reflectable: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Substitute');
this.add('-anim', source, 'Leech Seed', target);
},
onHit(target, source) {
if (target.hasType('Grass') || target.isProtected()) return null;
target.addVolatile('leechseed', source);
},
self: {
onHit(target, source) {
if (source.volatiles['substitute']) return;
if (source.hp <= source.maxhp / 4 || source.maxhp === 1) { // Shedinja clause
this.add('-fail', source, 'move: Substitute', '[weak]');
} else {
source.addVolatile('substitute');
this.directDamage(source.maxhp / 4);
}
},
},
secondary: null,
target: 'normal',
type: "Grass",
},
// Felucia
riggeddice: {
accuracy: 100,
basePower: 0,
category: "Status",
shortDesc: "Stat changes: inverts, else Taunt. User switches.",
desc: "If the target has any stat stage changes, the target's positive stat stages become negative and vice versa. If the target does not have any stat stage changes, the target cannot use status moves for 3 turns. If this move is successful, the user switches out even if it is trapped and is replaced immediately by a selected party member. The user does not switch out if there are no unfainted party members.",
name: "Rigged Dice",
pp: 10,
priority: 0,
flags: { protect: 1, reflectable: 1 },
selfSwitch: true,
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Smart Strike', source);
},
onHit(target, source) {
let success = false;
let i: BoostID;
for (i in target.boosts) {
if (target.boosts[i] === 0) continue;
target.boosts[i] = -target.boosts[i];
success = true;
}
if (success) {
this.add('-invertboost', target, '[from] move: Rigged Dice');
} else {
target.addVolatile('taunt', source);
}
},
secondary: null,
target: 'normal',
type: "Bug",
},
// Froggeh
cringedadjoke: {
accuracy: 90,
basePower: 90,
category: "Physical",
shortDesc: "Confuses the foe. Foe self-hits: +1 Atk/Def.",
desc: "Confuses the target. When the target hits itself in confusion from this move, the user's Attack and Defense are boosted by 1 stage.",
name: "Cringe Dad Joke",
pp: 10,
priority: 0,
flags: { protect: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Dizzy Punch', target);
this.add('-anim', source, 'Bulk Up', source);
},
self: {
volatileStatus: 'cringedadjoke',
},
secondary: {
chance: 100,
volatileStatus: 'confusion',
},
target: 'normal',
type: "Fighting",
// confusion self-hit stat bonus implemented as an innate because it doesn't work as a move effect
},
// Frostyicelad
puffyspikydestruction: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Turn 1 out: DDance, TSpikes, -Psn type.",
desc: "Nearly always moves first. Removes the user's Poison typing if it has one, and boosts the user's Attack and Speed by 1 stage. Sets one layer of Toxic Spikes on the opposing side of the field, poisoning all grounded, non-Poison-type Pokemon that switch in. Fails unless it's the user's first turn on the field.",
name: "Puffy Spiky Destruction",
pp: 5,
priority: 4,
flags: {},
onTry(source) {
if (source.activeMoveActions > 1) {
this.hint("Puffy Spiky Destruction only works on your first turn out.");
return false;
}
},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Quiver Dance', source);
this.add('-anim', source, 'Spiky Shield', source);
this.add('-anim', source, 'Toxic Spikes', target);
},
onHit(target, source, move) {
source.setType(source.getTypes(true).filter(type => type !== "Poison"));
this.add('-start', source, 'typechange', source.getTypes().join('/'), '[from] move: Puffy Spiky Destruction');
const foeSide = source.side.foe;
if (!foeSide.sideConditions['toxicspikes'] || foeSide.sideConditions['toxicspikes'].layers < 2) {
foeSide.addSideCondition('toxicspikes', source, move);
}
},
boosts: {
spe: 1,
atk: 1,
},
secondary: null,
target: 'self',
type: "Poison",
},
// Frozoid
flatoutfalling: {
accuracy: 100,
basePower: 75,
category: "Physical",
shortDesc: "Sets Gravity.",
desc: "Sets Gravity for 5 turns, multiplying the evasiveness of all active Pokemon by 0.6 and grounding them.",
name: "Flat out falling",
pp: 5,
priority: 0,
flags: { protect: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Head Smash', target);
this.add('-anim', source, 'Gravity', target);
},
self: {
onHit(source) {
this.field.addPseudoWeather('gravity', source);
},
},
secondary: null,
target: 'normal',
type: "???",
},
// Ganjafin
wigglingstrike: {
accuracy: 95,
basePower: 10,
category: "Physical",
shortDesc: "Applies Salt Cure and sets a layer of spikes.",
desc: "Causes damage to the target equal to 1/8 of its maximum HP (1/4 if the target is Steel or Water type), rounded down, at the end of each turn during effect. This effect ends when the target is no longer active. Sets a layer of Spikes on the target's side of the field, damaging grounded foes when they switch in.",
name: "Wiggling Strike",
gen: 9,
pp: 10,
priority: 0,
flags: { protect: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Water Pulse', target);
this.add('-anim', target, 'Aqua Ring', target);
},
self: {
onHit(source) {
for (const side of source.side.foeSidesWithConditions()) {
side.addSideCondition('spikes');
}
},
},
secondary: {
chance: 100,
volatileStatus: 'saltcure',
},
target: "normal",
type: "Water",
},
// Haste Inky
hastyrevolution: {
accuracy: 100,
basePower: 0,
category: "Status",
shortDesc: "Clear foe stats+copies neg stats+inverts on user.",
desc: "Resets the stat stages of the target to 0. Then, the target receives a copy of the user's negative stat stage changes, and the user's negative stat stage changes become positive.",
name: "Hasty Revolution",
pp: 10,
priority: 4,
flags: { protect: 1, mirror: 1, noassist: 1, failcopycat: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Pain Split', target);
return !!this.queue.willAct() && this.runEvent('StallMove', source);
},
onHit(target, source, move) {
source.addVolatile('stall');
target.clearBoosts();
this.add('-clearboost', target);
let i: BoostID;
for (i in source.boosts) {
if (source.boosts[i] < 0) {
target.boosts[i] += source.boosts[i];
this.add('-setboost', target, i as string, target.boosts[i], '[silent]');
source.boosts[i] = -source.boosts[i];
this.add('-setboost', source, i as string, source.boosts[i], '[silent]');
}
}
this.add('-message', `${target.name} received ${source.name}'s negative stat boosts!'`);
this.add('-message', `${source.name} inverted their negative stat boosts!`);
},
stallingMove: true,
self: {
volatileStatus: 'protect',
},
secondary: null,
target: "normal",
type: "Normal",
},
// havi
augurofebrietas: {
accuracy: 100,
basePower: 70,
category: "Special",
shortDesc: "Disables the target's last move and switches.",
desc: "The target's last used move is disabled and cannot be selected for 4 turns. This move cannot disable more than one move at a time. The user then switches out even if it is trapped and is replaced immediately by a selected party member. The user does not switch out if there are no unfainted party members.",
name: "Augur of Ebrietas",
pp: 10,
priority: 0,
flags: { protect: 1, mirror: 1 },
onPrepareHit() {
this.attrLastMove('[anim] Spirit Shackle');
},
onAfterHit(target, source, move) {
this.add(`c:|${getName((source.illusion || source).name)}|as you once did for the vacuous Rom,`);
},
selfSwitch: true,
volatileStatus: 'disable',
target: "normal",
type: "Ghost",
},
// Hecate
testinginproduction: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "+2, -2 to random stats, small chance of harm.",
desc: "The user boosts a random stat by 2 stages, and the user lowers a random stat by 2 stages. These can be the same stat, and cannot include Accuracy or Evasion. Independently, there is a 10% chance for the user to lose 10% of their maximum HP, and there is a 5% chance for the user to gain a random non-volatile status condition.",
name: "Testing in Production",
gen: 9,
pp: 5,
priority: 0,
flags: {},
onPrepareHit() {
this.attrLastMove('[anim] Curse');
},
onHit(pokemon) {
this.add(`c:|${getName((pokemon.illusion || pokemon).name)}|Please don't break...`);
let stats: BoostID[] = [];
const boost: SparseBoostsTable = {};
let statPlus: BoostID;
for (statPlus in pokemon.boosts) {
if (statPlus === 'accuracy' || statPlus === 'evasion') continue;
if (pokemon.boosts[statPlus] < 6) {
stats.push(statPlus);
}
}
let randomStat: BoostID | undefined = stats.length ? this.sample(stats) : undefined;
if (randomStat) boost[randomStat] = 2;
stats = [];
let statMinus: BoostID;
for (statMinus in pokemon.boosts) {
if (statMinus === 'accuracy' || statMinus === 'evasion') continue;
if (pokemon.boosts[statMinus] > -6) {
stats.push(statMinus);
}
}
randomStat = stats.length ? this.sample(stats) : undefined;
if (randomStat) {
if (boost[randomStat]) {
boost[randomStat] = 0;
this.add(`c:|${getName((pokemon.illusion || pokemon).name)}|Well. Guess that broke. Time to roll back.`);
return;
} else {
boost[randomStat] = -2;
}
}
this.boost(boost, pokemon, pokemon);
},
onAfterMove(pokemon) {
if (this.randomChance(1, 10)) {
this.add(`c:|${getName((pokemon.illusion || pokemon).name)}|Ouch! That crash is really getting on my nerves...`);
this.damage(pokemon.baseMaxhp / 10);
if (pokemon.hp <= 0) return;
}
if (this.randomChance(1, 20)) {
const status = this.sample(['frz', 'brn', 'psn', 'par']);
let statusText = status;
if (status === 'frz') {
statusText = 'froze';
} else if (status === 'brn') {
statusText = 'burned';
} else if (status === 'par') {
statusText = 'paralyzed';
} else if (status === 'psn') {
statusText = 'poisoned';
}
this.add(`c:|${getName((pokemon.illusion || pokemon).name)}|Darn. A bug ${statusText} me. Guess I should have tested this first.`);
pokemon.setStatus(status);
}
},
secondary: null,
target: "self",
type: "Electric",
},
// HiZo
scapegoat: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "KO a teammate; gain more Atk/SpA/Spe if healthy.",
desc: "A party member is selected and faints, raising the user's Attack, Special Attack, and Speed by 1 stage if the party member's HP is below 33%, by 2 stages if the party member's HP is between 33% and 66%, and by 3 stages if the party member's HP is above 66%. Fails if there are no non-fainted Pokemon on the user's side.",
name: "Scapegoat",
gen: 9,
pp: 5,
priority: 0,
flags: {},
onTryHit(source) {
if (!this.canSwitch(source.side)) {
this.attrLastMove('[still]');
this.add('-fail', source);
return this.NOT_FAIL;
}
},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Swords Dance', source);
},
onHit(target, source) {
this.add(`c:|${getName((source.illusion || source).name)}|Ok I have a stupid idea, just hear me out`);
this.add('message', `A sacrifice is needed.`);
},
slotCondition: 'scapegoat',
// fake switch a la revival blessing
selfSwitch: true,
condition: {
duration: 1,
// reviving implemented in side.ts, kind of
},
secondary: null,
target: "self",
type: "Dark",
},
// HoeenHero
reprogram: {
accuracy: 100,
basePower: 0,
category: "Status",
shortDesc: "Rain Dance + Lock-On.",
name: "Re-Program",
pp: 10,
priority: 0,
flags: { protect: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Calm Mind', source);
this.add('-anim', source, 'Geomancy', target);
},
onHit(target, source, move) {
let success = false;
if (this.field.setWeather('raindance', source, move)) {
this.add('-message', 'HoeenHero made the environment easier to work with!');
success = true;
}
if (source.addVolatile('lockon', target)) {
this.add('-message', 'HoeenHero double checked their work and fixed any errors!');
this.add('-activate', source, 'move: Lock-On', `[of] ${target}`);
success = true;
}
if (success) {
this.add('-message', 'HoeenHero reprograms the battle to be more beneficial to them!');
}
},
target: "normal",
type: "Psychic",
},
// hsy
wonderwing: {
accuracy: 90,
basePower: 150,
category: "Physical",
shortDesc: "No dmg rest of turn. Next turn user has -1 prio.",
desc: "Usually moves last. The user becomes immune to all damage sources for the rest of the turn. The turn after this move is used, the user's moves all gain -1 priority. This move ignores all negative effects associated with contact moves.",
name: "Wonder Wing",
pp: 5,
priority: 0,
flags: { contact: 1 },
// No negative contact effects implemented in Battle#checkMovesMakeContact
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Electric Terrain', source);
this.add('-anim', source, 'Giga Impact', target);
},
self: {
volatileStatus: 'wonderwing',
},
condition: {
noCopy: true,
duration: 2,
onStart(pokemon) {
this.add('-start', pokemon, 'Wonder Wing');
},
onRestart(target, source, sourceEffect) {
target.removeVolatile('wonderwing');
},
onDamage(damage, target, source, effect) {
if (this.effectState.duration! < 2) return;
this.add('-activate', source, 'move: Wonder Wing');
return false;
},
onModifyPriority(relayVar, source, target, move) {
return -1;
},
onEnd(pokemon) {
this.add('-end', pokemon, 'Wonder Wing', '[silent]');
},
},
target: "normal",
type: "Flying",
},
// Hydrostatics
hydrostatics: {
accuracy: 100,
basePower: 90,
category: "Special",
name: "Hydrostatics",
shortDesc: "70%:+1 SpA,50%:prz,Elec/Water. Differs when Tera.",
desc: "If the user has not Terastallized, this move has a 70% chance to raise the user's Special Attack by 1 stage, has a 50% chance to paralyze the target, and combines the Water type in its type effectiveness. When the user has Terastallized, this move is a purely Water-type attack that gains Same-Type Attack Bonus with Water-types, and it has an 80% chance to raise the user's Special Attack by 1 stage, has a 60% chance to change the target's typing to Water, and is super effective against Water.",
pp: 20,
priority: 1,
flags: { protect: 1, mirror: 1 },
onModifyMove(move, source, target) {
if (source.terastallized) {
move.type = 'Water';
}
},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
if (!source.terastallized) this.add('-anim', source, 'Charge Beam', source);
else this.add('-anim', source, 'Water Pulse', target);
},
onEffectiveness(typeMod, target, type, move) {
if (move.type === 'Electric') return typeMod + this.dex.getEffectiveness('Water', type);
else if (type === 'Water' && move.type === 'Water') return 1;
},
secondary: {
chance: 100,
onHit(target, source, move) {
// None of these stack with Serene Grace
if (!source.terastallized) {
if (this.randomChance(70, 100)) {
this.boost({ spa: 1 }, source);
}
if (this.randomChance(50, 100)) {
if (target.isActive) target.trySetStatus('par', source, this.effect);
}
} else {
if (this.randomChance(80, 100)) {
this.boost({ spa: 1 }, source);
}
if (this.randomChance(60, 100)) {
// Soak
if (target.getTypes().join() !== 'Water' && target.setType('Water')) {
this.add('-start', target, 'typechange', 'Water');
}
}
}
},
},
target: "normal",
type: "Electric",
},
// Imperial
stormshroud: {
accuracy: 100,
basePower: 95,
category: "Special",
name: "Storm Shroud",
shortDesc: "Physical + contact if stronger.",
desc: "This move becomes a physical attack that makes contact if the value of ((((2 * the user's level / 5 + 2) * 90 * X) / Y) / 50), where X is the user's Attack stat and Y is the target's Defense stat, is greater than the same value where X is the user's Special Attack stat and Y is the target's Special Defense stat. No stat modifiers other than stat stage changes are considered for this purpose. If the two values are equal, this move chooses a damage category at random.",
pp: 10,
priority: 0,
flags: { protect: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Clangorous Soulblaze', target);
},
onModifyMove(move, pokemon, target) {
if (!target) return;
const atk = pokemon.getStat('atk', false, true);
const spa = pokemon.getStat('spa', false, true);
const def = target.getStat('def', false, true);
const spd = target.getStat('spd', false, true);
const physical = Math.floor(Math.floor(Math.floor(Math.floor(2 * pokemon.level / 5 + 2) * 90 * atk) / def) / 50);
const special = Math.floor(Math.floor(Math.floor(Math.floor(2 * pokemon.level / 5 + 2) * 90 * spa) / spd) / 50);
if (physical > special || (physical === special && this.randomChance(1, 2))) {
move.category = 'Physical';
move.flags.contact = 1;
}
},
secondary: null,
target: "normal",
type: "Dragon",
},
// in the hills
"102040": {
accuracy: 100,
basePower: 10,
category: "Physical",
name: "10-20-40",
shortDesc: "Hits 3 times, 3rd hit crits. sets Safeguard.",
desc: "Hits three times. Power increases to 20 for the second hit and 40 for the third. The third hit is always a critical hit unless the target is under the effect of Lucky Chant or has the Battle Armor or Shell Armor Abilities. If this move deals damage, it applies the effect of Safeguard for 5 turns, protecting the user's team from confusion and non-volatile status conditions.",
pp: 5,
priority: 0,
flags: { protect: 1, mirror: 1 },
basePowerCallback(pokemon, target, move) {
return [10, 20, 40][move.hit - 1];
},
onTryHit(target, source, move) {
if (move.hit === 3) {
move.willCrit = true;
}
},
onPrepareHit() {
this.attrLastMove('[anim] Triple Kick');
},
self: {
sideCondition: 'safeguard',
},
secondary: null,
multihit: 3,
target: "normal",
type: "Ground",
},
// ironwater
jirachibanhammer: {
accuracy: 100,
basePower: 120,
category: "Physical",
shortDesc: "Prevents the target from switching out.",
desc: "Prevents the target from switching out. The target can still switch out if it is holding Shed Shell or uses Baton Pass, Flip Turn, Parting Shot, Teleport, U-turn, or Volt Switch. If the target leaves the field using Baton Pass, the replacement will remain trapped. The effect ends if the user leaves the field.",
name: "Jirachi Ban Hammer",
pp: 5,
priority: 0,
flags: { contact: 1, protect: 1, mirror: 1 },
onPrepareHit() {
this.attrLastMove('[anim] Gigaton Hammer');
},
secondary: {
chance: 100,
onHit(target, source, move) {
if (source.isActive) target.addVolatile('trapped', source, move, 'trapper');
},
},
target: "normal",
type: "Steel",
},
// Irpachuza
bibbidibobbidirands: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Changes target to a Randbats set.",
desc: "Z-Move requiring Irpatuzinium Z. Nearly always moves first. Permanently transforms the target into a randomized Pokemon that would be generated in one of the following formats: Gen 9 Random Battle, Gen 9 Hackmons Cup, Gen 9 Challenge Cup, or Computer-Generated Teams. In the vast majority of circumstances, this also prevents the target from acting this turn.",
name: "Bibbidi-Bobbidi-Rands",
gen: 9,
pp: 1,
priority: 0,
flags: { protect: 1 },
onPrepareHit(target, source) {
this.attrLastMove('[anim] Doom Desire');
},
onHit(target, source) {
const formats = ['gen9randombattle', 'gen9hackmonscup', 'gen9challengecup1v1', 'gen9computergeneratedteams'];
const randFormat = this.sample(formats);
let msg;
switch (randFormat) {
case 'gen9randombattle':
msg = "Ta-dah! You are now blessed with a set from the most popular format on the sim, hope you like it! n.n";
break;
case 'gen9hackmonscup':
msg = "Hackmons Cup is like Rands but scrambled eggs, cheese and pasta. I'm sure you'll love it too n.n";
break;
case 'gen9challengecup1v1':
msg = "The only difference between a Challenge Cup Pokémon and my in-game one is that the former actually surpassed lvl. 60, enjoy n.n";
break;
case 'gen9computergeneratedteams':
msg = "We asked an AI to make a randbats set. YOU WON'T BELIEVE WHAT IT CAME UP WITH N.N";
break;
}
let team = [] as PokemonSet[];
const unModdedDex = Dex.mod('base');
let depth = 0;
while (!team.length) {
team = Teams.generate(randFormat, { name: target.side.name });
if (depth >= 50) break; // Congrats you won the lottery!
team = team.filter(p => {
const baseSpecies = unModdedDex.species.get(p.species);
const curSpecies = this.dex.species.get(p.species);
if (Object.values(baseSpecies.baseStats).join() !== Object.values(curSpecies.baseStats).join()) {
return false;
}
if (Object.values(baseSpecies.abilities).join() !== Object.values(curSpecies.abilities).join()) {
return false;
}
if (baseSpecies.types.join() !== curSpecies.types.join()) {
return false;
}
return true;
});
depth++;
}
this.addMove('-anim', target, 'Wish', target);
target.clearBoosts();
this.add('-clearboost', target);
// @ts-expect-error set wants a sig but randbats sets don't have one
changeSet(this, target, team[0], true);
this.add(`c:|${getName((source.illusion || source).name)}|${msg}`);
},
isZ: "irpatuziniumz",
secondary: null,
target: "normal",
type: "Fairy",
},
// Isaiah
simplegameplan: {
accuracy: 100,
basePower: 95,
category: "Physical",
name: "Simple Gameplan",
shortDesc: "No additional effect.",
pp: 10,
priority: 0,
flags: { contact: 1, protect: 1, mirror: 1 },
onPrepareHit(target, source) {
this.attrLastMove('[anim] High Jump Kick');
},
secondary: null,
target: "allAdjacent",
type: "Psychic",
},
// J0rdy004
snowysamba: {
accuracy: true,
basePower: 0,
category: "Status",
name: "Snowy Samba",
shortDesc: "Sets Snow, +1 Sp. Atk, +2 Speed.",
desc: "Raises the user's Special Attack by 1 stage and Speed by 2 stages, and changes the weather to Snow, boosting the defense of Ice-types by 1.5x for 5 turns. Snow will not be set if the weather cannot be changed or if the weather is already Snow.",
pp: 15,
priority: 0,
flags: { snatch: 1, metronome: 1 },
boosts: {
spe: 2,
spa: 1,
},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Agility', target);
this.add('-anim', source, 'Snowscape', target);
},
weather: 'snowscape',
secondary: null,
target: "self",
type: "Ice",
},
// Kalalokki
knotweak: {
accuracy: 80,
basePower: 150,
category: "Physical",
name: "Knot Weak",
shortDesc: "Has 1/2 recoil.",
desc: "If the target lost HP, the user takes recoil damage equal to 1/2 the HP lost by the target, rounded half up, but not less than 1 HP.",
pp: 5,
flags: { contact: 1, protect: 1, mirror: 1, metronome: 1 },
recoil: [1, 2],
secondary: null,
priority: 0,
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Focus Punch', target);
},
target: "normal",
type: "Fighting",
},
// Karthik
salvagedsacrifice: {
accuracy: 100,
basePower: 0,
damageCallback(pokemon) {
this.add('-anim', pokemon, 'Roost', pokemon);
this.heal(this.modify(pokemon.maxhp, 0.25), pokemon, pokemon, this.dex.getActiveMove('Salvaged Sacrifice'));
const damage = pokemon.hp;
this.add('-anim', pokemon, 'Final Gambit', this.activeTarget);
pokemon.faint();
return damage;
},
selfdestruct: "ifHit",
category: "Physical",
name: "Salvaged Sacrifice",
shortDesc: "Heals 25% HP, then uses Final Gambit.",
desc: "The user heals 1/4 of its maximum HP, then deals damage to the target equal to the user's current HP. If this attack is successful, the user faints.",
pp: 5,
priority: 0,
flags: { protect: 1, metronome: 1, noparentalbond: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
secondary: null,
target: "normal",
type: "Fighting",
},
// ken
ac: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Does something random.",
desc: "This move performs exactly one of the following at random, ignoring options that would do nothing: 10% chance to burn the target; 10% chance to paralyze the target; 10% chance to poison the target; 3% chance to put the target to sleep; 2% chance to freeze the target; 5% chance each to confuse, infatuate, Taunt, Encore, Torment, or Heal Block the target; 5% chance each to set Stealth Rock, Spikes, Toxic Spikes, or Sticky Web; 5% chance to remove entry hazards from the user's side of the field; 5% chance to lower the foe's highest stat by 1 stage; and a 5% chance to switch out.",
name: ", (ac)",
pp: 15,
priority: 0,
flags: { reflectable: 1, mustpressure: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Fling', target);
},
secondary: {
chance: 100,
onHit(target, source, move) {
let success = false;
while (!success) {
const effect = this.random(100);
if (effect < 10) {
if (target.trySetStatus('psn', target)) {
success = true;
}
} else if (effect < 20) {
if (target.trySetStatus('par', target)) {
success = true;
}
} else if (effect < 30) {
if (target.trySetStatus('par', target)) {
success = true;
}
} else if (effect < 33) {
if (target.trySetStatus('slp', target)) {
success = true;
}
} else if (effect < 35) {
if (target.trySetStatus('frz', target)) {
success = true;
}
} else if (effect < 40) {
if (!target.volatiles['confusion']) {
target.addVolatile('confusion', source);
success = true;
}
} else if (effect < 45) {
if (!target.volatiles['attract']) {
target.addVolatile('attract', source);
success = true;
}
} else if (effect < 50) {
if (!target.volatiles['taunt']) {
target.addVolatile('taunt', source);
success = true;
}
} else if (effect < 55) {
if (target.lastMove && !target.volatiles['encore']) {
target.addVolatile('encore', source);
success = true;
}
} else if (effect < 60) {
if (!target.volatiles['torment']) {
target.addVolatile('torment', source);
success = true;
}
} else if (effect < 65) {
if (!target.volatiles['healblock']) {
target.addVolatile('healblock', source);
success = true;
}
} else if (effect < 70) {
if (target.side.addSideCondition('stealthrock')) {
success = true;
}
} else if (effect < 75) {
if (target.side.addSideCondition('stickyweb')) {
success = true;
}
} else if (effect < 80) {
if (target.side.addSideCondition('spikes')) {
success = true;
}
} else if (effect < 85) {
if (target.side.addSideCondition('toxicspikes')) {
success = true;
}
} else if (effect < 90) {
const sideConditions = ['spikes', 'toxicspikes', 'stealthrock', 'stickyweb', 'gmaxsteelsurge'];
for (const condition of sideConditions) {
if (source.side.removeSideCondition(condition)) {
success = true;
this.add('-sideend', source.side, this.dex.conditions.get(condition).name, '[from] move: , (ac)', `[of] ${source}`);
}
}
} else if (effect < 95) {
const bestStat = target.getBestStat(true, true);
this.boost({ [bestStat]: -1 }, target);
success = true;
} else {
if (this.canSwitch(source.side)) {
this.actions.useMove("teleport", source);
success = true;
}
}
}
},
},
target: "normal",
type: "Psychic",
},
// kenn
stonefaced: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Sets Stealth Rock. Target: -1 Defense/Speed.",
desc: "Lowers the target's Defense and Speed by 1 stage, and sets Stealth Rock on the target's side of the field, damaging Pokemon as they switch in. If Stealth Rock is already on the target's side of the field, the move will not set Stealth Rock but the other effects will still occur.",
name: "Stone Faced",
pp: 15,
priority: 0,
flags: { reflectable: 1, mustpressure: 1 },
sideCondition: 'stealthrock',
onPrepareHit(target, source) {
this.attrLastMove('[anim] Scary Face');
this.attrLastMove('[anim] Stone Axe');
},
boosts: {
def: -1,
spe: -1,
},
secondary: null,
target: "normal",
type: "Rock",
},
// Kennedy
hattrick: {
accuracy: 98,
basePower: 19,
category: "Physical",
shortDesc: "3 hits. Third hit crits. 3.5% chance to curse.",
desc: "Hits three times. The third hit is always a critical hit unless the target is under the effect of Lucky Chant or has the Battle Armor or Shell Armor Abilities. Each hit has a 3.5% chance to apply the Curse effect to the target, causing them to take damage equal to 25% of their maximum HP at the end of each turn until they switch out.",
name: "Hat-Trick",
gen: 9,
pp: 10,
priority: 0,
flags: { contact: 1, protect: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Focus Energy', source);
this.add('-anim', source, 'High Jump Kick', target);
this.add('-anim', target, 'Boomburst', source);
this.add('-anim', source, 'Aqua Step', target);
this.add('-anim', source, 'Aqua Step', target);
},
onTryHit(target, source, move) {
if (move.hit === 3) {
move.willCrit = true;
}
},
secondary: {
chance: 3.5,
volatileStatus: 'curse',
},
multihit: 3,
target: "normal",
type: "Ice",
},
anfieldatmosphere: {
accuracy: true,
basePower: 0,
category: "Status",
name: "Anfield Atmosphere",
shortDesc: "No weather/sleep,share statuses,halve hazard dmg.",
desc: "For 6 turns, sets a field effect. Negates all weather conditions. Prevents Pokemon from falling asleep. Any status conditions and volatile status conditions applied to one Pokemon will also apply to all Pokemon on the field. Halves entry hazard damage.",
pp: 5,
priority: 0,
flags: { mirror: 1 },
pseudoWeather: 'anfieldatmosphere',
condition: {
duration: 6,
durationCallback(source, effect) {
if (source?.hasAbility('persistent')) {
this.add('-activate', source, 'ability: Persistent', '[move] Anfield Atmosphere');
return 8;
}
return 6;
},
onUpdate(pokemon) {
if (pokemon.volatiles['confusion']) {
pokemon.removeVolatile('confusion');
}
},
onFieldStart(target, source) {
if (source?.hasAbility('persistent')) {
this.add('-fieldstart', 'move: Anfield Atmosphere', `[of] ${source}`, '[persistent]');
} else {
this.add('-fieldstart', 'move: Anfield Atmosphere', `[of] ${source}`);
}
for (const pokemon of this.getAllActive()) {
if (pokemon.volatiles['confusion']) {
pokemon.removeVolatile('confusion');
}
}
},
onFieldRestart(target, source) {
this.field.removePseudoWeather('anfieldatmosphere');
},
onAnySetWeather(target, source, weather) {
return false;
},
onSetStatus(status, target, source, effect) {
if (effect.id === 'anfieldatmosphere') return;
if (status.id === 'slp' && !target.isSemiInvulnerable()) {
this.add('-activate', target, 'move: Anfield Atmosphere');
return false;
}
for (const pokemon of this.getAllActive()) {
if (!pokemon.hp || pokemon.fainted) continue;
pokemon.trySetStatus(status, source, this.effect);
}
},
onTryAddVolatile(status, target) {
if (target.isSemiInvulnerable()) return;
if (status.id === 'yawn' || status.id === 'confusion') {
this.add('-activate', target, 'move: Anfield Atmosphere');
return null;
}
},
onDamage(damage, target, source, effect) {
if (effect && ['stealthrock', 'spikes', 'gmaxsteelsurge'].includes(effect.id)) {
return damage / 2;
}
},
onFieldResidualOrder: 27,
onFieldResidualSubOrder: 1,
onFieldEnd() {
this.add('-fieldend', 'move: Anfield Atmosphere');
},
},
secondary: null,
target: "all",
type: "Psychic",
},
// keys
protectoroftheskies: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Forces both Pokemon out. Can't be blocked.",
desc: "Both the target and the user are forced to switch out and be replaced with random unfainted allies. This effect cannot be blocked by any means other than having no valid allies that can be sent out.",
name: "Protector of the Skies",
pp: 10,
priority: -1,
flags: {},
onTryMove(source, target, move) {
this.attrLastMove('[still]');
},
onPrepareHit(target, source, move) {
for (const pokemon of this.getAllActive()) {
this.add('-anim', source, 'Whirlwind', pokemon);
}
},
onModifyPriority(priority, source, target, move) {
const foe = source.foes()[0];
if (foe && Object.values(foe.boosts).some(x => x !== 0)) {
return priority + 1;
}
},
onHitField(target, source, move) {
for (const pokemon of this.getAllActive()) {
if (pokemon.hp <= 0 || pokemon.fainted) continue;
pokemon.forceSwitchFlag = true;
}
},
secondary: null,
target: "all",
type: "Flying",
},
// kingbaruk
platinumrecord: {
accuracy: true,
basePower: 70,
category: "Special",
shortDesc: "Heals 50% HP, restores 1 PP for all other moves.",
desc: "Heals the user for 1/2 of their maximum HP, and restores 1 PP to all moves on the user's set other than Platinum Record.",
name: "Platinum Record",
pp: 5,
priority: 0,
flags: { sound: 1, heal: 1, protect: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Sing', target);
this.add('-anim', source, 'Iron Defense', target);
},
onHit(target, source, move) {
this.heal(source.maxhp / 2, source, source, move);
for (const moveSlot of source.moveSlots) {
if (moveSlot.id === move.id) continue;
if (moveSlot.pp < moveSlot.maxpp) moveSlot.pp += 1;
}
},
target: "normal",
type: "Fairy",
},
// Kiwi
madmanifest: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "User: +1 Spe, Foe:Free Curse, 50% brn/par/psn.",
desc: "Applies the Curse effect to the target, causing them to take damage equal to 25% of their maximum HP at the end of each turn until they switch out. Has a 50% chance to cause the target to either become burned, become poisoned, or become paralyzed. Raises the user's Speed by 1 stage.",
name: "Mad Manifest",
pp: 10,
priority: 0,
flags: {},
volatileStatus: 'curse',
onHit(target, source) {
const result = this.random(3);
if (result === 0) {
target.trySetStatus('psn', target);
} else if (result === 1) {
target.trySetStatus('par', target);
} else {
target.trySetStatus('brn', target);
}
this.boost({ spe: 1 }, source);
},
onPrepareHit(target, source) {
this.attrLastMove('[anim] Dark Void');
},
target: "normal",
type: "Fairy",
},
// Klmondo
thebetterwatershuriken: {
accuracy: 100,
basePower: 20,
category: "Physical",
shortDesc: "+1 Priority. Hits 2-5 times.",
desc: "Usually moves first. Hits two to five times. Has a 35% chance to hit two or three times and a 15% chance to hit four or five times. If one of the hits breaks the target's substitute, it will take damage for the remaining hits. If the user has the Skill Link Ability, this move will always hit five times.",
name: "The Better Water Shuriken",
pp: 30,
priority: 1,
flags: { protect: 1, mirror: 1, metronome: 1 },
multihit: [2, 5],
secondary: null,
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Water Shuriken', target);
this.add('-anim', source, 'Electro Shot', target);
},
target: "normal",
type: "Water",
},
// kolohe
hangten: {
accuracy: 100,
basePower: 75,
category: "Special",
name: "Hang Ten",
shortDesc: "User sets Electric Terrain on hit.",
desc: "If this move is successful, the terrain becomes Electric Terrain.",
pp: 10,
priority: 0,
flags: { protect: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Stoked Sparksurfer', target);
this.add('-anim', source, 'Surf', target);
},
secondary: {
chance: 100,
self: {
onHit() {
this.field.setTerrain('electricterrain');
},
},
},
target: "normal",
type: "Water",
},
// Kry
attackofopportunity: {
accuracy: 100,
basePower: 60,
basePowerCallback(pokemon, target, move) {
if (target.beingCalledBack || target.switchFlag) {
this.debug('Attack of Opportunity damage boost');
return move.basePower * 1.5;
}
return move.basePower;
},
category: "Physical",
shortDesc: "Pursuit, +2 Attack when KOing on switch.",
desc: "If an opposing Pokemon switches out this turn, this move hits that Pokemon before it leaves the field. Power is multiplied by 1.5x and no accuracy check is done if the user hits an opponent switching out, and the user's turn is over; if an opponent faints from this, the user's Attack is boosted by 2 stages and the replacement Pokemon does not become active until the end of the turn. If the user moves after an opponent using Flip Turn, Parting Shot, Teleport, U-turn, or Volt Switch, but not Baton Pass, it will hit that opponent before it leaves the field.",
name: "Attack of Opportunity",
pp: 20,
priority: 0,
flags: { contact: 1, protect: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Pursuit', target);
this.add('-anim', source, 'Behemoth Blade', target);
},
beforeTurnCallback(pokemon) {
for (const side of this.sides) {
if (side.hasAlly(pokemon)) continue;
side.addSideCondition('attackofopportunity', pokemon);
const data = side.getSideConditionData('attackofopportunity');
if (!data.sources) {
data.sources = [];
}
data.sources.push(pokemon);
}
},
onModifyMove(move, source, target) {
if (target?.beingCalledBack || target?.switchFlag) {
move.accuracy = true;
move.onAfterMoveSecondarySelf = function (s, t, m) {
if (!t || t.fainted || t.hp <= 0) {
this.boost({ atk: 1 }, s, s, m);
}
};
}
},
onTryHit(target, pokemon) {
target.side.removeSideCondition('attackofopportunity');
},
condition: {
duration: 1,
onBeforeSwitchOut(pokemon) {
this.debug('Attack of Opportunity start');
let alreadyAdded = false;
pokemon.removeVolatile('destinybond');
for (const source of this.effectState.sources) {
if (!source.isAdjacent(pokemon) || !this.queue.cancelMove(source) || !source.hp) continue;
if (!alreadyAdded) {
this.add('-activate', pokemon, 'move: Pursuit');
alreadyAdded = true;
}
if (source.canMegaEvo) {
for (const [actionIndex, action] of this.queue.entries()) {
if (action.pokemon === source && action.choice === 'megaEvo') {
this.actions.runMegaEvo(source);
this.queue.list.splice(actionIndex, 1);
break;
}
}
}
this.actions.runMove('attackofopportunity', source, source.getLocOf(pokemon));
}
},
},
secondary: null,
target: "normal",
type: "Steel",
contestType: "Clever",
},
// Lasen
riseabove: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Magnet Rise + Aqua Ring.",
desc: "For 5 turns, the user is immune to Ground-type attacks and effects as long as it remains active, and the user will recover 1/16th of their maximum HP at the end of each turn as long as it remains active. If the user uses Baton Pass, the replacement will gain the effects.",
name: "Rise Above",
gen: 9,
pp: 5,
priority: 0,
flags: {},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(pokemon) {
this.add('-anim', pokemon, 'Magnet Rise', pokemon);
this.add('-anim', pokemon, 'Quiver Dance', pokemon);
},
volatileStatus: 'riseabove',
onTry(source, target, move) {
if (target.volatiles['smackdown'] || target.volatiles['ingrain']) return false;
// Additional Gravity check for Z-move variant
if (this.field.getPseudoWeather('Gravity')) {
this.add('cant', source, 'move: Gravity', move);
return null;
}
},
condition: {
duration: 5,
onStart(target) {
this.add('-start', target, 'Rise Above');
},
onImmunity(type) {
if (type === 'Ground') return false;
},
onResidualOrder: 6,
onResidual(pokemon) {
this.heal(pokemon.baseMaxhp / 16);
},
onEnd(target) {
this.add('-end', target, 'Rise Above');
},
},
secondary: null,
target: "self",
type: "Electric",
},
// Lets go shuckles
shucklepower: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Trick Room + Power Trick.",
desc: "Until the user switches out, it swaps its Attack and Defense stats, and stat stage changes remain on their respective stats. Sets Trick Room for 5 turns, making the slower Pokemon move first.",
name: "Shuckle Power",
pp: 5,
priority: -6,
flags: {},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Power Trick', source);
},
pseudoWeather: 'trickroom',
volatileStatus: 'powertrick',
secondary: null,
target: "self",
type: "Psychic",
},
// Lily
powerup: {
accuracy: true,
basePower: 0,
category: "Status",
name: "Power Up",
shortDesc: "Heals 50% HP. Heals 3% more per fainted ally.",
desc: "Heals the user for 50% of their maximum HP. Heals an additional 3% of the user's maximum HP for each team member on the user's side that has fainted.",
pp: 5,
priority: 0,
flags: { heal: 1 },
onModifyMove(move, source, target) {
const fntAllies = source.side.pokemon.filter(ally => ally !== source && ally.fainted);
if (move.heal) move.heal[0] = 50 + (3 * fntAllies.length);
},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(pokemon) {
this.add('-anim', pokemon, 'Shore Up', pokemon);
this.add('-anim', pokemon, 'Charge', pokemon);
this.add('-anim', pokemon, 'Moonlight', pokemon);
},
heal: [50, 100],
secondary: null,
target: "self",
type: "Electric",
},
// Loethalion
darkmooncackle: {
accuracy: 100,
basePower: 30,
basePowerCallback(pokemon, target, move) {
const bp = move.basePower + 20 * pokemon.positiveBoosts();
this.debug(`BP: ${bp}`);
return bp;
},
category: "Special",
desc: "Power is equal to 30+(X*20), where X is the user's total stat stage changes that are greater than 0. Has a 100% chance to raise the user's Special Attack by 1 stage.",
shortDesc: "+20 bp per stat boost. 100% chance +1 SpA.",
name: "Darkmoon Cackle",
pp: 15,
priority: 0,
flags: { protect: 1, mirror: 1, sound: 1, bypasssub: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Bulk Up', source);
this.add('-anim', source, 'Cosmic Power', source);
this.add('-anim', source, 'Moonblast', target);
},
secondary: {
chance: 100,
self: {
boosts: {
spa: 1,
},
},
},
target: "normal",
type: "Normal",
},
// Lumari
mysticalbonfire: {
accuracy: 100,
basePower: 100,
basePowerCallback(pokemon, target, move) {
if (target.status || target.hasAbility(['comatose', 'mensiscage'])) {
this.debug('BP doubled from status condition');
return move.basePower * 1.5;
}
return move.basePower;
},
category: "Physical",
shortDesc: "50% burn. 1.5x power if target is already statused.",
desc: "This move has a 50% chance to give the target a burn. This move's power is 1.5x stronger if the target has a non-volatile status condition.",
name: "Mystical Bonfire",
pp: 15,
priority: 0,
flags: { protect: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Infernal Parade', target);
this.add('-anim', source, 'Fury Attack', target);
},
secondary: {
chance: 50,
status: 'brn',
},
target: "normal",
type: "Psychic",
},
// Lunell
praisethemoon: {
accuracy: 90,
basePower: 120,
category: "Special",
shortDesc: "First turn: +1 SpA. No charge in Gravity.",
desc: "This attack charges on the first turn and executes on the second. Raises the user's Special Attack by 1 stage on the first turn. If the user is holding a Power Herb or Gravity is active, the move completes in one turn.",
name: "Praise the Moon",
pp: 10,
priority: 0,
flags: { charge: 1, protect: 1, mirror: 1 },
onTryMove(attacker, defender, move) {
this.attrLastMove('[still]');
if (attacker.removeVolatile(move.id)) {
return;
}
this.boost({ spa: 1 }, attacker, attacker, move);
if (this.field.pseudoWeather['gravity']) {
this.attrLastMove('[still]');
this.addMove('-anim', attacker, move.name, defender);
return;
}
if (!this.runEvent('ChargeMove', attacker, defender, move)) {
return;
}
attacker.addVolatile('twoturnmove', defender);
return null;
},
secondary: null,
hasSheerForce: true,
onPrepareHit(target, source) {
this.attrLastMove('[still]');
this.add('-anim', source, 'Lunar Dance', target);
this.add('-anim', source, 'Moongeist Beam', target);
},
target: "normal",
type: "Fairy",
},
// Lyna
wrathoffrozenflames: {
accuracy: 100,
basePower: 100,
category: "Physical",
shortDesc: "80% gain Ice type, 20% gain Fire type.",
desc: "After using the move, there is an 80% chance the user gains an additional Ice typing, and a 20% chance the user gains an additional Fire typing.",
name: "Wrath of Frozen Flames",
gen: 9,
pp: 10,
priority: 0,
flags: { protect: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Clangorous Soulblaze', target);
},
onHit(target, source, move) {
if (source.terastallized) return;
if (this.randomChance(8, 10)) {
source.addType('Ice');
this.add('-start', source, 'typeadd', 'Ice', '[from] move: Wrath of Frozen Flames');
} else {
source.addType('Fire');
this.add('-start', source, 'typeadd', 'Fire', '[from] move: Wrath of Frozen Flames');
}
},
secondary: null,
target: "normal",
type: "Dragon",
},
// Maia
bodycount: {
accuracy: 100,
basePower: 50,
basePowerCallback(pokemon, target, move) {
return 50 + 50 * pokemon.side.totalFainted;
},
category: "Special",
shortDesc: "+50 power for each time a party member fainted.",
desc: "Power is equal to 50+(X*50), where X is the total number of times any Pokemon has fainted on the user's side, and X cannot be greater than 100.",
name: "Body Count",
pp: 10,
priority: 0,
flags: { protect: 1, mirror: 1 },
onPrepareHit() {
this.attrLastMove('[anim] Core Enforcer');
},
secondary: null,
target: "normal",
type: "Ghost",
},
// marillvibes
goodvibesonly: {
accuracy: 100,
basePower: 90,
category: "Physical",
shortDesc: "Raises the user's Speed by 1 stage.",
desc: "Has a 100% chance to raise the user's Speed by 1 stage.",
name: "Good Vibes Only",
gen: 9,
pp: 10,
priority: 0,
flags: { protect: 1, mirror: 1, contact: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Aqua Step', target);
},
secondary: {
chance: 100,
self: {
boosts: {
spe: 1,
},
},
},
target: "normal",
type: "Fairy",
},
// Mathy
breakingchange: {
accuracy: 100,
basePower: 70,
category: "Physical",
shortDesc: "Ignores target's Ability; disables it on hit.",
desc: "This move and its effects ignore the Abilities of other Pokemon. When this move hits the target, the target's Ability is suppressed until it switches out. Innate Abilities are unaffected.",
name: "Breaking Change",
gen: 9,
pp: 10,
priority: 0,
flags: { protect: 1, mirror: 1 },
onPrepareHit() {
this.attrLastMove('[anim] Salt Cure');
},
onHit(target, source) {
if (target.getAbility().flags['cantsuppress']) return;
if (!target.addVolatile('gastroacid')) return;
this.add(`c:|${getName((source.illusion || source).name)}|Sorry i tried to fix smth but accidentally broke your ability :( will fix it next week`);
},
ignoreAbility: true,
secondary: null,
target: "normal",
type: "Normal",
},
// Merritty
newbracket: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Forces both Pokemon out. Can't be blocked.",
desc: "Both the target and the user are forced to switch out and be replaced with random unfainted allies. This effect cannot be blocked by any means other than having no valid allies that can be sent out.",
name: "New Bracket",
pp: 10,
priority: 0,
flags: {},
onTryMove(source, target, move) {
this.attrLastMove('[still]');
if (source.side.pokemonLeft === 1) {
this.add('-fail', source);
return false;
}
if (!source.hasAbility('endround')) {
this.add('-fail', source);
this.hint(`The user's ability needs to be End Round for New Bracket to work.`);
return false;
}
this.attrLastMove(`[anim] Trick Room`);
},
onHitField(target, source, move) {
for (const pokemon of this.getAllActive()) {
if (pokemon.hp <= 0 || pokemon.fainted || pokemon.isSemiInvulnerable()) {
continue;
}
pokemon.forceSwitchFlag = true;
}
},
secondary: null,
target: "all",
type: "Electric",
},
// Meteordash
plagiarism: {
accuracy: 100,
basePower: 0,
category: "Status",
name: "Plagiarism",
shortDesc: "Steal+use foe sig move+imprison. Fail: +1 stats.",
desc: "User copies opponent's signature move and adds it to its own movepool, replacing this move. The user then uses the copied move immediately and gains the Imprison condition, preventing foes from using moves in the user's moveset. The PP of the copied move will be adjusted to match the PP the copied signature move is supposed to have. If the copied custom move would fail if used in this manner, Plagiarism fails and the user boosts all stats by 1 stage, except Accuracy and Evasion.",
pp: 5,
priority: 1,
flags: { failencore: 1, nosleeptalk: 1, noassist: 1, failcopycat: 1, failinstruct: 1, failmimic: 1, nosketch: 1 },
onTry(source) {
if (source.m.usedPlagiarism) {
this.hint("Plagiarism only works once per switch-in.");
return false;
}
},
onPrepareHit() {
this.attrLastMove('[anim] Mimic');
this.attrLastMove('[anim] Imprison');
},
onHit(target, source, m) {
let sigMoveName = ssbSets[(target.illusion || target).name]?.signatureMove;
if (!sigMoveName) sigMoveName = target.moveSlots[target.moveSlots.length - 1].id;
const move = this.dex.getActiveMove(sigMoveName);
if (!target || this.queue.willSwitch(target) || target.beingCalledBack ||
move.flags['failcopycat'] || move.flags['nosketch']) {
this.boost({ spa: 1, spd: 1, spe: 1 }, source, source, m);
return;
}
const plagiarismIndex = source.moves.indexOf('plagiarism');
if (plagiarismIndex < 0) return false;
this.add(`c:|${getName((source.illusion || source).name)}|yoink`);
const plagiarisedMove = {
move: move.name,
id: move.id,
pp: move.pp,
maxpp: move.pp,
target: move.target,
disabled: false,
used: false,
};
source.moveSlots[plagiarismIndex] = plagiarisedMove;
this.add('-activate', source, 'move: Plagiarism', move.name);
this.add('-message', `${source.name} plagiarised ${target.name}'s ${move.name}!`);
this.actions.useMove(move.id, source, { target });
delete target.volatiles['imprison'];
source.addVolatile('imprison', source);
source.m.usedPlagiarism = true;
},
secondary: null,
target: "normal",
type: "Dark",
},
// Mex
timeskip: {
accuracy: true,
basePower: 0,
category: "Status",
name: "Time Skip",
shortDesc: "Clears hazards. +10 turns. +1 Spe.",
desc: "Removes all entry hazards from the user's side of the field, increases the turn counter by 10, and boosts the user's Speed by 1 stage.",
pp: 10,
priority: 0,
flags: {},
onPrepareHit() {
this.attrLastMove('[anim] Trick Room');
},
self: {
onHit(pokemon) {
const sideConditions = ['spikes', 'toxicspikes', 'stealthrock', 'stickyweb', 'gmaxsteelsurge'];
for (const condition of sideConditions) {
if (pokemon.side.removeSideCondition(condition)) {
this.add('-sideend', pokemon.side, this.dex.conditions.get(condition).name, '[from] move: Time Skip', `[of] ${pokemon}`);
}
}
// 9 turn addition so the +1 from endTurn totals to 10 turns
this.turn += 9;
},
boosts: {
spe: 1,
},
},
secondary: null,
target: "all",
type: "Dragon",
},
// Miojo
vruuuuuum: {
accuracy: 100,
basePower: 90,
category: "Physical",
shortDesc: "Super effective on Water.",
desc: "This move's type effectiveness against Water is changed to be super effective no matter what this move's type is.",
name: "vruuuuuum",
pp: 20,
priority: 0,
flags: { contact: 1, protect: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Shift Gear', source);
this.add('-anim', source, 'Ice Spinner', target);
},
onEffectiveness(typeMod, target, type) {
if (type === 'Water') return 1;
},
secondary: null,
target: "normal",
type: "Ice",
},
// Monkey
bananabreakfast: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "2 random stats +1; Lock-On/Laser Focus/Charge.",
desc: "Boosts 2 random stats of the user by 1 stage each, except Accuracy and Evasion. These stats can be the same. Applies one of Lock-On, Laser Focus, or Charge to the user at random.",
name: "Banana Breakfast",
gen: 9,
pp: 10,
priority: 2,
flags: { mirror: 1, heal: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Fire Fang', target);
this.add('-anim', source, 'Belly Drum', target);
},
onHit(target, source) {
const stats: BoostID[] = [];
const boost: SparseBoostsTable = {};
let statPlus: BoostID;
for (statPlus in source.boosts) {
if (statPlus === 'accuracy' || statPlus === 'evasion') continue;
if (source.boosts[statPlus] < 6) {
stats.push(statPlus);
}
}
const randomStat: BoostID | undefined = stats.length ? this.sample(stats) : undefined;
const randomStat2: BoostID | undefined = stats.length ? this.sample(stats) : undefined;
if (randomStat) boost[randomStat] = 1;
if (randomStat2 && randomStat === randomStat2) boost[randomStat] = 2;
else if (randomStat2) boost[randomStat2] = 1;
this.boost(boost, source);
const result = this.random(3);
if (result === 0) {
this.actions.useMove("laserfocus", target);
} else if (result === 1) {
this.actions.useMove("lockon", target);
} else {
this.actions.useMove("charge", target);
} // This is easier than implementing each condition manually
this.heal(target.maxhp / 4, target, target, this.effect);
},
secondary: null,
target: "self",
type: "Grass",
},
// MyPearl
eonassault: {
accuracy: 100,
basePower: 45,
category: "Special",
shortDesc: "Hits twice. 20% -1 Sp. Atk, 20% -1 Sp. Def.",
desc: "Hits 2 times. Each hit has a 20% chance to lower Special Attack by 1 stage, and a 20% chance to lower Special Defense by 1 stage.",
name: "Eon Assault",
gen: 9,
pp: 15,
priority: 0,
flags: { protect: 1 },
multihit: 2,
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Mist Ball', target);
this.add('-anim', source, 'Luster Purge', target);
},
secondaries: [
{
chance: 20,
boosts: {
spa: -1,
},
}, {
chance: 20,
boosts: {
spd: -1,
},
},
],
target: "normal",
type: "Psychic",
},
// Neko
qualitycontrolzoomies: {
accuracy: 100,
basePower: 50,
basePowerCallback(pokemon, target, move) {
if (pokemon.side.pokemonLeft === 1) return move.basePower + 30;
return move.basePower;
},
category: "Physical",
shortDesc: "Pivot; switchin: Booster Energy. If last: 80BP.",
desc: "If this move is successful and the user has not fainted, the user switches out even if it is trapped and is replaced immediately by a selected party member. The replacement party member gains a Cat Stamp of Approval with the effect of Booster Energy, boosting its highest stat by 1.3x, or 1.5x in the case of Speed. The user does not switch out if there are no unfainted party members, or if the target switched out using an Eject Button or through the effect of the Emergency Exit or Wimp Out Abilities. If there are no unfainted party members, the move's Base Power is increased to 80 and the user gains the Cat Stamp of Approval boost instead.",
name: "Quality Control Zoomies",
gen: 9,
pp: 15,
priority: 0,
flags: { contact: 1, protect: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Ice Spinner', target);
this.add('-anim', source, 'Chilly Reception', source);
},
self: {
slotCondition: 'qualitycontrolzoomies',
},
condition: {
onSwitchIn(target) {
if (!target.fainted) {
target.addVolatile('catstampofapproval');
target.side.removeSlotCondition(target, 'qualitycontrolzoomies');
}
},
},
onHit(target, source, move) {
let message = 'Meow has no other options, so ;w;';
if (source.side.pokemonLeft > 1) {
message = 'Meow is not the right Pokemon to be an example here, swap meow out please.';
}
this.add(`c:|${getName('Neko')}|${message}`);
},
onModifyMove(move, pokemon, target) {
if (pokemon.side.pokemonLeft === 1) {
move.self = {
onHit(t, source, m) {
source.addVolatile('catstampofapproval');
},
};
delete move.condition;
}
},
selfSwitch: true,
secondary: null,
target: "normal",
type: "Ice",
},
// Ney
shadowdance: {
accuracy: 90,
basePower: 110,
category: "Physical",
shortDesc: "Raises the user's Attack by 1 stage.",
desc: "100% chance to raise the user's Attack by 1 stage.",
name: "Shadow Dance",
gen: 9,
pp: 10,
priority: 0,
flags: { contact: 1, protect: 1, mirror: 1, dance: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Poltergeist', target);
this.add('-anim', source, 'Dragon Dance', source);
},
secondary: {
chance: 100,
self: {
boosts: {
atk: 1,
},
},
},
target: "normal",
type: "Ghost",
},
// Notater517
nyaa: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Haze and then +1 Atk / Def.",
desc: "Resets the stat stages of all active Pokemon to 0, and then raises the user's Attack and Defense by 1 stage.",
name: "~nyaa",
gen: 9,
pp: 10,
priority: 0,
flags: { bypasssub: 1 },
onPrepareHit(target, source) {
this.attrLastMove('[anim] Haze');
this.attrLastMove('[anim] Sweet Kiss');
this.attrLastMove('[anim] Baton Pass');
},
onHitField(target, source, move) {
this.add('-clearallboost');
for (const pokemon of this.getAllActive()) {
pokemon.clearBoosts();
}
this.boost({ atk: 1, def: 1 }, source, source, move);
},
slotCondition: 'nyaa',
condition: {
onSwitchIn(target) {
const source = this.effectState.source;
if (!target.fainted) {
this.add(`c:|${getName((source.illusion || source).name)}|~nyaa ${target.name}`);
this.add(`c:|${getName('Jeopard-E')}|**It is now ${target.name}'s turn to ask a question.**`);
target.side.removeSlotCondition(target, 'nyaa');
}
},
},
secondary: null,
target: "all",
type: "Steel",
},
// nya
'3': {
accuracy: 100,
basePower: 70,
category: "Special",
shortDesc: "Moves first. 40% infatuates. 10% backfire chance.",
desc: "Usually moves first. This move has a 40% chance to infatuate the target, regardless of gender, but this move has a 10% chance to be used by the target at the user instead.",
name: ":3",
gen: 9,
pp: 5,
priority: 1,
flags: { protect: 1 },
onTry(pokemon, target, move) {
if (move.sourceEffect !== '3' && this.randomChance(1, 10)) {
this.add('-message', "The move backfired!");
const activeMove = this.dex.getActiveMove(':3');
activeMove.hasBounced = true;
this.actions.useMove(activeMove, target, { target: pokemon });
return null;
}
},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Attract', target);
},
secondary: {
volatileStatus: 'attract',
chance: 40,
},
target: "normal",
type: "Fairy",
},
// pants
eerieapathy: {
accuracy: 100,
basePower: 0,
category: "Status",
name: "Eerie Apathy",
shortDesc: "Wish + Taunts the foe.",
pp: 15,
priority: 0,
flags: { snatch: 1, heal: 1, protect: 1, reflectable: 1, mirror: 1, bypasssub: 1 },
self: {
slotCondition: 'Wish',
},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Memento', target);
},
onHit(target, source, move) {
if (!target.volatiles['taunt']) {
target.addVolatile('taunt', source, move);
}
},
secondary: null,
target: "normal",
type: "Ghost",
},
// PartMan
alting: {
accuracy: true,
basePower: 0,
category: "Status",
name: "Alting",
shortDesc: "Switch+Protect, Shiny: 69BP ???-type atk instead.",
desc: "If the user is not shiny, it switches out even if it is trapped and is replaced immediately by a selected party member, and if the user moved first this turn, the selected party member will be protected from most attacks made by other Pokemon this turn. If the user is shiny, this move instead becomes a 69 Base Power ???-type special attack.",
pp: 5,
priority: 0,
flags: { snatch: 1 },
stallingMove: true,
sideCondition: 'alting',
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Memento', target);
this.add(`l|${getName((source.illusion || source).name).split('|')[1]}`);
this.add(`j|FakePart`);
},
onModifyMove(move, source, target) {
move.type = "???";
if (source.set?.shiny) {
move.accuracy = 100;
move.basePower = 69;
move.category = "Special";
move.flags = { protect: 1, bypasssub: 1 };
move.target = "normal";
delete move.selfSwitch;
delete move.stallingMove;
delete move.sideCondition;
delete move.condition;
// Note: Taunt will disable all forms of Alting, including the damaging one.
// This is intentional.
}
},
condition: {
duration: 1,
onSideStart(target, source) {
this.add('-singleturn', source, 'Alting');
},
onTryHitPriority: 3,
onTryHit(target, source, move) {
if (!move.flags['protect']) {
if (['gmaxoneblow', 'gmaxrapidflow'].includes(move.id)) return;
if (move.isZ || move.isMax) target.getMoveHitData(move).zBrokeProtect = true;
return;
}
if (move && (move.target === 'self' || move.category === 'Status')) return;
this.add('-activate', target, 'move: Alting', move.name);
const lockedmove = source.getVolatile('lockedmove');
if (lockedmove) {
// Outrage counter is reset
if (source.volatiles['lockedmove'].duration === 2) {
delete source.volatiles['lockedmove'];
}
}
return this.NOT_FAIL;
},
},
selfSwitch: true,
target: "allySide",
type: "Ghost", // Updated to ??? in onModifyMove
},
// Pastor Gigas
calltorepentance: {
accuracy: 100,
basePower: 80,
category: "Physical",
shortDesc: "Applies Heal Block and Taunt.",
desc: "If this move deals damage, the target is prevented from using any status moves for 3 turns or restoring any HP for 5 turns, with both effects ending if the target switches out. During the effect, status moves and draining moves are unusable, and Abilities and items that grant healing will not heal the user. If an affected Pokemon uses Baton Pass, the replacement will remain unable to restore its HP or use status moves. The Regenerator Ability is unaffected, and Pokemon with Oblivious are immune to the Taunt effect.",
name: "Call to Repentance",
gen: 9,
pp: 10,
priority: 0,
flags: { protect: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Hyper Voice', target);
this.add('-anim', source, 'Judgment', target);
},
secondaries: [
{
chance: 100,
volatileStatus: 'healblock',
}, {
chance: 100,
volatileStatus: 'taunt',
},
],
target: "normal",
type: "Normal",
},
// Peary
"1000gears": {
accuracy: true,
basePower: 0,
category: "Status",
name: "1000 Gears",
shortDesc: "Heals 100% HP,cures status,+1 Def/SpD,+5 levels.",
desc: "Z-Move requiring Pearyum Z. Heals the user for 100% of its maximum HP, cures its non-volatile status effects, boosts its Defense and Special Defense by 1 stage, and raises its level by 5.",
pp: 1,
priority: 0,
flags: {},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(pokemon) {
this.add('-anim', pokemon, 'Shift Gear', pokemon);
this.add('-anim', pokemon, 'Belly Drum', pokemon);
},
onHit(target, pokemon, move) {
this.heal(pokemon.maxhp, pokemon, pokemon, move);
pokemon.cureStatus();
this.boost({ def: 1, spd: 1 });
(pokemon as any).level += 5;
pokemon.details = pokemon.getUpdatedDetails();
this.add('-anim', pokemon, 'Geomancy', pokemon);
this.add('replace', pokemon, pokemon.details);
this.add('-message', `${pokemon.name} gained 5 levels!`);
},
isZ: "pearyumz",
secondary: null,
target: "self",
type: "Steel",
},
// phoopes
gen1blizzard: {
accuracy: 90,
basePower: 120,
category: "Special",
name: "Gen 1 Blizzard",
desc: "Has a 10% chance to freeze the target.",
shortDesc: "10% chance to freeze the target.",
pp: 5,
priority: 0,
flags: { protect: 1, mirror: 1 },
onPrepareHit() {
this.attrLastMove('[anim] Blizzard');
},
secondary: {
chance: 10,
status: 'frz',
},
target: "normal",
type: "Ice",
},
// Pissog
asongoficeandfire: {
accuracy: 100,
basePower: 100,
category: "Special",
name: "A Song of Ice and Fire",
shortDesc: "Type depends on form. Switches form.",
desc: "If the user is Volcarona, this move is Ice-type and, after dealing damage, transforms the user into a Snow Warning Frosmoth with Blizzard, Chilly Reception, and Aurora Veil. If the user is Frosmoth, this move is Fire-type and, after dealing damage, transforms the user into a Drought Volcarona with Torch Song, Morning Sun, and Solar Beam. This move fails if the user is neither Frosmoth nor Volcarona.",
pp: 10,
priority: 0,
flags: { protect: 1, mirror: 1, failcopycat: 1, nosketch: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source, move) {
if (source.species.name === 'Volcarona') {
this.add('-anim', source, 'Blizzard', target);
} else {
this.add('-anim', source, 'Fiery Dance', target);
}
},
onModifyType(move, pokemon) {
if (pokemon.species.name === 'Volcarona') {
move.type = "Ice";
} else {
move.type = "Fire";
}
},
onHit(target, source, move) {
if (source.species.name === 'Volcarona') {
changeSet(this, source, ssbSets['Pissog-Frosmoth'], true);
} else if (source.species.name === 'Frosmoth') {
changeSet(this, source, ssbSets['Pissog'], true);
}
},
target: "normal",
type: "Fire",
},
// pokemonvortex
roulette: {
accuracy: true,
basePower: 0,
category: "Status",
name: "Roulette",
shortDesc: "Use a random move, and get a random moveset.",
desc: "A random move is selected for use, and then the user's other three moves are replaced with random moves. Aura Wheel, Dark Void, Explosion, Final Gambit, Healing Wish, Hyperspace Fury, Lunar Dance, Memento, Misty Explosion, Revival Blessing, and Self-Destruct cannot be selected.",
pp: 5,
priority: 0,
flags: { protect: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Nasty Plot', source);
this.add('-anim', source, 'Metronome', target);
this.add('-anim', source, 'Explosion', target);
},
onHit(target, source) {
const bannedList = [
'aurawheel', 'darkvoid', 'explosion', 'finalgambit', 'healingwish', 'hyperspacefury',
'lunardance', 'memento', 'mistyexplosion', 'revivalblessing', 'selfdestruct',
];
const moves = this.dex.moves.all().filter(move => (
!source.moves.includes(move.id) &&
(!move.isNonstandard || move.isNonstandard === 'Unobtainable')
));
this.actions.useMove(this.sample(moves.filter(x => !bannedList.includes(x.id))), target);
for (const i of target.moveSlots.keys()) {
if (i > 2) break;
const randomMove = this.sample(moves.filter(x => !bannedList.includes(x.id)));
bannedList.push(randomMove.id);
const replacement = {
move: randomMove.name,
id: randomMove.id,
pp: randomMove.pp,
maxpp: randomMove.pp,
target: randomMove.target,
disabled: false,
used: false,
};
target.moveSlots[i] = target.baseMoveSlots[i] = replacement;
}
},
target: "self",
type: "Normal",
},
// Princess Autumn
cottoncandycrush: {
accuracy: 100,
basePower: 80,
category: "Physical",
shortDesc: "Uses Sp. Def over Attack in damage calculation.",
desc: "Damage is calculated using the user's Special Defense stat as its Attack, including stat stage changes. Other effects that modify the Attack stat are used as normal.",
name: "Cotton Candy Crush",
overrideOffensiveStat: "spd",
gen: 9,
pp: 15,
priority: 0,
flags: { contact: 1, protect: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Fusion Bolt', target);
this.add('-anim', source, 'Fleur Cannon', target);
},
target: "normal",
type: "Fairy",
},
// ptoad
pleek: {
accuracy: true,
basePower: 0,
category: "Status",
name: "Pleek...",
shortDesc: "+4 Attack + inflict Perish Song on the user.",
desc: "Raises the user's Attack by 4 stages. Inflicts the Perish Song effect on the user, causing it to faint in three turns at the end of the turn.",
pp: 10,
priority: 0,
flags: { sound: 1, bypasssub: 1 },
onTry(source) {
if (source.m.usedPleek) {
this.hint("Pleek... only works once per switch-in.");
return false;
}
},
onPrepareHit() {
this.attrLastMove('[anim] Hyper Voice');
this.attrLastMove('[anim] Splash');
},
onHit(target, source, move) {
this.add(`c:|${getName((source.illusion || source).name)}|Pleek...`);
this.boost({ atk: 4 }, source, source, move);
source.addVolatile('perishsong');
this.add('-start', source, 'perish3', '[silent]');
source.m.usedPleek = true;
},
target: "self",
type: "Fairy",
},
// Pulse_kS
luckpulse: {
accuracy: 100,
basePower: 90,
category: "Special",
name: "Luck Pulse",
shortDesc: "Random type. 40% random effect. High crit.",
desc: "This move's typing is chosen randomly between the 18 standard types, and each type has a 40% chance to apply a status effect to the target specific to that type. This move has an increased chance to result in a critical hit. The list of effects per type are as follows: Normal can apply drowsy; Fire can apply burn; Water can apply Aqua Ring; Grass can apply Leech Seed; Flying can apply confusion; Fighting can apply partial trapping; Poison can apply Toxic poison; Electric can apply paralysis; Ground can apply No Retreat, trapping the target without granting boosts; Rock can apply Salt Cure; Psychic can apply sleep; Ice can apply freeze; Bug can apply poison; Ghost can apply Disable; Steel can cause the target to flinch; Dragon can cause the target to recharge on their next turn, as if they had just used Hyper Beam; Dark can apply Taunt; and Fairy can apply infatuation.",
critRatio: 2,
pp: 10,
priority: 0,
flags: { pulse: 1, protect: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source, move) {
this.add('-anim', source, 'Tera Blast ' + move.type, target);
},
onModifyType(move, pokemon, target) {
const type = this.sample(this.dex.types.names().filter(i => i !== 'Stellar'));
move.type = type;
},
onTryHit(target, source, move) {
const messages = [
'Kai Shinden',
'Kaio Sama',
'Kaiba, Seto',
'Kairyu-Shin',
'Kaito Shizuki',
'Kanga Skhan',
'KanSas',
'Karakuri Shogun',
'Kate Stewart',
'Kendo Spirit',
'Keratan sulfate',
'Kernel streaming',
'Key Stage',
'Kids Suck',
'KillSteal',
'Kilometers / Second',
'Kilosecond',
'King of the Swamp',
'King\'s Shield',
'Kirk/Spock',
'Klingon Security',
'Kuroudo (Cloud) Strife',
'Kyouko Sakura',
'KyrgyzStan',
'Kpop Star',
'Kartana Swords dance',
];
this.add(`c:|${getName((source.illusion || source).name)}|The kS stands for ${this.sample(messages)}`);
},
secondary: {
chance: 40,
onHit(target, source, move) {
const table: { [k: string]: { volatileStatus?: string, status?: string } } = {
Normal: { volatileStatus: 'yawn' },
Fire: { status: 'brn' },
Water: { volatileStatus: 'aquaring' },
Grass: { volatileStatus: 'leechseed' },
Flying: { volatileStatus: 'confusion' },
Fighting: { volatileStatus: 'partiallytrapped' },
Poison: { status: 'tox' },
Electric: { status: 'par' },
Ground: { volatileStatus: 'trapped' },
Rock: { volatileStatus: 'saltcure' },
Psychic: { status: 'slp' },
Ice: { status: 'frz' },
Bug: { status: 'psn' },
Ghost: { volatileStatus: 'disable' },
Steel: { volatileStatus: 'flinch' },
Dark: { volatileStatus: 'mustrecharge' },
Dragon: { volatileStatus: 'taunt' },
Fairy: { volatileStatus: 'attract' },
};
let condition = table[move.type];
if (!condition) condition = table['Normal'];
if (condition.status) {
target.trySetStatus(condition.status);
} else if (condition.volatileStatus) {
target.addVolatile(condition.volatileStatus);
}
},
},
target: "normal",
type: "???",
},
// PYRO
meatgrinder: {
accuracy: 100,
basePower: 60,
category: "Physical",
name: "Meat Grinder",
shortDesc: "User:+1/8 HP/turn;Foe:-1/8 HP/turn,Nrm/Fairy 1/4.",
desc: "Causes damage to the target equal to 1/8 of its maximum HP (1/4 if the target is Normal or Fairy type), rounded down, and heals the user equal to 1/8 of its maximum HP, both at the end of each turn during effect. This effect ends when the target is no longer active.",
pp: 15,
priority: 0,
flags: { protect: 1, mirror: 1 },
onPrepareHit() {
this.attrLastMove('[anim] Guillotine');
},
condition: {
noCopy: true,
onStart(pokemon) {
this.add('-start', pokemon, 'Meat Grinder');
},
onResidualOrder: 13,
onResidual(pokemon, source) {
this.damage(pokemon.baseMaxhp / (pokemon.hasType(['Normal', 'Fairy']) ? 4 : 8));
const target = this.getAtSlot(pokemon.volatiles['meatgrinder'].sourceSlot);
if (!pokemon || pokemon.fainted || pokemon.hp <= 0) {
this.add(`c:|${getName((target.illusion || target).name)}|Tripping off the beat kinda, dripping off the meat grinder`);
}
if (!target || target.fainted || target.hp <= 0) {
this.debug('Nothing to heal');
return;
}
this.heal(target.baseMaxhp / 8, target, pokemon);
},
onEnd(pokemon) {
this.add('-end', pokemon, 'Meat Grinder');
},
},
secondary: {
chance: 100,
volatileStatus: 'meatgrinder',
},
target: "normal",
type: "Steel",
},
// Quite Quiet
worriednoises: {
accuracy: 100,
basePower: 90,
category: "Special",
name: "*Worried Noises*",
shortDesc: "+1 SpA. Type varies based on user's primary type.",
desc: "Has a 100% chance to raise the user's Special Attack by 1 stage. This move's type depends on the user's primary type. If the user's primary type is typeless, this move's type is the user's secondary type if it has one, otherwise the added type from effects that add extra typings. This move is typeless if the user's type is typeless alone.",
pp: 10,
priority: 0,
flags: { protect: 1, mirror: 1, sound: 1, bypasssub: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Tidy Up', source);
this.add('-anim', source, 'Bug Buzz', target);
},
onModifyType(move, pokemon) {
let type = pokemon.getTypes()[0];
if (type === "Bird") type = "???";
move.type = type;
},
secondary: {
chance: 100,
self: {
boosts: {
spa: 1,
},
},
},
target: "normal",
type: "Normal",
},
// quziel
reshape: {
accuracy: 100,
basePower: 0,
category: "Status",
name: "Reshape",
shortDesc: "User: +1 SpA. Target becomes a random monotype.",
desc: "Raises the user's Special Attack by 1 stage and changes the target's typing to any one of the 18 standard types at random, replacing their old typing.",
pp: 10,
priority: 0,
flags: {},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Reflect Type', target);
},
onHit(target, source, move) {
const type = this.sample(this.dex.types.names().filter(i => i !== 'Stellar'));
target.setType(type);
this.add('-start', target, 'typechange', type, '[from] move: Reshape');
this.boost({ spa: 1 }, source);
},
target: "normal",
type: "Normal",
},
// R8
magictrick: {
accuracy: true,
basePower: 0,
category: "Status",
name: "Magic Trick",
shortDesc: "Teleport + Clears field effects.",
desc: "Removes any terrain, weather, entry hazard, or other removable field condition, and then causes the user to switch out even if it is trapped and be replaced immediately by a selected party member. The user does not switch out if there are no unfainted party members, and the user will still attempt to switch out if there are no active field conditions.",
pp: 5,
priority: 0,
flags: { bypasssub: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Explosion', target);
},
onHit(target, source, move) {
let success = false;
const displayText = ['spikes', 'toxicspikes', 'stealthrock', 'stickyweb', 'gmaxsteelsurge'];
for (const player of this.sides) {
for (const targetCondition of Object.keys(player.sideConditions)) {
if (player.removeSideCondition(targetCondition)) {
success = true;
if (displayText.includes(targetCondition)) {
this.add('-sideend', player, this.dex.conditions.get(targetCondition).name, '[from] move: Magic Trick', `[of] ${source}`);
}
}
}
}
if (this.field.clearTerrain()) success = true;
if (this.field.clearWeather()) success = true;
for (const pseudoWeather of PSEUDO_WEATHERS) {
if (this.field.removePseudoWeather(pseudoWeather)) success = true;
}
return success || !!this.canSwitch(source.side);
},
selfSwitch: true,
secondary: null,
target: "self",
type: "Normal",
},
// Rainshaft
"hatsunemikusluckyorb": {
accuracy: true,
basePower: 0,
category: "Status",
name: "Hatsune Miku's Lucky Orb",
shortDesc: "Gains +3 to random stat, then uses Baton Pass.",
desc: "Z-Move requiring Rainium Z. Boosts a random stat (except Accuracy and Evasion) by 3 stages, then the user is replaced with another Pokemon in its party. The selected Pokemon has the user's stat stage changes, confusion, and certain move effects transferred to it.",
pp: 1,
priority: 0,
flags: {},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(pokemon) {
this.add('-anim', pokemon, 'Life Dew', pokemon);
this.add('-anim', pokemon, 'Geomancy', pokemon);
},
onHit(target, pokemon, move) {
const stats: BoostID[] = [];
let stat: BoostID;
for (stat in target.boosts) {
if (stat === 'accuracy' || stat === 'evasion') continue;
if (target.boosts[stat] < 6) {
stats.push(stat);
}
}
if (stats.length) {
const randomStat = this.sample(stats);
this.boost({ [randomStat]: 3 }, pokemon, pokemon, move);
this.actions.useMove('Baton Pass', target);
}
},
isZ: "rainiumz",
secondary: null,
target: "self",
type: "Water",
},
// Ransei
floodoflore: {
accuracy: 100,
basePower: 100,
category: "Special",
name: "Flood of Lore",
shortDesc: "Sets Psychic Terrain.",
desc: "If this move is successful, the terrain becomes Psychic Terrain.",
pp: 5,
priority: 0,
flags: { protect: 1 },
terrain: 'psychicterrain',
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Photon Geyser', target);
},
secondary: null,
target: "normal",
type: "Psychic",
},
// ReturnToMonkey
monkemagic: {
accuracy: true,
basePower: 0,
category: "Status",
name: "Monke Magic",
shortDesc: "Sets Trick Room; user SpA +1.",
desc: "Nearly always goes last. Raises the user's Special Attack by 1 stage and sets Trick Room for 5 turns, making the slower Pokemon move first for the duration.",
pp: 5,
priority: -7,
flags: {},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Trick', target);
this.add('-anim', source, 'Trick Room', target);
this.add('-anim', source, 'Nasty Plot', target);
},
pseudoWeather: 'trickroom',
self: {
boosts: {
spa: 1,
},
},
target: "all",
type: "Psychic",
},
// Rio Vidal
metalblast: {
accuracy: 90,
basePower: 90,
category: "Physical",
shortDesc: "Sets G-Max Steelsurge on the foe's side.",
desc: "If this move is successful, it sets up G-Max Steelsurge on the opposing side of the field, damaging each opposing Pokemon that switches in. Foes lose 1/32, 1/16, 1/8, 1/4, or 1/2 of their maximum HP, rounded down, based on their weakness to the Steel type; 0.25x, 0.5x, neutral, 2x, or 4x, respectively. Can be removed from the opposing side if any opposing Pokemon uses Rapid Spin or Defog successfully, or is hit by Defog.",
name: "Metal Blast",
gen: 9,
pp: 10,
priority: 0,
flags: { protect: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Steel Beam', target);
this.add('-anim', source, 'G-max Steelsurge', target);
},
onAfterHit(target, source, move) {
if (!move.hasSheerForce && source.hp) {
for (const side of source.side.foeSidesWithConditions()) {
side.addSideCondition('gmaxsteelsurge');
}
}
},
onAfterSubDamage(damage, target, source, move) {
if (!move.hasSheerForce && source.hp) {
for (const side of source.side.foeSidesWithConditions()) {
side.addSideCondition('gmaxsteelsurge');
}
}
},
secondary: {}, // Sheer Force-boosted
target: "normal",
type: "Steel",
},
// Rissoux
callofthewild: {
accuracy: true,
basePower: 0,
category: "Status",
name: "Call of the Wild",
shortDesc: "Boosts Atk, Spe, and accuracy by 1 stage.",
pp: 5,
priority: 0,
flags: { sound: 1 },
boosts: {
atk: 1,
spe: 1,
accuracy: 1,
},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Dragon Dance', source);
this.add('-anim', source, 'Lock-On', source);
},
secondary: null,
target: "self",
type: "Fire",
},
// RSB
confiscate: {
accuracy: 100,
basePower: 60,
category: "Physical",
name: "Confiscate",
shortDesc: "First turn only. Steals boosts and screens.",
desc: "Nearly always moves first. The target's stat stages greater than 0 are stolen from it and applied to the user, and any present effects of Reflect, Light Screen, and Aurora Veil are moved from the target's side of the field to the user's, before dealing damage. Fails unless it is the user's first turn on the field.",
pp: 5,
priority: 2,
flags: { contact: 1, protect: 1, mirror: 1, bite: 1 },
onTry(source) {
if (source.activeMoveActions > 1) {
this.hint("Confiscate only works on your first turn out.");
return false;
}
},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Crunch', target);
this.add('-anim', source, 'Thief', target);
},
onTryHit(target, source) {
this.add(`c:|${getName((source.illusion || source).name)}|Contraband detected, confiscating.`);
for (const condition of ['reflect', 'lightscreen', 'auroraveil']) {
if (target.side.removeSideCondition(condition)) {
source.side.addSideCondition(condition);
}
}
},
stealsBoosts: true,
target: "normal",
type: "Dark",
},
// Rumia
midnightbird: {
accuracy: 100,
basePower: 85,
category: "Special",
name: "Midnight Bird",
shortDesc: "100% chance to raise the user's Sp. Atk by 1.",
desc: "Has a 100% chance to raise the user's Special Attack by 1 stage.",
pp: 10,
priority: 0,
flags: { protect: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Memento', target);
this.add('-anim', source, 'Brutal Swing', target);
},
secondary: {
chance: 100,
self: {
boosts: {
spa: 1,
},
},
},
target: "normal",
type: "Dark",
},
// Scotteh
purification: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Heals 50% of max HP. Cures status.",
desc: "Heals the user for 1/2 of their maximum HP and removes any non-volatile status effect from the user.",
name: "Purification",
pp: 5,
priority: 0,
flags: { heal: 1, bypasssub: 1, allyanim: 1 },
onPrepareHit() {
this.attrLastMove('[anim] Moonlight');
},
onHit(pokemon) {
const success = !!this.heal(this.modify(pokemon.maxhp, 0.5));
return pokemon.cureStatus() || success;
},
secondary: null,
target: "self",
type: "Water",
},
// SexyMalasada
hexadecimalfire: {
accuracy: 100,
basePower: 75,
category: "Special",
shortDesc: "20% burn, 20% spite, 20% 1/4th recoil.",
desc: "This move independently has a 20% chance to leave the target with a burn, a 20% chance to reduce the PP of the target's last used move by 4, and a 20% chance to cause the user to take damage equal to 1/4 of the damage dealt to the target.",
name: "Hexadecimal Fire",
pp: 15,
priority: 0,
flags: { heal: 1, bypasssub: 1, allyanim: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Sacred Fire', target);
this.add('-anim', source, 'Hex', target);
},
secondaries: [
{
chance: 20,
status: 'brn',
},
{
chance: 20,
onHit(target) {
if (!target.hp) return;
let move: Move | ActiveMove | null = target.lastMove;
if (!move || move.isZ) return;
if (move.isMax && move.baseMove) move = this.dex.moves.get(move.baseMove);
const ppDeducted = target.deductPP(move.id, 4);
if (!ppDeducted) return;
this.add('-activate', target, 'move: Hexadecimal Fire', move.name, ppDeducted);
},
},
{
chance: 20,
onHit(target, source, move) {
move.recoil = [25, 100];
},
},
],
target: "normal",
type: "Ghost",
},
// sharp_claw
treacheroustraversal: {
accuracy: 100,
basePower: 70,
category: "Physical",
shortDesc: "Clears hazards, sets spikes, switches out.",
desc: "Removes all entry hazards and active terrains from the field, then sets one layer of Spikes if the user is Sneasel or Toxic Spikes otherwise. If this move is successful and the user has not fainted, the user switches out even if it is trapped and is replaced immediately by a selected party member. The user does not switch out if there are no unfainted party members, or if the target switched out using an Eject Button or through the effect of the Emergency Exit or Wimp Out Abilities.",
name: "Treacherous Traversal",
gen: 9,
pp: 20,
priority: 0,
flags: { contact: 1, protect: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Defog', source);
this.add('-anim', source, 'Extreme Speed', target);
},
selfSwitch: true,
self: {
onHit(source) {
let success = false;
const removeTarget = [
'reflect', 'lightscreen', 'auroraveil', 'safeguard', 'mist', 'spikes', 'toxicspikes', 'stealthrock', 'stickyweb', 'gmaxsteelsurge',
];
const removeAll = [
'spikes', 'toxicspikes', 'stealthrock', 'stickyweb', 'gmaxsteelsurge',
];
const targetSide = source.side.foe;
for (const targetCondition of removeTarget) {
if (targetSide.removeSideCondition(targetCondition)) {
if (!removeAll.includes(targetCondition)) continue;
this.add('-sideend', targetSide, this.dex.conditions.get(targetCondition).name, '[from] move: Treacherous Traversal', `[of] ${source}`);
success = true;
}
}
for (const sideCondition of removeAll) {
if (source.side.removeSideCondition(sideCondition)) {
this.add('-sideend', source.side, this.dex.conditions.get(sideCondition).name, '[from] move: Treacherous Traversal', `[of] ${source}`);
success = true;
}
}
success = this.field.clearTerrain();
for (const side of source.side.foeSidesWithConditions()) {
if (source.species.name === 'Sneasel') {
success = side.addSideCondition('spikes');
} else {
success = side.addSideCondition('toxicspikes');
}
}
return success;
},
},
secondary: {}, // allows sheer force to trigger
target: "normal",
type: "Rock",
},
// Siegfried
boltbeam: {
accuracy: 100,
basePower: 0,
category: "Status",
shortDesc: "Calls 45 BP Thunderbolt + 45 BP Ice Beam.",
desc: "When used, calls a 45 Base Power Thunderbolt for use, and then calls a 45 Base Power Ice Beam for use. If one move fails, the other will still execute.",
name: "BoltBeam",
pp: 15,
priority: 0,
flags: {},
onTryMove() {
this.attrLastMove('[still]');
},
onTryHit(target) {
const tbolt = this.dex.getActiveMove('thunderbolt');
tbolt.basePower = 45;
const icebeam = this.dex.getActiveMove('icebeam');
icebeam.basePower = 45;
this.actions.useMove(tbolt, target);
this.actions.useMove(icebeam, target);
return null;
},
secondary: null,
target: "self",
type: "Electric",
},
// Sificon
grassgaming: {
accuracy: 100,
basePower: 100,
category: "Special",
shortDesc: "Remove item, Leech Seed, Psn if stat raised.",
desc: "If the user has not fainted, the target loses its held item. This move cannot cause Pokemon with the Sticky Hold Ability or Pokemon holding Z-Crystals or Mega Stones to lose their held items. This move summons Leech Seed on the foe. Has a 100% chance to poison the target if it had a stat stage raised this turn.",
name: "Grass Gaming",
pp: 15,
priority: 0,
flags: { protect: 1, reflectable: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'G-Max Vine Lash', target);
},
onBasePower(basePower, source, target, move) {
const item = target.getItem();
if (!this.singleEvent('TakeItem', item, target.itemState, target, target, move, item)) return;
if (item.id) {
return this.chainModify(1.5);
}
},
onAfterHit(target, source) {
if (source.hp) {
const item = target.takeItem();
if (item) {
this.add('-enditem', target, item.name, '[from] move: Grass Gaming', `[of] ${source}`);
}
}
},
onHit(target, source, move) {
if (target?.statsRaisedThisTurn) {
target.trySetStatus('psn', source, move);
}
if (!target.hasType('Grass')) {
target.addVolatile('leechseed', source);
}
},
secondary: null,
target: "normal",
type: "Grass",
},
// skies
like: {
accuracy: 100,
basePower: 80,
category: "Physical",
shortDesc: "The user recycles their item.",
desc: "If this attack is successful, the user regains its last used held item, unless it was forcibly removed.",
name: "Like..?",
pp: 5,
priority: 0,
flags: { reflectable: 1, protect: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Recycle', target);
this.add('-anim', source, 'Seed Bomb', target);
},
self: {
onHit(pokemon) {
if (!pokemon.item && pokemon.lastItem) {
const item = pokemon.lastItem;
pokemon.lastItem = '';
this.add('-item', pokemon, this.dex.items.get(item), '[from] move: Recycle');
pokemon.setItem(item);
}
},
},
secondary: null,
target: "normal",
type: "Grass",
},
// snake
conceptrelevant: {
accuracy: 100,
basePower: 70,
category: "Physical",
shortDesc: "Sets up 2 random hazards+psn foe. Switch.",
desc: "If this move is successful, all entry hazards are removed from the user's side of the field, the target becomes poisoned, and two random entry hazards are set on the target's side. If this move is successful and the user has not fainted, the user switches out even if it is trapped and is replaced immediately by a selected party member. The user does not switch out if there are no unfainted party members, or if the target switched out using an Eject Button or through the effect of the Emergency Exit or Wimp Out Abilities.",
name: "Concept Relevant",
gen: 9,
pp: 15,
priority: 0,
flags: { contact: 1, protect: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Mortal Spin', target);
this.add('-anim', source, 'Spikes', target);
this.add('-anim', source, 'U-turn', target);
},
onAfterHit(target, pokemon) {
if (pokemon.hp && pokemon.removeVolatile('leechseed')) {
this.add('-end', pokemon, 'Leech Seed', '[from] move: Concept Relevant', `[of] ${pokemon}`);
}
const sideConditions = ['spikes', 'toxicspikes', 'stealthrock', 'stickyweb', 'gmaxsteelsurge'];
for (const condition of sideConditions) {
if (pokemon.hp && pokemon.side.removeSideCondition(condition)) {
this.add('-sideend', pokemon.side, this.dex.conditions.get(condition).name, '[from] move: Concept Relevant', `[of] ${pokemon}`);
}
}
if (pokemon.hp && pokemon.volatiles['partiallytrapped']) {
pokemon.removeVolatile('partiallytrapped');
}
for (let i = 0; i < 2; i++) {
const usableSideConditions = sideConditions.filter(condition => {
if (condition === 'spikes') {
return !target.side.sideConditions[condition] || target.side.sideConditions[condition].layers < 3;
}
if (condition === 'toxicspikes') {
return !target.side.sideConditions[condition] || target.side.sideConditions[condition].layers < 2;
}
return !target.side.sideConditions[condition];
});
if (usableSideConditions.length) {
target.side.addSideCondition(this.sample(usableSideConditions));
}
}
},
onAfterSubDamage(damage, target, pokemon) {
if (pokemon.hp && pokemon.removeVolatile('leechseed')) {
this.add('-end', pokemon, 'Leech Seed', '[from] move: Concept Relevant', `[of] ${pokemon}`);
}
const sideConditions = ['spikes', 'toxicspikes', 'stealthrock', 'stickyweb', 'gmaxsteelsurge'];
for (const condition of sideConditions) {
if (pokemon.hp && pokemon.side.removeSideCondition(condition)) {
this.add('-sideend', pokemon.side, this.dex.conditions.get(condition).name, '[from] move: Concept Relevant', `[of] ${pokemon}`);
}
}
if (pokemon.hp && pokemon.volatiles['partiallytrapped']) {
pokemon.removeVolatile('partiallytrapped');
}
for (let i = 0; i < 2; i++) {
const usableSideConditions = sideConditions.filter(condition => {
if (condition === 'spikes') {
return !target.side.sideConditions[condition] || target.side.sideConditions[condition].layers < 3;
}
if (condition === 'toxicspikes') {
return !target.side.sideConditions[condition] || target.side.sideConditions[condition].layers < 2;
}
return !target.side.sideConditions[condition];
});
if (usableSideConditions.length) {
target.side.addSideCondition(this.sample(usableSideConditions));
}
}
},
secondary: {
chance: 100,
status: 'psn',
},
selfSwitch: true,
target: "normal",
type: "Bug",
},
// Soft Flex
adaptivebeam: {
accuracy: 100,
basePower: 90,
category: "Special",
shortDesc: "If target has boosts, steals them, +1 prio, 0 BP.",
desc: "If the target of this move has positive stat stage changes, this move will usually move first, and on use the attack deals no damage and instead moves all positive stat stage changes from the target to the user.",
name: "Adaptive Beam",
pp: 15,
priority: 0,
flags: { sound: 1, protect: 1, bypasssub: 1 },
stealsBoosts: true,
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Flash Cannon', target);
if (target.positiveBoosts()) {
this.add('-anim', source, 'Extreme Evoboost', source);
}
},
onModifyMove(move, pokemon, target) {
if (target?.positiveBoosts()) {
move.basePower = 0;
move.category = 'Status';
}
},
onModifyPriority(priority, source, target, move) {
if (target?.positiveBoosts()) return priority + 1;
return priority;
},
secondary: null,
target: "normal",
type: "Steel",
},
// Solaros & Lunaris
mindmelt: {
accuracy: 100,
basePower: 100,
category: "Special",
overrideDefensiveStat: 'def',
shortDesc: "Target's the foe's Def instead of Sp. Def.",
desc: "Deals damage to the target based on its Defense instead of Special Defense.",
name: "Mind Melt",
gen: 9,
pp: 10,
priority: 0,
flags: { protect: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Burn Up', target);
},
secondary: null,
target: "normal",
type: "Fire",
},
// Spiderz
shepherdofthemafiaroom: {
accuracy: 90,
basePower: 65,
category: "Physical",
shortDesc: "Sets Sticky Web. 1.3x power if moves first.",
desc: "If this move deals damage, it sets up a hazard on the opposing side of the field. This hazard lowers the Speed of each opposing Pokemon that switches in by 1 stage, unless it is a Flying-type Pokemon or has the Levitate Ability. This move's damage is multiplied by 1.3 if the user is the first Pokemon to move during the turn.",
name: "Shepherd of the Mafia Room",
gen: 9,
pp: 15,
priority: 0,
flags: { contact: 1, protect: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source, move) {
this.add('-anim', source, 'Explosion', source);
this.add('-anim', source, 'Explosion', source);
this.add('-anim', source, 'Explosion', source);
this.add('-anim', source, 'Explosion', source);
this.add('-anim', source, 'Explosion', source);
this.add('-anim', source, 'Explosion', source);
},
onBasePower(relayVar, source, target, move) {
if (source.getStat('spe', false, true) > target.getStat('spe', false, true)) {
return this.chainModify([5325, 4096]);
}
},
onAfterHit(target, source, move) {
if (!move.hasSheerForce && source.hp) {
for (const side of source.side.foeSidesWithConditions()) {
side.addSideCondition('stickyweb');
}
}
},
onAfterSubDamage(damage, target, source, move) {
if (!move.hasSheerForce && source.hp) {
for (const side of source.side.foeSidesWithConditions()) {
side.addSideCondition('stickyweb');
}
}
},
secondary: {}, // Sheer Force-boosted
target: "normal",
type: "Dark",
},
// spoo
cardiotraining: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Boosts Atk, Def, and Sp. Def by 1 stage.",
desc: "Boosts the user's Attack, Defense, and Special Defense by 1 stage.",
name: "Cardio Training",
gen: 9,
pp: 5,
priority: 0,
flags: { snatch: 1, dance: 1, metronome: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source, move) {
this.add('-anim', source, 'Geomancy', source);
},
boosts: {
atk: 1,
def: 1,
spd: 1,
},
secondary: null,
target: "self",
type: "Fire",
},
// Steorra
phantomweapon: {
accuracy: 100,
basePower: 65,
category: "Physical",
name: "Phantom Weapon",
shortDesc: "2x power if user is holding item; destroys item.",
desc: "If the user is holding an item, this move will deal double damage and the user's held item will be removed.",
pp: 20,
priority: 0,
onModifyPriority(priority, pokemon) {
if (!pokemon.item) return priority + 1;
},
flags: { protect: 1, mirror: 1 },
onModifyMove(move, pokemon, target) {
if (!pokemon.item) {
move.flags['contact'] = 1;
move.flags['mirror'] = 1;
}
},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source, move) {
this.add('-anim', source, 'Shadow Force', target);
if (!source.item || source.ignoringItem()) return;
const item = source.getItem();
if (!this.singleEvent('TakeItem', item, source.itemState, source, source, move, item)) return;
move.basePower *= 2;
source.addVolatile('phantomweapon');
},
condition: {
onUpdate(pokemon) {
const item = pokemon.getItem();
pokemon.setItem('');
pokemon.lastItem = item.id;
pokemon.usedItemThisTurn = true;
this.add('-enditem', pokemon, item.name, '[from] move: Phantom Weapon');
this.runEvent('AfterUseItem', pokemon, null, null, item);
pokemon.removeVolatile('phantomweapon');
},
},
secondary: null,
target: "normal",
type: "Ghost",
},
// Struchni
randfact: {
accuracy: 100,
basePower: 120,
category: "Physical",
shortDesc: "Random type.",
desc: "This move's typing is chosen randomly between the 18 standard types.",
name: "~randfact",
gen: 9,
pp: 10,
priority: 0,
flags: { protect: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source, move) {
move.type = this.sample(this.dex.types.names().filter(i => i !== 'Stellar'));
this.add('-anim', source, 'Nasty Plot', source);
this.add('-anim', source, 'Head Smash', target);
},
secondary: null,
target: "normal",
type: "Steel",
},
// Sulo
vengefulmood: {
accuracy: 100,
basePower: 60,
basePowerCallback(pokemon) {
return Math.min(140, 60 + 20 * pokemon.timesAttacked);
},
category: "Special",
shortDesc: "+20 power for each time user was hit. Max 4 hits.",
desc: "Power is equal to 60+(X*20), where X is the total number of times the user has been hit by a damaging attack during the battle, even if the user did not lose HP from the attack. X cannot be greater than 4 and does not reset upon switching out or fainting. Each hit of a multi-hit attack is counted, but confusion damage is not counted.",
name: "Vengeful Mood",
gen: 9,
pp: 15,
priority: 0,
flags: { protect: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Aura Sphere', source);
},
secondary: null,
target: "normal",
type: "Fighting",
},
// Swiffix
stinkbomb: {
accuracy: 85,
basePower: 10,
category: "Special",
shortDesc: "Hits 10 times. Each hit can miss.",
desc: "Hits ten times. This move checks accuracy for each hit, and the attack ends if the target avoids a hit. If one of the hits breaks the target's substitute, it will take damage for the remaining hits. If the user has the Skill Link Ability, this move will always hit ten times. If the user is holding Loaded Dice, this move hits four to ten times at random without checking accuracy between hits.",
name: "Stink Bomb",
gen: 9,
pp: 10,
priority: 0,
flags: { protect: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Population Bomb', target);
this.add('-anim', source, 'Venoshock', target);
},
multihit: 10,
multiaccuracy: true,
secondary: null,
target: "normal",
type: "Poison",
},
// Syrinix
asoulforasoul: {
accuracy: 100,
basePower: 0,
category: "Physical",
shortDesc: "KOes foe + user if ally was KOed prev. turn.",
desc: "If one of the user's party members fainted last turn, this move results in a guaranteed KO for both the target and the user. This move can hit Normal-type Pokemon. Fails if one of the user's party members did not faint last turn.",
name: "A Soul for a Soul",
pp: 5,
priority: 1,
flags: { protect: 1, contact: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Explosion', target);
this.add('-anim', source, 'Final Gambit', target);
},
onTry(source, target) {
if (!source.side.faintedLastTurn) return false;
source.faint(source);
target?.faint(source);
},
ignoreImmunity: true,
secondary: null,
target: "normal",
type: "Ghost",
},
// Teclis
risingsword: {
accuracy: 100,
basePower: 0,
category: "Status",
shortDesc: "Boosts Attack, Speed, and Crit ratio by 1.",
desc: "Boosts the user's Attack and Speed by 1 stage and increases the user's chance of landing a critical hit.",
name: "Rising Sword",
pp: 5,
priority: 0,
onTryMove() {
this.attrLastMove('[still]');
},
onHit(pokemon) {
const success = !!this.boost({ atk: 1, spe: 1 });
return pokemon.addVolatile('risingsword') || success;
},
condition: {
onStart(pokemon, source) {
this.add('-start', pokemon, 'move: Rising Sword');
},
onModifyCritRatio(critRatio, source) {
return critRatio + 1;
},
},
flags: {},
onPrepareHit(target, source) {
this.add('-anim', source, 'Focus Energy', target);
this.add('-anim', source, 'Agility', target);
},
secondary: null,
target: "self",
type: "Psychic",
},
// Tenshi
sandeat: {
accuracy: 100,
basePower: 0,
category: "Status",
shortDesc: "Protects user, changes type and gains a new move.",
desc: "Nearly always moves first. The user protects itself from most attacks made by other Pokemon this turn and gains a random type. If the user has Dynamic Punch, Pyro Ball, Triple Axel, Stone Edge, or Aqua Tail, it will also replace that move with a new move based on the type gained. It can gain Fire type and Pyro Ball, Ice type and Triple Axel, Rock type and Stone Edge, and Water type and Aqua Tail. This move fails entirely if the user moved last this turn or if the foe switches out, and this move has an increasing chance to fail when used consecutively.",
name: "SAND EAT",
pp: 10,
priority: 4,
flags: { noassist: 1 },
stallingMove: true,
volatileStatus: 'protect',
onTryMove() {
this.attrLastMove('[still]');
},
onHit(pokemon) {
pokemon.addVolatile('stall');
const types = ['Fire', 'Water', 'Ice', 'Rock'];
const moves = ['pyroball', 'aquatail', 'tripleaxel', 'stoneedge'];
const newType = this.sample(types.filter(i => !pokemon.hasType(i)));
const newMove = moves[types.indexOf(newType)];
const replacementIndex = Math.max(
pokemon.moves.indexOf('dynamicpunch'),
pokemon.moves.indexOf('pyroball'),
pokemon.moves.indexOf('aquatail'),
pokemon.moves.indexOf('tripleaxel'),
pokemon.moves.indexOf('stoneedge')
);
if (replacementIndex < 0) {
return;
}
const replacement = this.dex.moves.get(newMove);
const replacementMove = {
move: replacement.name,
id: replacement.id,
pp: replacement.pp,
maxpp: replacement.pp,
target: replacement.target,
disabled: false,
used: false,
};
pokemon.moveSlots[replacementIndex] = replacementMove;
pokemon.baseMoveSlots[replacementIndex] = replacementMove;
pokemon.addType(newType);
this.add('-start', pokemon, 'typeadd', newType, '[from] move: SAND EAT');
this.add(`c:|${getName((pokemon.illusion || pokemon).name)}|omg look HE EAT`);
},
onPrepareHit(pokemon, source) {
this.add('-anim', source, 'Dig', pokemon);
this.add('-anim', source, 'Odor Sleuth', pokemon);
this.add('-anim', source, 'Stuff Cheeks', pokemon);
this.add(`c:|${getName((pokemon.illusion || pokemon).name)}|he do be searching for rocks tho`);
return !!this.queue.willAct() && this.runEvent('StallMove', pokemon);
},
secondary: null,
target: "self",
type: "Ground",
},
// Tico
eternalwish: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Wish + Aromatherapy + Defog.",
desc: "Sets a Wish on the user's side, healing the active Pokemon for 50% of the user's maximum HP at the end of the next turn. Lowers the target's evasiveness by 1 stage. If this move is successful and whether or not the target's evasiveness was affected, the effects of Reflect, Light Screen, Aurora Veil, Safeguard, Mist, Spikes, Toxic Spikes, Stealth Rock, G-Max Steelsurge, and Sticky Web end for the target's side, and for the user's side all team members' non-volatile status conditions and the effects of Spikes, Toxic Spikes, Stealth Rock, G-Max Steelsurge, and Sticky Web are removed. Ignores a target's substitute, although a substitute will still block the lowering of evasiveness. If there is a terrain active and this move is successful, the terrain will be cleared.",
name: "Eternal Wish",
pp: 10,
priority: 0,
flags: { protect: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(source, target) {
this.add('-anim', target, 'Wish', target);
this.add('-anim', target, 'Aromatherapy', target);
this.add('-anim', target, 'Defog', target);
},
onHit(target, source, move) {
let success = false;
if (!target.volatiles['substitute'] || move.infiltrates) success = !!this.boost({ evasion: -1 });
const removeTarget = [
'reflect', 'lightscreen', 'auroraveil', 'safeguard', 'mist', 'spikes', 'toxicspikes', 'stealthrock', 'stickyweb', 'gmaxsteelsurge',
];
const removeAll = [
'spikes', 'toxicspikes', 'stealthrock', 'stickyweb', 'gmaxsteelsurge',
];
for (const targetCondition of removeTarget) {
if (target.side.removeSideCondition(targetCondition)) {
if (!removeAll.includes(targetCondition)) continue;
this.add('-sideend', target.side, this.dex.conditions.get(targetCondition).name, '[from] move: Eternal Wish', `[of] ${source}`);
success = true;
}
}
for (const sideCondition of removeAll) {
if (source.side.removeSideCondition(sideCondition)) {
this.add('-sideend', source.side, this.dex.conditions.get(sideCondition).name, '[from] move: Eternal Wish', `[of] ${source}`);
success = true;
}
}
this.field.clearTerrain();
return success;
},
self: {
slotCondition: 'Wish',
onHit(target, source, move) {
this.add('-activate', source, 'move: Eternal Wish');
let success = false;
const allies = [...source.side.pokemon, ...source.side.allySide?.pokemon || []];
for (const ally of allies) {
if (ally !== source && ((ally.hasAbility('sapsipper')) ||
(ally.volatiles['substitute'] && !move.infiltrates))) {
continue;
}
if (ally.cureStatus()) success = true;
}
return success;
},
},
secondary: null,
target: "normal",
type: "Ghost",
},
// TheJesucristoOsAma
theloveofchrist: {
accuracy: 100,
basePower: 0,
category: "Status",
shortDesc: "Infatuates and confuses the target.",
desc: "Causes the target to become confused and infatuated, regardless of gender. This move cannot ever have more than 1 PP.",
name: "The Love Of Christ",
gen: 9,
pp: 1,
noPPBoosts: true,
priority: 0,
flags: { protect: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Morning Sun', source);
this.add('-anim', source, 'Lovely Kiss', target);
},
onHit(target, source) {
target.addVolatile('attract', source);
target.addVolatile('confusion', source);
},
secondary: null,
target: "normal",
type: "Normal",
},
// trace
chronostasis: {
accuracy: 90,
basePower: 80,
category: "Special",
shortDesc: "If target is KOed, user boosts random stat by 2.",
desc: "If this move knocks out the target, the user boosts a random stat, except Accuracy and Evasion, by 2 stages.",
name: "Chronostasis",
gen: 9,
pp: 10,
priority: 0,
flags: { protect: 1, mirror: 1 },
onPrepareHit() {
this.attrLastMove('[anim] Future Sight');
},
onAfterMoveSecondarySelf(pokemon, target, move) {
if (!target || target.fainted || target.hp <= 0) {
const stats: BoostID[] = [];
let stat: BoostID;
for (stat in target.boosts) {
if (stat === 'accuracy' || stat === 'evasion') continue;
if (target.boosts[stat] < 6) {
stats.push(stat);
}
}
if (stats.length) {
const randomStat = this.sample(stats);
this.boost({ [randomStat]: 2 }, pokemon, pokemon, move);
}
}
},
secondary: null,
target: "normal",
type: "Psychic",
},
// Tuthur
symphonieduzero: {
accuracy: 100,
basePower: 80,
category: "Special",
shortDesc: "Deals an additional 12.5% HP at end of turn.",
desc: "If this move deals damage, at the end of the turn, the target will take an additional 12.5% of its maximum HP in non-attack damage if it is still on the field.",
name: "Symphonie du Ze\u0301ro",
pp: 10,
priority: 0,
flags: { protect: 1, mirror: 1, sound: 1, bypasssub: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Alluring Voice', target);
},
volatileStatus: 'symphonieduzero',
condition: {
noCopy: true,
onStart(pokemon) {
this.add('-start', pokemon, 'Symphonie du Ze\u0301ro');
},
onResidualOrder: 13,
onResidual(pokemon) {
this.damage(pokemon.baseMaxhp / 8);
},
onEnd(pokemon) {
this.add('-end', pokemon, 'Symphonie du Ze\u0301ro');
},
},
secondary: null,
target: "normal",
type: "Fairy",
},
// Two of Roses
dillydally: {
accuracy: 90,
basePower: 40,
category: "Physical",
shortDesc: "2 hits, +1 random stat/hit. Type=User 2nd type.",
desc: "This move hits 2 times. For each successful hit, the user boosts a random stat, except Accuracy and Evasion, by 1 stage. The typing of this move is equal to the user's secondary type; it will instead use the user's primary type if the user lacks a secondary type.",
name: "Dilly Dally",
pp: 20,
priority: 0,
multihit: 2,
flags: { protect: 1, contact: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Volt Tackle', source);
this.add('-anim', source, 'Extreme Speed', target);
},
onModifyType(move, pokemon) {
let type = pokemon.getTypes()[pokemon.getTypes().length - 1];
if (type === "Bird" || type === undefined) type = "???";
if (type === "Stellar") type = pokemon.getTypes()[pokemon.getTypes(false, true).length - 1];
move.type = type;
},
secondary: {
chance: 100,
onHit(target, source, move) {
const stats: BoostID[] = [];
const boost: SparseBoostsTable = {};
let statPlus: BoostID;
for (statPlus in source.boosts) {
if (statPlus === 'accuracy' || statPlus === 'evasion') continue;
if (source.boosts[statPlus] < 6) {
stats.push(statPlus);
}
}
const randomStat: BoostID | undefined = stats.length ? this.sample(stats) : undefined;
if (randomStat) boost[randomStat] = 1;
this.boost(boost, source, source);
},
},
target: "normal",
type: "???",
},
// UT
myboys: {
accuracy: 100,
basePower: 60,
category: "Physical",
shortDesc: "Uses two status moves, then switches out.",
desc: "The user uses two, at random, of: Feather Dance, Growl, Rain Dance, Sunny Day, Tailwind and Taunt. After these moves execute, the user switches out even if it is trapped and is replaced immediately by a selected party member. The user does not switch out if there are no unfainted party members out.",
name: "My Boys",
pp: 20,
priority: 0,
flags: { contact: 1, protect: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
const varMoves = ['Feather Dance', 'Growl', 'Rain Dance', 'Sunny Day', 'Tailwind', 'Taunt', 'Will-O-Wisp'];
const move1 = this.sample(varMoves);
const move2 = this.sample(varMoves.filter(i => i !== move1));
this.add('-message', `Fletchling used ${move1}!`);
this.actions.useMove(move1, source);
this.add('-message', `Taillow used ${move2}!`);
this.actions.useMove(move2, source);
this.add('-message', `Talonflame attacked!`);
this.add('-anim', source, 'U-Turn', target);
},
selfSwitch: true,
secondary: null,
target: "normal",
type: "Flying",
},
// Valerian
firststrike: {
accuracy: 100,
basePower: 25,
category: "Physical",
name: "First Strike",
shortDesc: "Turn 1 only. Atk: +1 NVE, +2 NE, +3 SE.",
desc: "Boosts the user's Attack by 1 stage if the attack is not very effective, 2 stages if the attack is neutral, and 3 stages if the attack is super effective. Fails unless it is the user's first turn on the field.",
pp: 15,
priority: 3,
flags: { contact: 1, protect: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, "Fake Out", target);
},
onTry(source) {
if (source.activeMoveActions > 1) {
this.hint("First Strike only works on your first turn out.");
return false;
}
},
onAfterMoveSecondarySelf(pokemon, target, move) {
let boost = 2;
const typeMod = target.getMoveHitData(move).typeMod;
if (typeMod > 0) {
boost = 3;
} else if (typeMod < 0) {
boost = 1;
}
this.boost({ atk: boost }, pokemon, pokemon, move);
},
secondary: null,
target: "normal",
type: "Steel",
},
// Venous
yourcripplinginterest: {
accuracy: true,
basePower: 0,
category: "Status",
name: "Your Crippling Interest",
shortDesc: "Tox; clears terrain and hazards on both sides.",
desc: "The target becomes badly poisoned, and all entry hazards and terrain effects are removed from both sides of the field. If the target already has a non-volatile status condition, the removal effect can still occur.",
pp: 15,
priority: 0,
flags: { protect: 1, reflectable: 1, mirror: 1, bypasssub: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, "Esper Wing", target);
this.add('-anim', source, "Defog", source);
},
onHit(target, source, move) {
let success = false;
if (!target.volatiles['substitute'] || move.infiltrates) success = !!target.trySetStatus('tox', source);
const removeTarget = [
'reflect', 'lightscreen', 'auroraveil', 'safeguard', 'mist', 'spikes', 'toxicspikes', 'stealthrock', 'stickyweb', 'gmaxsteelsurge',
];
const removeAll = [
'spikes', 'toxicspikes', 'stealthrock', 'stickyweb', 'gmaxsteelsurge',
];
for (const targetCondition of removeTarget) {
if (target.side.removeSideCondition(targetCondition)) {
if (!removeAll.includes(targetCondition)) continue;
this.add('-sideend', target.side, this.dex.conditions.get(targetCondition).name, '[from] move: Your Crippling Interest', `[of] ${source}`);
success = true;
}
}
for (const sideCondition of removeAll) {
if (source.side.removeSideCondition(sideCondition)) {
this.add('-sideend', source.side, this.dex.conditions.get(sideCondition).name, '[from] move: Your Crippling Interest', `[of] ${source}`);
success = true;
}
}
this.field.clearTerrain();
return success;
},
ignoreAbility: true,
secondary: null,
target: "normal",
type: "Flying",
},
// Violet
buildingcharacter: {
accuracy: 100,
basePower: 50,
basePowerCallback(pokemon, target, move) {
if (target?.terastallized) {
this.debug('BP doubled from tera');
return move.basePower * 2;
}
return move.basePower;
},
category: "Physical",
shortDesc: "Vs Tera'd target: 0 prio, 2x BP, removes Tera.",
desc: "Usually moves first. If the target has Terastallized, this move becomes +0 priority and does double damage. If this move is successful against a Terastallized target, the target's Terastallization effect is permanently removed.",
name: "building character",
gen: 9,
pp: 10,
priority: 1,
onModifyPriority(priority, pokemon, target, move) {
if (target?.terastallized) return 0;
},
flags: { protect: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
if (target?.terastallized) this.add('-anim', source, "Block", target);
this.add('-anim', source, "Wicked Blow", target);
},
onHit(pokemon, source) {
if (pokemon?.terastallized) {
this.add(`c:|${getName((source.illusion || source).name)}|lol never do that ever again thanks`);
this.add('custom', '-endterastallize', pokemon);
delete pokemon.terastallized;
const details = pokemon.getUpdatedDetails();
this.add('detailschange', pokemon, details);
}
},
secondary: null,
target: "normal",
type: "Grass",
},
// Vistar
virtualavatar: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Changes to Idol forme and sets a substitute.",
desc: "If the user is a Zeraora, the user's ability changes to Virtual Idol and its full moveset becomes Overdrive, Sparkling Aria, Torch Song, and Teeter Dance, replacing every currently present move. The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle.",
name: "Virtual Avatar",
pp: 10,
priority: 0,
flags: { sound: 1, failcopycat: 1 },
secondary: null,
onTryMove() {
this.attrLastMove('[still]');
},
onTry(source) {
if (source.species.name === 'Zeraora') {
return;
}
this.hint("Only Zeraora can use this move.");
this.attrLastMove('[still]');
this.add('-fail', source, 'move: Virtual Avatar');
return null;
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Morning Sun', source);
this.add('-anim', source, 'Seed Flare', target);
},
onHit(target, source) {
changeSet(this, target, ssbSets['Vistar-Idol'], true);
this.add(`c:|${getName((source.illusion || source).name)}|Finally, I'm making my debut`);
if (source.volatiles['substitute']) return;
if (source.hp <= source.maxhp / 4 || source.maxhp === 1) { // Shedinja clause
this.add('-fail', source, 'move: Substitute', '[weak]');
} else {
source.addVolatile('substitute');
this.directDamage(source.maxhp / 4);
}
},
target: "self",
type: "Normal",
},
// vmnunes
gracideasblessing: {
accuracy: 100,
basePower: 0,
category: "Status",
shortDesc: "Uses Wish, switches out. Recipient gets Aqua Ring.",
desc: "Sets a Wish on the user's side, healing the active Pokemon for 50% of the user's maximum HP at the end of the next turn. If this move is successful, the user switches out even if it is trapped and is replaced immediately by a selected party member, which will gain the Aqua Ring effect. The user does not switch out if there are no unfainted party members.",
name: "Gracidea's Blessing",
pp: 10,
priority: 0,
flags: {},
secondary: null,
selfSwitch: true,
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Morning Sun', source);
this.add('-anim', source, 'Seed Flare', target);
},
slotCondition: 'gracideasblessing',
condition: {
duration: 2,
onStart(pokemon, source) {
this.effectState.hp = source.maxhp / 2;
},
onSwitchIn(target) {
if (!target.fainted) target.addVolatile('aquaring', target);
},
onResidualOrder: 4,
onEnd(target) {
if (target && !target.fainted) {
this.heal(this.effectState.hp, target, target);
}
},
},
target: "self",
type: "Grass",
},
// WarriorGallade
fruitfullongbow: {
accuracy: 90,
basePower: 160,
category: "Special",
shortDesc: "Hit off higher atk, eats berry, Dragon/Fly eff.",
desc: "Uses the user's higher attack stat in damage calculation. Does not need to charge in sun. If this move is successful and the user is holding a berry, the user consumes its held berry and restores 25% of its maximum HP. This move combines Dragon in its type effectiveness.",
name: "Fruitful Longbow",
gen: 9,
pp: 15,
priority: 0,
flags: { charge: 1, protect: 1, mirror: 1, slicing: 1, wind: 1 },
critRatio: 2,
onEffectiveness(typeMod, target, type, move) {
return typeMod + this.dex.getEffectiveness('Dragon', type);
},
onModifyMove(move, pokemon, target) {
if (pokemon.getStat('atk') > pokemon.getStat('spa')) {
move.overrideOffensiveStat = 'atk';
}
},
onTryMove(attacker, defender, move) {
if (attacker.removeVolatile(move.id)) {
this.attrLastMove('[still]');
this.add('-anim', attacker, 'Signal Beam', defender);
this.add('-anim', attacker, 'Twister', defender);
this.add('-anim', attacker, 'Psycho Cut', defender);
return;
}
this.add('-anim', attacker, 'Tailwind', attacker);
this.add('-message', `${attacker.name} whipped up an intense whirlwind and began to glow a vivine green!`);
if (attacker.getItem().isBerry) {
attacker.eatItem(true);
this.heal(attacker.maxhp / 4, attacker);
}
if (['sunnyday', 'desolateland'].includes(attacker.effectiveWeather())) {
this.attrLastMove('[still]');
this.add('-anim', attacker, 'Signal Beam', defender);
this.add('-anim', attacker, 'Twister', defender);
this.add('-anim', attacker, 'Psycho Cut', defender);
return;
}
if (!this.runEvent('ChargeMove', attacker, defender, move)) {
return;
}
attacker.addVolatile('twoturnmove', defender);
return null;
},
secondary: null,
target: "normal",
type: "Flying",
},
// Waves
torrentialdrain: {
accuracy: 100,
basePower: 60,
category: "Special",
shortDesc: "Recovers 50% of damage dealt.",
desc: "The user recovers 1/2 the HP lost by the target, rounded half up.",
name: "Torrential Drain",
pp: 10,
priority: 0,
flags: { protect: 1, mirror: 1, heal: 1, metronome: 1 },
drain: [1, 2],
secondary: null,
target: "allAdjacent",
type: "Water",
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Aqua Ring', source);
this.add('-anim', source, 'Origin Pulse', target);
this.add('-anim', source, 'Parabolic Charge', target);
},
},
// WigglyTree
perfectmimic: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Endure + Me First. Copied move hits off Atk.",
desc: "Nearly always moves first. The user uses the move the target chose for use this turn against it, if possible, with its power multiplied by 1.5. The move must be a damaging move usable by Me First. The user also activates the Endure effect on itself, preventing it from falling below 1 HP through direct attacks this turn. Ignores the target's substitute for the purpose of copying the move. The move will fail entirely if the user did not move first this turn, or if the target switched out. If the target would use a move not usable by Me First, the Endure effect still occurs. This move has an increasing chance of failing when used in succession.",
name: "Perfect Mimic",
gen: 9,
pp: 10,
priority: 4,
flags: {},
volatileStatus: 'perfectmimic',
onTryMove() {
this.attrLastMove('[anim] Endure');
},
onDisableMove(pokemon) {
if (pokemon.lastMove?.id === 'perfectmimic') pokemon.disableMove('perfectmimic');
},
condition: {
duration: 1,
onStart(target) {
this.add('-singleturn', target, 'move: Endure');
},
onDamagePriority: -10,
onDamage(damage, target, source, effect) {
if (effect?.effectType === 'Move') {
this.effectState.move = effect.id;
if (damage >= target.hp) {
this.add('-activate', target, 'move: Endure');
return target.hp - 1;
}
}
},
onSourceAfterMove(target, source) {
if (target === this.effectState.target || source !== this.effectState.target) return;
if (!target.hp || !this.effectState.move) return;
const move = this.dex.getActiveMove(this.effectState.move);
if (move.isZ || move.isMax || move.category === 'Status') return;
this.add('-message', source.name + ' tried to copy the move!');
this.add('-anim', source, "Me First", target);
move.overrideOffensiveStat = 'atk';
this.actions.useMove(move, source, { target });
delete this.effectState.move;
},
onBasePowerPriority: 12,
onBasePower() {
return this.chainModify(1.5);
},
},
secondary: null,
target: "self",
type: "Normal",
},
// XpRienzo
scorchingtruth: {
accuracy: 100,
basePower: 80,
category: "Special",
desc: "Damage is doubled if this move is not very effective against the target.",
shortDesc: "Deals 2x damage with resisted hits.",
name: "Scorching Truth",
gen: 9,
pp: 15,
priority: 0,
flags: { protect: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Focus Energy', source);
this.add('-anim', source, 'Fusion Flare', target);
},
onBasePower(basePower, source, target, move) {
if (target.runEffectiveness(move) < 0) {
this.debug(`Scorching truth resisted buff`);
return this.chainModify(2);
}
},
secondary: null,
target: "normal",
type: "Fire",
},
// xy01
poisonouswind: {
accuracy: true,
basePower: 0,
category: "Status",
name: "Poisonous Wind",
shortDesc: "Badly poisons the foe and forces them out.",
desc: "Badly poisons the target. If the infliction of status is successful, the target is forced to switch out and be replaced with a random unfainted ally. Fails if the target is the last unfainted Pokemon in its party, or if the target used Ingrain previously or has the Suction Cups Ability. This move will fail entirely if the target has a non-volatile status condition.",
pp: 10,
priority: -6,
flags: { reflectable: 1, mirror: 1, bypasssub: 1, allyanim: 1, metronome: 1, noassist: 1, failcopycat: 1, wind: 1 },
forceSwitch: true,
status: 'tox',
secondary: null,
target: "normal",
type: "Poison",
},
// yeet dab xd
topkek: {
accuracy: 100,
basePower: 70,
category: "Physical",
shortDesc: "Gives foe Miracle Seed. Cycles Treasure Bag.",
desc: "If the target is holding an item that can be removed from it, it is replaced with a Miracle Seed. Cycles Treasure Bag.",
name: "top kek",
pp: 15,
priority: 0,
flags: { contact: 1, protect: 1, mirror: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, "Thief", target);
this.add('-anim', source, "Trick", target);
this.add('-anim', source, "Nasty Plot", source);
},
onAfterHit(target, source, move) {
if (source.hp) {
if (!target.hasItem('Miracle Seed')) {
const item = target.takeItem();
if (item) {
this.add('-enditem', target, item.name, '[from] move: top kek', `[of] ${source}`);
target.setItem('Miracle Seed', source, move);
}
}
}
},
secondary: null,
target: "normal",
type: "Dark",
},
// Yellow Paint
whiteout: {
accuracy: 85,
basePower: 70,
category: "Special",
shortDesc: "Sets up Snow. Target's ability becomes Normalize.",
desc: "If this move is successful, the current weather becomes snow, boosting the Defense of Ice-types by 1.5x for 5 turns, and the target's ability is replaced with Normalize.",
name: "Whiteout",
pp: 5,
priority: 0,
flags: { protect: 1, mirror: 1, bullet: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, "Weather Ball", target);
this.add('-anim', source, "Snowscape", source);
},
onHit(target, source) {
this.field.setWeather('snowscape');
if (target.setAbility('normalize')) {
this.add('-ability', target, 'Normalize', '[from] move: Whiteout');
}
this.add(`c:|${getName((source.illusion || source).name)}|A blank canvas.`);
},
secondary: null,
target: "normal",
type: "Ice",
},
// yuki
tagyoureit: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Switch out; replacement: Focus Energy, +1 Spe.",
desc: "The user switches out even if it is trapped and is replaced immediately by a selected party member. The replacement's Speed is boosted by 1 stage, and its critical hit rate is boosted by 2 stages. The user does not switch out if there are no unfainted party members.",
name: "Tag, You're It!",
pp: 5,
priority: 0,
flags: {},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, "Baton Pass", target);
},
slotCondition: 'tagyoureit',
condition: {
onSwitchIn(target) {
if (target && !target.fainted) {
this.add('-anim', target, "Baton Pass", target);
target.addVolatile('focusenergy');
this.boost({ spe: 1 }, target, this.effectState.source, this.dex.getActiveMove('tagyoureit'));
target.side.removeSlotCondition(target, 'tagyoureit');
}
},
},
selfSwitch: true,
secondary: null,
target: "self",
type: "Dark",
},
// YveltalNL
highground: {
accuracy: 100,
basePower: 90,
category: "Special",
shortDesc: "If the user is taller than the target, +1 SpA.",
desc: "If the user's height as listed on its Pokedex data is greater than the target's height, the user's Special Attack is boosted by 1 stage.",
name: "High Ground",
pp: 10,
priority: 0,
flags: { protect: 1, mirror: 1 },
secondary: {
chance: 100,
onHit(target, source, move) {
if (this.dex.species.get(source.species).heightm > this.dex.species.get(target.species).heightm) {
this.boost({ spa: 1 }, source);
}
},
},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, "Dragon Ascent", target);
this.add('-anim', source, "Scorching Sands", target);
},
target: "normal",
type: "Ground",
},
// Zalm
dudurafish: {
accuracy: true,
basePower: 0,
category: "Status",
shortDesc: "Heals 25% HP and sets Aqua Ring.",
desc: "The user recovers 1/4 of its maximum HP and gains the Aqua Ring effect, healing it for 1/16th of its maximum HP at the end of each turn. The healing effect will still occur if the user already has Aqua Ring active.",
name: "Dud ur a fish",
pp: 5,
priority: 0,
flags: { heal: 1, snatch: 1 },
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', target, "Recover", source);
this.add('-anim', target, "Aqua Ring", source);
},
onHit(pokemon) {
let didSomething: boolean;
if (pokemon.hasType("Water")) {
didSomething = !!this.heal(this.modify(pokemon.baseMaxhp, 1, 2));
didSomething = pokemon.cureStatus() || didSomething;
} else {
didSomething = !!this.heal(this.modify(pokemon.baseMaxhp, 1, 4));
}
didSomething = pokemon.addVolatile('aquaring') || didSomething;
return didSomething;
},
secondary: null,
target: "self",
type: "Water",
},
// za
shitpost: {
accuracy: 100,
basePower: 0,
category: "Status",
name: "Shitpost",
shortDesc: "Confuses and paralyzes the target.",
pp: 20,
priority: 0,
flags: { protect: 1, reflectable: 1 },
onTryMove(pokemon, target, move) {
this.attrLastMove('[still]');
if (this.randomChance(1, 256)) {
this.add('-fail', pokemon);
this.add('-message', '(In Gen 1, moves with 100% accuracy have a 1/256 chance to miss.)');
return false;
}
},
onPrepareHit(target, source) {
this.add('-anim', source, "Hex", target);
},
onHit(target, source, move) {
if (!target.volatiles['confusion']) {
target.addVolatile('confusion', source, move);
}
target.trySetStatus('par', source, move);
},
secondary: null,
target: "normal",
type: "Normal",
},
// Zarel
tsignore: {
accuracy: 100,
basePower: 100,
category: "Special",
shortDesc: "Bypasses everything. Uses Higher Atk.",
desc: "This move will bypass any negative effect on the field or the target that would impede its ability to deal damage, including type-based immunities. This move is physical if the user's Attack is higher than its Special Attack.",
name: "@ts-ignore",
gen: 9,
pp: 5,
priority: 0,
flags: {},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, "Conversion", source);
this.add('-anim', source, "Techno Blast", target);
},
onModifyMove(move, pokemon, target) {
if (pokemon.getStat('atk', false, true) > pokemon.getStat('spa', false, true)) {
move.category = 'Physical';
}
},
onModifyType(move, pokemon) {
if (pokemon.species.baseSpecies === 'Meloetta' && pokemon.terastallized) {
move.type = 'Stellar';
}
},
ignoreAbility: true,
ignoreImmunity: true,
ignoreDefensive: true,
ignoreNegativeOffensive: true,
breaksProtect: true,
ignoreAccuracy: true,
secondary: null,
target: "normal",
type: "Normal",
},
// zee
solarsummon: {
accuracy: 100,
basePower: 0,
category: "Status",
shortDesc: "Sets up Sunny Day and creates a Substitute.",
desc: "Sets sun, powering up Fire-type moves and weakening Water-type moves for 5 turns. The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. If one part of this move is already in effect, the other part will still be attempted.",
name: "Solar Summon",
gen: 9,
pp: 5,
priority: 0,
flags: {},
onPrepareHit() {
this.attrLastMove('[anim] Sunny Day');
},
onHit(pokemon) {
let success = false;
if (this.field.setWeather('sunnyday')) success = true;
if (!pokemon.volatiles['substitute']) {
if (pokemon.hp <= pokemon.maxhp / 4 || pokemon.maxhp === 1) { // Shedinja clause
this.add('-fail', pokemon, 'move: Substitute', '[weak]');
} else {
pokemon.addVolatile('substitute');
this.directDamage(pokemon.maxhp / 4);
success = true;
}
}
return success;
},
secondary: null,
target: "self",
type: "Fire",
},
// zoro
darkestnight: {
accuracy: 100,
basePower: 95,
category: "Physical",
shortDesc: "Literally just Foul Play.",
desc: "Damage is calculated using the target's Attack stat, including stat stage changes. The user's Ability, item, and burn are used as normal.",
name: "Darkest Night",
pp: 15,
priority: 0,
flags: { contact: 1, protect: 1, mirror: 1, metronome: 1 },
overrideOffensivePokemon: 'target',
secondary: null,
target: "normal",
type: "Dark",
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, "Foul Play", target);
},
},
// Modified moves
bleakwindstorm: {
inherit: true,
onModifyMove(move, pokemon, target) {
if (target && ['raindance', 'primordialsea', 'stormsurge'].includes(target.effectiveWeather())) {
move.accuracy = true;
}
},
},
dig: {
inherit: true,
condition: {
duration: 2,
onImmunity(type, pokemon) {
if (type === 'sandstorm' || type === 'deserteddunes' || type === 'hail') return false;
},
onInvulnerability(target, source, move) {
if (['earthquake', 'magnitude'].includes(move.id)) {
return;
}
return false;
},
onSourceModifyDamage(damage, source, target, move) {
if (move.id === 'earthquake' || move.id === 'magnitude') {
return this.chainModify(2);
}
},
},
},
dive: {
inherit: true,
condition: {
duration: 2,
onImmunity(type, pokemon) {
if (type === 'sandstorm' || type === 'deserteddunes' || type === 'hail') return false;
},
onInvulnerability(target, source, move) {
if (['surf', 'whirlpool'].includes(move.id)) {
return;
}
return false;
},
onSourceModifyDamage(damage, source, target, move) {
if (move.id === 'surf' || move.id === 'whirlpool') {
return this.chainModify(2);
}
},
},
},
dreameater: {
inherit: true,
onTryImmunity(target) {
return target.status === 'slp' || target.hasAbility(['comatose', 'mensiscage']);
},
},
electroshot: {
inherit: true,
onTryMove(attacker, defender, move) {
if (attacker.removeVolatile(move.id)) {
return;
}
this.add('-prepare', attacker, move.name);
this.boost({ spa: 1 }, attacker, attacker, move);
if (['raindance', 'primordialsea', 'stormsurge'].includes(attacker.effectiveWeather())) {
this.attrLastMove('[still]');
this.addMove('-anim', attacker, move.name, defender);
return;
}
if (!this.runEvent('ChargeMove', attacker, defender, move)) {
return;
}
attacker.addVolatile('twoturnmove', defender);
return null;
},
},
hex: {
inherit: true,
basePowerCallback(pokemon, target, move) {
if (target.status || target.hasAbility(['comatose', 'mensiscage'])) {
this.debug('BP doubled from status condition');
return move.basePower * 2;
}
return move.basePower;
},
},
hurricane: {
inherit: true,
onModifyMove(move, pokemon, target) {
switch (target?.effectiveWeather()) {
case 'raindance':
case 'primordialsea':
case 'stormsurge':
move.accuracy = true;
break;
case 'sunnyday':
case 'desolateland':
move.accuracy = 50;
break;
}
},
},
infernalparade: {
inherit: true,
basePowerCallback(pokemon, target, move) {
if (target.status || target.hasAbility(['comatose', 'mensiscage'])) return move.basePower * 2;
return move.basePower;
},
},
ingrain: {
inherit: true,
condition: {
onStart(pokemon) {
this.add('-start', pokemon, 'move: Ingrain');
},
onResidualOrder: 7,
onResidual(pokemon) {
this.heal(pokemon.baseMaxhp / 16);
},
onTrapPokemon(pokemon) {
pokemon.tryTrap();
},
// groundedness implemented in battle.engine.js:BattlePokemon#isGrounded
onDragOut(pokemon, source, move) {
if (source && this.queue.willMove(source)?.moveid === 'protectoroftheskies') return;
this.add('-activate', pokemon, 'move: Ingrain');
return null;
},
},
},
mistyterrain: {
inherit: true,
condition: {
duration: 5,
durationCallback(source, effect) {
if (source?.hasItem('terrainextender')) {
return 8;
}
return 5;
},
onSetStatus(status, target, source, effect) {
if (!target.isGrounded() || target.isSemiInvulnerable()) return;
if (effect && ((effect as Move).status || effect.id === 'yawn')) {
this.add('-activate', target, 'move: Misty Terrain');
}
return false;
},
onTryHitPriority: 4,
onTryHit(target, source, effect) {
if (effect && effect.name === "Puffy Spiky Destruction") {
this.add('-activate', target, 'move: Misty Terrain');
return null;
}
},
onTryAddVolatile(status, target, source, effect) {
if (!target.isGrounded() || target.isSemiInvulnerable()) return;
if (status.id === 'confusion') {
if (effect.effectType === 'Move' && !effect.secondaries) this.add('-activate', target, 'move: Misty Terrain');
return null;
}
},
onBasePowerPriority: 6,
onBasePower(basePower, attacker, defender, move) {
if (move.type === 'Dragon' && defender.isGrounded() && !defender.isSemiInvulnerable()) {
this.debug('misty terrain weaken');
return this.chainModify(0.5);
}
},
onFieldStart(field, source, effect) {
if (effect?.effectType === 'Ability') {
this.add('-fieldstart', 'move: Misty Terrain', '[from] ability: ' + effect.name, `[of] ${source}`);
} else {
this.add('-fieldstart', 'move: Misty Terrain');
}
},
onFieldResidualOrder: 27,
onFieldResidualSubOrder: 7,
onFieldEnd() {
this.add('-fieldend', 'Misty Terrain');
},
},
},
moonlight: {
inherit: true,
onHit(pokemon) {
let factor = 0.5;
switch (pokemon.effectiveWeather()) {
case 'sunnyday':
case 'desolateland':
factor = 0.667;
break;
case 'raindance':
case 'primordialsea':
case 'stormsurge':
case 'sandstorm':
case 'deserteddunes':
case 'hail':
case 'snowscape':
factor = 0.25;
break;
}
const success = !!this.heal(this.modify(pokemon.maxhp, factor));
if (!success) {
this.add('-fail', pokemon, 'heal');
return this.NOT_FAIL;
}
return success;
},
},
morningsun: {
inherit: true,
onHit(pokemon) {
let factor = 0.5;
switch (pokemon.effectiveWeather()) {
case 'sunnyday':
case 'desolateland':
factor = 0.667;
break;
case 'raindance':
case 'primordialsea':
case 'stormsurge':
case 'sandstorm':
case 'deserteddunes':
case 'hail':
case 'snowscape':
factor = 0.25;
break;
}
const success = !!this.heal(this.modify(pokemon.maxhp, factor));
if (!success) {
this.add('-fail', pokemon, 'heal');
return this.NOT_FAIL;
}
return success;
},
},
nightmare: {
inherit: true,
condition: {
noCopy: true,
onStart(pokemon) {
if (pokemon.status !== 'slp' && !pokemon.hasAbility(['comatose', 'mensiscage'])) {
return false;
}
this.add('-start', pokemon, 'Nightmare');
},
onResidualOrder: 11,
onResidual(pokemon) {
this.damage(pokemon.baseMaxhp / 4);
},
},
},
psychicterrain: {
inherit: true,
condition: {
duration: 5,
durationCallback(source, effect) {
if (source?.hasItem('terrainextender')) {
return 8;
}
return 5;
},
onTryHitPriority: 4,
onTryHit(target, source, effect) {
if (effect && (effect.priority <= 0.1 || effect.target === 'self') && effect.name !== "Puffy Spiky Destruction") {
return;
}
if (target.isSemiInvulnerable() || target.isAlly(source)) return;
if (!target.isGrounded()) {
const baseMove = this.dex.moves.get(effect.id);
if (baseMove.priority > 0) {
this.hint("Psychic Terrain doesn't affect Pokémon immune to Ground.");
}
return;
}
this.add('-activate', target, 'move: Psychic Terrain');
return null;
},
onBasePowerPriority: 6,
onBasePower(basePower, attacker, defender, move) {
if (move.type === 'Psychic' && attacker.isGrounded() && !attacker.isSemiInvulnerable()) {
this.debug('psychic terrain boost');
return this.chainModify([5325, 4096]);
}
},
onFieldStart(field, source, effect) {
if (effect?.effectType === 'Ability') {
this.add('-fieldstart', 'move: Psychic Terrain', '[from] ability: ' + effect.name, `[of] ${source}`);
} else {
this.add('-fieldstart', 'move: Psychic Terrain');
}
},
onFieldResidualOrder: 27,
onFieldResidualSubOrder: 7,
onFieldEnd() {
this.add('-fieldend', 'move: Psychic Terrain');
},
},
},
rest: {
inherit: true,
onTry(source) {
if (source.status === 'slp' || source.hasAbility(['comatose', 'mensiscage'])) return false;
if (source.hp === source.maxhp) {
this.add('-fail', source, 'heal');
return null;
}
if (source.hasAbility(['insomnia', 'vitalspirit'])) {
this.add('-fail', source, '[from] ability: ' + source.getAbility().name, `[of] ${source}`);
return null;
}
},
},
sandsearstorm: {
inherit: true,
onModifyMove(move, pokemon, target) {
if (target && ['raindance', 'primordialsea', 'stormsurge'].includes(target.effectiveWeather())) {
move.accuracy = true;
}
},
},
shoreup: {
inherit: true,
onHit(pokemon) {
let factor = 0.5;
if (this.field.isWeather(['sandstorm', 'deserteddunes'])) {
factor = 0.667;
}
const success = !!this.heal(this.modify(pokemon.maxhp, factor));
if (!success) {
this.add('-fail', pokemon, 'heal');
return this.NOT_FAIL;
}
return success;
},
},
sleeptalk: {
inherit: true,
onTry(source) {
return source.status === 'slp' || source.hasAbility(['comatose', 'mensiscage']);
},
},
snore: {
inherit: true,
onTry(source) {
return source.status === 'slp' || source.hasAbility(['comatose', 'mensiscage']);
},
},
solarbeam: {
inherit: true,
onBasePower(basePower, pokemon, target) {
const weakWeathers = ['raindance', 'primordialsea', 'stormsurge', 'sandstorm', 'deserteddunes', 'hail', 'snowscape'];
if (weakWeathers.includes(pokemon.effectiveWeather())) {
this.debug('weakened by weather');
return this.chainModify(0.5);
}
},
},
solarblade: {
inherit: true,
onBasePower(basePower, pokemon, target) {
const weakWeathers = ['raindance', 'primordialsea', 'stormsurge', 'sandstorm', 'deserteddunes', 'hail', 'snowscape'];
if (weakWeathers.includes(pokemon.effectiveWeather())) {
this.debug('weakened by weather');
return this.chainModify(0.5);
}
},
},
stickyweb: {
inherit: true,
condition: {
onSideStart(side) {
this.add('-sidestart', side, 'move: Sticky Web');
},
onSwitchIn(pokemon) {
if (!pokemon.isGrounded() || pokemon.hasItem('heavydutyboots') || pokemon.hasAbility('eternalgenerator')) return;
this.add('-activate', pokemon, 'move: Sticky Web');
this.boost({ spe: -1 }, pokemon, pokemon.side.foe.active[0], this.dex.getActiveMove('stickyweb'));
},
},
},
synthesis: {
inherit: true,
onHit(pokemon) {
let factor = 0.5;
switch (pokemon.effectiveWeather()) {
case 'sunnyday':
case 'desolateland':
factor = 0.667;
break;
case 'raindance':
case 'primordialsea':
case 'stormsurge':
case 'sandstorm':
case 'deserteddunes':
case 'hail':
case 'snowscape':
factor = 0.25;
break;
}
const success = !!this.heal(this.modify(pokemon.maxhp, factor));
if (!success) {
this.add('-fail', pokemon, 'heal');
return this.NOT_FAIL;
}
return success;
},
},
thunder: {
inherit: true,
onModifyMove(move, pokemon, target) {
switch (target?.effectiveWeather()) {
case 'raindance':
case 'primordialsea':
case 'stormsurge':
move.accuracy = true;
break;
case 'sunnyday':
case 'desolateland':
move.accuracy = 50;
break;
}
},
},
wakeupslap: {
inherit: true,
basePowerCallback(pokemon, target, move) {
if (target.status === 'slp' || target.hasAbility(['comatose', 'mensiscage'])) {
this.debug('BP doubled on sleeping target');
return move.basePower * 2;
}
return move.basePower;
},
},
weatherball: {
inherit: true,
onModifyType(move, pokemon) {
switch (pokemon.effectiveWeather()) {
case 'sunnyday':
case 'desolateland':
move.type = 'Fire';
break;
case 'raindance':
case 'primordialsea':
case 'stormsurge':
move.type = 'Water';
break;
case 'sandstorm':
case 'deserteddunes':
move.type = 'Rock';
break;
case 'hail':
case 'snowscape':
move.type = 'Ice';
break;
}
},
onModifyMove(move, pokemon) {
switch (pokemon.effectiveWeather()) {
case 'sunnyday':
case 'desolateland':
case 'raindance':
case 'primordialsea':
case 'stormsurge':
case 'sandstorm':
case 'deserteddunes':
case 'hail':
case 'snowscape':
move.basePower *= 2;
break;
}
this.debug(`BP: ${move.basePower}`);
},
},
wildboltstorm: {
inherit: true,
onModifyMove(move, pokemon, target) {
if (target && ['raindance', 'primordialsea', 'stormsurge'].includes(target.effectiveWeather())) {
move.accuracy = true;
}
},
},
gravity: {
inherit: true,
condition: {
duration: 5,
durationCallback(source, effect) {
if (source?.hasAbility('persistent')) {
this.add('-activate', source, 'ability: Persistent', '[move] Gravity');
return 7;
}
return 5;
},
onFieldStart(target, source) {
if (source?.hasAbility('persistent')) {
this.add('-fieldstart', 'move: Gravity', '[persistent]');
} else {
this.add('-fieldstart', 'move: Gravity');
}
for (const pokemon of this.getAllActive()) {
let applies = false;
if (pokemon.removeVolatile('bounce') || pokemon.removeVolatile('fly')) {
applies = true;
this.queue.cancelMove(pokemon);
pokemon.removeVolatile('twoturnmove');
}
if (pokemon.volatiles['skydrop']) {
applies = true;
this.queue.cancelMove(pokemon);
if (pokemon.volatiles['skydrop'].source) {
this.add('-end', pokemon.volatiles['twoturnmove'].source, 'Sky Drop', '[interrupt]');
}
pokemon.removeVolatile('skydrop');
pokemon.removeVolatile('twoturnmove');
}
if (pokemon.volatiles['magnetrise']) {
applies = true;
delete pokemon.volatiles['magnetrise'];
}
if (pokemon.volatiles['riseabove']) {
applies = true;
delete pokemon.volatiles['riseabove'];
}
if (pokemon.volatiles['telekinesis']) {
applies = true;
delete pokemon.volatiles['telekinesis'];
}
if (applies) this.add('-activate', pokemon, 'move: Gravity');
}
},
onModifyAccuracy(accuracy) {
if (typeof accuracy !== 'number') return;
return this.chainModify([6840, 4096]);
},
onDisableMove(pokemon) {
for (const moveSlot of pokemon.moveSlots) {
if (this.dex.moves.get(moveSlot.id).flags['gravity']) {
pokemon.disableMove(moveSlot.id);
}
}
},
// groundedness implemented in battle.engine.js:BattlePokemon#isGrounded
onBeforeMovePriority: 6,
onBeforeMove(pokemon, target, move) {
if (move.flags['gravity'] && !move.isZ) {
this.add('cant', pokemon, 'move: Gravity', move);
return false;
}
},
onModifyMove(move, pokemon, target) {
if (move.flags['gravity'] && !move.isZ) {
this.add('cant', pokemon, 'move: Gravity', move);
return false;
}
},
onFieldResidualOrder: 27,
onFieldResidualSubOrder: 2,
onFieldEnd() {
this.add('-fieldend', 'move: Gravity');
},
},
},
magnetrise: {
inherit: true,
condition: {
duration: 5,
durationCallback(target, source, effect) {
if (effect?.name === 'Antidote') return 3;
return 5;
},
onStart(target) {
this.add('-start', target, 'Magnet Rise');
},
onImmunity(type) {
if (type === 'Ground') return false;
},
onResidualOrder: 18,
onEnd(target) {
this.add('-end', target, 'Magnet Rise');
},
},
},
// Try playing Staff Bros with dynamax clause and see what happens
supermetronome: {
accuracy: true,
basePower: 0,
category: "Status",
desc: "Uses 2-5 random moves. Does not include 1-Base Power Z-Moves, Super Metronome, Metronome, or 10-Base Power Max moves.",
shortDesc: "Uses 2-5 random moves.",
name: "Super Metronome",
isNonstandard: "Custom",
pp: 100,
noPPBoosts: true,
priority: 0,
flags: {},
onTryMove(pokemon) {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, "Metronome", source);
},
onHit(target, source, effect) {
const moves = [];
for (const move of this.dex.moves.all()) {
if (move.realMove || move.id.includes('metronome')) continue;
// Calling 1 BP move is somewhat lame and disappointing. However,
// signature Z moves are fine, as they actually have a base power.
if (move.isZ && move.basePower === 1) continue;
if (move.gen > this.gen) continue;
if (move.isMax) continue;
moves.push(move.name);
}
let randomMove: string;
if (moves.length) {
randomMove = this.sample(moves);
} else {
return false;
}
this.actions.useMove(randomMove, target);
},
multihit: [2, 5],
secondary: null,
target: "self",
type: "???",
},
};
|