@pkmn/sim 0.7.50 → 0.7.51

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (77) hide show
  1. package/build/cjs/config/formats.js +320 -55
  2. package/build/cjs/config/formats.js.map +1 -1
  3. package/build/cjs/data/abilities.js +114 -12
  4. package/build/cjs/data/abilities.js.map +1 -1
  5. package/build/cjs/data/formats-data.js +232 -298
  6. package/build/cjs/data/formats-data.js.map +1 -1
  7. package/build/cjs/data/items.js +83 -2
  8. package/build/cjs/data/items.js.map +1 -1
  9. package/build/cjs/data/learnsets.js +14807 -9342
  10. package/build/cjs/data/learnsets.js.map +1 -1
  11. package/build/cjs/data/legality.js +10 -10
  12. package/build/cjs/data/legality.js.map +1 -1
  13. package/build/cjs/data/mods/gen8/abilities.js +1 -1
  14. package/build/cjs/data/mods/gen8/abilities.js.map +1 -1
  15. package/build/cjs/data/mods/gen8/moves.js +18 -22
  16. package/build/cjs/data/mods/gen8/moves.js.map +1 -1
  17. package/build/cjs/data/mods/gen8/pokedex.js +16 -0
  18. package/build/cjs/data/mods/gen8/pokedex.js.map +1 -1
  19. package/build/cjs/data/moves.js +92 -13
  20. package/build/cjs/data/moves.js.map +1 -1
  21. package/build/cjs/data/pokedex.js +273 -6
  22. package/build/cjs/data/pokedex.js.map +1 -1
  23. package/build/cjs/data/text/abilities.js +36 -0
  24. package/build/cjs/data/text/abilities.js.map +1 -1
  25. package/build/cjs/data/text/items.js +28 -0
  26. package/build/cjs/data/text/items.js.map +1 -1
  27. package/build/cjs/data/text/moves.js +20 -0
  28. package/build/cjs/data/text/moves.js.map +1 -1
  29. package/build/cjs/sim/battle-actions.js +9 -1
  30. package/build/cjs/sim/battle-actions.js.map +1 -1
  31. package/build/cjs/sim/dex-species.js.map +1 -1
  32. package/build/cjs/sim/dex.js +2 -0
  33. package/build/cjs/sim/dex.js.map +1 -1
  34. package/build/cjs/sim/pokemon.js +5 -2
  35. package/build/cjs/sim/pokemon.js.map +1 -1
  36. package/build/cjs/sim/team-validator.js +71 -17
  37. package/build/cjs/sim/team-validator.js.map +1 -1
  38. package/build/esm/config/formats.mjs +320 -55
  39. package/build/esm/config/formats.mjs.map +1 -1
  40. package/build/esm/data/abilities.mjs +114 -12
  41. package/build/esm/data/abilities.mjs.map +1 -1
  42. package/build/esm/data/formats-data.mjs +232 -298
  43. package/build/esm/data/formats-data.mjs.map +1 -1
  44. package/build/esm/data/items.mjs +83 -2
  45. package/build/esm/data/items.mjs.map +1 -1
  46. package/build/esm/data/learnsets.mjs +14807 -9342
  47. package/build/esm/data/learnsets.mjs.map +1 -1
  48. package/build/esm/data/legality.mjs +10 -10
  49. package/build/esm/data/legality.mjs.map +1 -1
  50. package/build/esm/data/mods/gen8/abilities.mjs +1 -1
  51. package/build/esm/data/mods/gen8/abilities.mjs.map +1 -1
  52. package/build/esm/data/mods/gen8/moves.mjs +18 -22
  53. package/build/esm/data/mods/gen8/moves.mjs.map +1 -1
  54. package/build/esm/data/mods/gen8/pokedex.mjs +16 -0
  55. package/build/esm/data/mods/gen8/pokedex.mjs.map +1 -1
  56. package/build/esm/data/moves.mjs +92 -13
  57. package/build/esm/data/moves.mjs.map +1 -1
  58. package/build/esm/data/pokedex.mjs +273 -6
  59. package/build/esm/data/pokedex.mjs.map +1 -1
  60. package/build/esm/data/text/abilities.mjs +36 -0
  61. package/build/esm/data/text/abilities.mjs.map +1 -1
  62. package/build/esm/data/text/items.mjs +28 -0
  63. package/build/esm/data/text/items.mjs.map +1 -1
  64. package/build/esm/data/text/moves.mjs +20 -0
  65. package/build/esm/data/text/moves.mjs.map +1 -1
  66. package/build/esm/sim/battle-actions.mjs +9 -1
  67. package/build/esm/sim/battle-actions.mjs.map +1 -1
  68. package/build/esm/sim/dex-species.mjs.map +1 -1
  69. package/build/esm/sim/dex.mjs +2 -0
  70. package/build/esm/sim/dex.mjs.map +1 -1
  71. package/build/esm/sim/pokemon.mjs +5 -2
  72. package/build/esm/sim/pokemon.mjs.map +1 -1
  73. package/build/esm/sim/team-validator.mjs +71 -17
  74. package/build/esm/sim/team-validator.mjs.map +1 -1
  75. package/build/types/sim/dex-species.d.ts +2 -0
  76. package/build/types/sim/team-validator.d.ts +8 -7
  77. package/package.json +2 -2
@@ -170,13 +170,11 @@ exports.FormatsData = {
170
170
  natDexTier: "RU",
171
171
  },
172
172
  ekans: {
173
- isNonstandard: "Past",
174
- tier: "Illegal",
175
- natDexTier: "LC",
173
+ tier: "LC",
176
174
  },
177
175
  arbok: {
178
- isNonstandard: "Past",
179
- tier: "Illegal",
176
+ tier: "OU",
177
+ doublesTier: "DOU",
180
178
  natDexTier: "RU",
181
179
  },
182
180
  pichu: {
@@ -188,7 +186,7 @@ exports.FormatsData = {
188
186
  },
189
187
  pikachu: {
190
188
  tier: "(PU)",
191
- doublesTier: "NFE",
189
+ doublesTier: "(DUU)",
192
190
  natDexTier: "RU",
193
191
  },
194
192
  pikachucosplay: {
@@ -274,23 +272,19 @@ exports.FormatsData = {
274
272
  natDexTier: "RU",
275
273
  },
276
274
  sandshrew: {
277
- isNonstandard: "Past",
278
- tier: "Illegal",
279
- natDexTier: "LC",
275
+ tier: "LC",
280
276
  },
281
277
  sandshrewalola: {
282
- isNonstandard: "Past",
283
- tier: "Illegal",
284
- natDexTier: "LC",
278
+ tier: "LC",
285
279
  },
286
280
  sandslash: {
287
- isNonstandard: "Past",
288
- tier: "Illegal",
281
+ tier: "OU",
282
+ doublesTier: "DOU",
289
283
  natDexTier: "RU",
290
284
  },
291
285
  sandslashalola: {
292
- isNonstandard: "Past",
293
- tier: "Illegal",
286
+ tier: "OU",
287
+ doublesTier: "DOU",
294
288
  natDexTier: "RU",
295
289
  },
296
290
  nidoranf: {
@@ -324,38 +318,30 @@ exports.FormatsData = {
324
318
  natDexTier: "RU",
325
319
  },
326
320
  cleffa: {
327
- isNonstandard: "Past",
328
- tier: "Illegal",
329
- natDexTier: "LC",
321
+ tier: "LC",
330
322
  },
331
323
  clefairy: {
332
- isNonstandard: "Past",
333
- tier: "Illegal",
334
- natDexTier: "NFE",
324
+ tier: "NFE",
335
325
  },
336
326
  clefable: {
337
- isNonstandard: "Past",
338
- tier: "Illegal",
327
+ tier: "OU",
328
+ doublesTier: "DOU",
339
329
  natDexTier: "UU",
340
330
  },
341
331
  vulpix: {
342
- isNonstandard: "Past",
343
- tier: "Illegal",
344
- natDexTier: "LC",
332
+ tier: "NFE",
345
333
  },
346
334
  vulpixalola: {
347
- isNonstandard: "Past",
348
- tier: "Illegal",
349
- natDexTier: "LC",
335
+ tier: "NFE",
350
336
  },
351
337
  ninetales: {
352
- isNonstandard: "Past",
353
- tier: "Illegal",
338
+ tier: "OU",
339
+ doublesTier: "DOU",
354
340
  natDexTier: "RU",
355
341
  },
356
342
  ninetalesalola: {
357
- isNonstandard: "Past",
358
- tier: "Illegal",
343
+ tier: "OU",
344
+ doublesTier: "DOU",
359
345
  natDexTier: "RU",
360
346
  },
361
347
  igglybuff: {
@@ -499,23 +485,19 @@ exports.FormatsData = {
499
485
  natDexTier: "UU",
500
486
  },
501
487
  poliwag: {
502
- isNonstandard: "Past",
503
- tier: "Illegal",
504
- natDexTier: "LC",
488
+ tier: "LC",
505
489
  },
506
490
  poliwhirl: {
507
- isNonstandard: "Past",
508
- tier: "Illegal",
509
- natDexTier: "NFE",
491
+ tier: "NFE",
510
492
  },
511
493
  poliwrath: {
512
- isNonstandard: "Past",
513
- tier: "Illegal",
494
+ tier: "OU",
495
+ doublesTier: "DOU",
514
496
  natDexTier: "RU",
515
497
  },
516
498
  politoed: {
517
- isNonstandard: "Past",
518
- tier: "Illegal",
499
+ tier: "OU",
500
+ doublesTier: "DOU",
519
501
  natDexTier: "RU",
520
502
  },
521
503
  abra: {
@@ -558,18 +540,14 @@ exports.FormatsData = {
558
540
  tier: "Illegal",
559
541
  },
560
542
  bellsprout: {
561
- isNonstandard: "Past",
562
- tier: "Illegal",
563
- natDexTier: "LC",
543
+ tier: "LC",
564
544
  },
565
545
  weepinbell: {
566
- isNonstandard: "Past",
567
- tier: "Illegal",
568
- natDexTier: "NFE",
546
+ tier: "NFE",
569
547
  },
570
548
  victreebel: {
571
- isNonstandard: "Past",
572
- tier: "Illegal",
549
+ tier: "OU",
550
+ doublesTier: "DOU",
573
551
  natDexTier: "RU",
574
552
  },
575
553
  tentacool: {
@@ -583,33 +561,25 @@ exports.FormatsData = {
583
561
  natDexTier: "RU",
584
562
  },
585
563
  geodude: {
586
- isNonstandard: "Past",
587
- tier: "Illegal",
588
- natDexTier: "LC",
564
+ tier: "LC",
589
565
  },
590
566
  geodudealola: {
591
- isNonstandard: "Past",
592
- tier: "Illegal",
593
- natDexTier: "LC",
567
+ tier: "LC",
594
568
  },
595
569
  graveler: {
596
- isNonstandard: "Past",
597
- tier: "Illegal",
598
- natDexTier: "NFE",
570
+ tier: "NFE",
599
571
  },
600
572
  graveleralola: {
601
- isNonstandard: "Past",
602
- tier: "Illegal",
603
- natDexTier: "NFE",
573
+ tier: "NFE",
604
574
  },
605
575
  golem: {
606
- isNonstandard: "Past",
607
- tier: "Illegal",
576
+ tier: "OU",
577
+ doublesTier: "DOU",
608
578
  natDexTier: "RU",
609
579
  },
610
580
  golemalola: {
611
- isNonstandard: "Past",
612
- tier: "Illegal",
581
+ tier: "OU",
582
+ doublesTier: "DOU",
613
583
  natDexTier: "RU",
614
584
  },
615
585
  ponyta: {
@@ -876,18 +846,16 @@ exports.FormatsData = {
876
846
  natDexTier: "RU",
877
847
  },
878
848
  koffing: {
879
- isNonstandard: "Past",
880
- tier: "Illegal",
881
- natDexTier: "LC",
849
+ tier: "LC",
882
850
  },
883
851
  weezing: {
884
- isNonstandard: "Past",
885
- tier: "Illegal",
852
+ tier: "OU",
853
+ doublesTier: "DOU",
886
854
  natDexTier: "RU",
887
855
  },
888
856
  weezinggalar: {
889
- isNonstandard: "Past",
890
- tier: "Illegal",
857
+ tier: "OU",
858
+ doublesTier: "DOU",
891
859
  natDexTier: "RU",
892
860
  },
893
861
  rhyhorn: {
@@ -1207,13 +1175,11 @@ exports.FormatsData = {
1207
1175
  natDexTier: "RUBL",
1208
1176
  },
1209
1177
  munchlax: {
1210
- isNonstandard: "Past",
1211
- tier: "Illegal",
1212
- natDexTier: "LC",
1178
+ tier: "LC",
1213
1179
  },
1214
1180
  snorlax: {
1215
- isNonstandard: "Past",
1216
- tier: "Illegal",
1181
+ tier: "OU",
1182
+ doublesTier: "DOU",
1217
1183
  natDexTier: "RU",
1218
1184
  },
1219
1185
  snorlaxgmax: {
@@ -1328,23 +1294,19 @@ exports.FormatsData = {
1328
1294
  natDexTier: "RU",
1329
1295
  },
1330
1296
  sentret: {
1331
- isNonstandard: "Past",
1332
- tier: "Illegal",
1333
- natDexTier: "LC",
1297
+ tier: "LC",
1334
1298
  },
1335
1299
  furret: {
1336
- isNonstandard: "Past",
1337
- tier: "Illegal",
1300
+ tier: "OU",
1301
+ doublesTier: "DOU",
1338
1302
  natDexTier: "RU",
1339
1303
  },
1340
1304
  hoothoot: {
1341
- isNonstandard: "Past",
1342
- tier: "Illegal",
1343
- natDexTier: "LC",
1305
+ tier: "LC",
1344
1306
  },
1345
1307
  noctowl: {
1346
- isNonstandard: "Past",
1347
- tier: "Illegal",
1308
+ tier: "OU",
1309
+ doublesTier: "DOU",
1348
1310
  natDexTier: "RU",
1349
1311
  },
1350
1312
  ledyba: {
@@ -1358,13 +1320,11 @@ exports.FormatsData = {
1358
1320
  natDexTier: "RU",
1359
1321
  },
1360
1322
  spinarak: {
1361
- isNonstandard: "Past",
1362
- tier: "Illegal",
1363
- natDexTier: "LC",
1323
+ tier: "LC",
1364
1324
  },
1365
1325
  ariados: {
1366
- isNonstandard: "Past",
1367
- tier: "Illegal",
1326
+ tier: "OU",
1327
+ doublesTier: "DOU",
1368
1328
  natDexTier: "RU",
1369
1329
  },
1370
1330
  chinchou: {
@@ -1449,13 +1409,11 @@ exports.FormatsData = {
1449
1409
  natDexTier: "RU",
1450
1410
  },
1451
1411
  aipom: {
1452
- isNonstandard: "Past",
1453
- tier: "Illegal",
1454
- natDexTier: "LC",
1412
+ tier: "NFE",
1455
1413
  },
1456
1414
  ambipom: {
1457
- isNonstandard: "Past",
1458
- tier: "Illegal",
1415
+ tier: "OU",
1416
+ doublesTier: "DOU",
1459
1417
  natDexTier: "RU",
1460
1418
  },
1461
1419
  sunkern: {
@@ -1467,13 +1425,11 @@ exports.FormatsData = {
1467
1425
  natDexTier: "RU",
1468
1426
  },
1469
1427
  yanma: {
1470
- isNonstandard: "Past",
1471
- tier: "Illegal",
1472
- natDexTier: "LC",
1428
+ tier: "NFE",
1473
1429
  },
1474
1430
  yanmega: {
1475
- isNonstandard: "Past",
1476
- tier: "Illegal",
1431
+ tier: "OU",
1432
+ doublesTier: "DOU",
1477
1433
  natDexTier: "RU",
1478
1434
  },
1479
1435
  wooper: {
@@ -1546,13 +1502,11 @@ exports.FormatsData = {
1546
1502
  natDexTier: "RU",
1547
1503
  },
1548
1504
  gligar: {
1549
- isNonstandard: "Past",
1550
- tier: "Illegal",
1551
- natDexTier: "LC",
1505
+ tier: "NFE",
1552
1506
  },
1553
1507
  gliscor: {
1554
- isNonstandard: "Past",
1555
- tier: "Illegal",
1508
+ tier: "OU",
1509
+ doublesTier: "DOU",
1556
1510
  natDexTier: "OU",
1557
1511
  },
1558
1512
  snubbull: {
@@ -1623,32 +1577,31 @@ exports.FormatsData = {
1623
1577
  },
1624
1578
  ursaluna: {
1625
1579
  tier: "UU",
1626
- doublesTier: "DUber",
1580
+ doublesTier: "DOU",
1627
1581
  natDexTier: "Uber",
1628
1582
  },
1583
+ ursalunabloodmoon: {
1584
+ tier: "OU",
1585
+ doublesTier: "DOU",
1586
+ natDexTier: "OU",
1587
+ },
1629
1588
  slugma: {
1630
- isNonstandard: "Past",
1631
- tier: "Illegal",
1632
- natDexTier: "LC",
1589
+ tier: "LC",
1633
1590
  },
1634
1591
  magcargo: {
1635
- isNonstandard: "Past",
1636
- tier: "Illegal",
1592
+ tier: "OU",
1593
+ doublesTier: "DOU",
1637
1594
  natDexTier: "RU",
1638
1595
  },
1639
1596
  swinub: {
1640
- isNonstandard: "Past",
1641
- tier: "Illegal",
1642
- natDexTier: "LC",
1597
+ tier: "LC",
1643
1598
  },
1644
1599
  piloswine: {
1645
- isNonstandard: "Past",
1646
- tier: "Illegal",
1647
- natDexTier: "NFE",
1600
+ tier: "NFE",
1648
1601
  },
1649
1602
  mamoswine: {
1650
- isNonstandard: "Past",
1651
- tier: "Illegal",
1603
+ tier: "OU",
1604
+ doublesTier: "DOU",
1652
1605
  natDexTier: "RU",
1653
1606
  },
1654
1607
  corsola: {
@@ -1842,13 +1795,11 @@ exports.FormatsData = {
1842
1795
  natDexTier: "OU",
1843
1796
  },
1844
1797
  poochyena: {
1845
- isNonstandard: "Past",
1846
- tier: "Illegal",
1847
- natDexTier: "LC",
1798
+ tier: "LC",
1848
1799
  },
1849
1800
  mightyena: {
1850
- isNonstandard: "Past",
1851
- tier: "Illegal",
1801
+ tier: "OU",
1802
+ doublesTier: "DOU",
1852
1803
  natDexTier: "RU",
1853
1804
  },
1854
1805
  zigzagoon: {
@@ -1902,33 +1853,25 @@ exports.FormatsData = {
1902
1853
  natDexTier: "RU",
1903
1854
  },
1904
1855
  lotad: {
1905
- isNonstandard: "Past",
1906
- tier: "Illegal",
1907
- natDexTier: "LC",
1856
+ tier: "LC",
1908
1857
  },
1909
1858
  lombre: {
1910
- isNonstandard: "Past",
1911
- tier: "Illegal",
1912
- natDexTier: "NFE",
1859
+ tier: "NFE",
1913
1860
  },
1914
1861
  ludicolo: {
1915
- isNonstandard: "Past",
1916
- tier: "Illegal",
1862
+ tier: "OU",
1863
+ doublesTier: "DOU",
1917
1864
  natDexTier: "RU",
1918
1865
  },
1919
1866
  seedot: {
1920
- isNonstandard: "Past",
1921
- tier: "Illegal",
1922
- natDexTier: "LC",
1867
+ tier: "LC",
1923
1868
  },
1924
1869
  nuzleaf: {
1925
- isNonstandard: "Past",
1926
- tier: "Illegal",
1927
- natDexTier: "NFE",
1870
+ tier: "NFE",
1928
1871
  },
1929
1872
  shiftry: {
1930
- isNonstandard: "Past",
1931
- tier: "Illegal",
1873
+ tier: "OU",
1874
+ doublesTier: "DOU",
1932
1875
  natDexTier: "RU",
1933
1876
  },
1934
1877
  taillow: {
@@ -2041,13 +1984,11 @@ exports.FormatsData = {
2041
1984
  natDexTier: "RU",
2042
1985
  },
2043
1986
  nosepass: {
2044
- isNonstandard: "Past",
2045
- tier: "Illegal",
2046
- natDexTier: "LC",
1987
+ tier: "LC",
2047
1988
  },
2048
1989
  probopass: {
2049
- isNonstandard: "Past",
2050
- tier: "Illegal",
1990
+ tier: "OU",
1991
+ doublesTier: "DOU",
2051
1992
  natDexTier: "RU",
2052
1993
  },
2053
1994
  skitty: {
@@ -2139,13 +2080,13 @@ exports.FormatsData = {
2139
2080
  natDexTier: "RU",
2140
2081
  },
2141
2082
  volbeat: {
2142
- isNonstandard: "Past",
2143
- tier: "Illegal",
2083
+ tier: "OU",
2084
+ doublesTier: "DOU",
2144
2085
  natDexTier: "RU",
2145
2086
  },
2146
2087
  illumise: {
2147
- isNonstandard: "Past",
2148
- tier: "Illegal",
2088
+ tier: "OU",
2089
+ doublesTier: "DOU",
2149
2090
  natDexTier: "RU",
2150
2091
  },
2151
2092
  budew: {
@@ -2292,13 +2233,11 @@ exports.FormatsData = {
2292
2233
  natDexTier: "RU",
2293
2234
  },
2294
2235
  corphish: {
2295
- isNonstandard: "Past",
2296
- tier: "Illegal",
2297
- natDexTier: "LC",
2236
+ tier: "LC",
2298
2237
  },
2299
2238
  crawdaunt: {
2300
- isNonstandard: "Past",
2301
- tier: "Illegal",
2239
+ tier: "OU",
2240
+ doublesTier: "DOU",
2302
2241
  natDexTier: "UU",
2303
2242
  },
2304
2243
  baltoy: {
@@ -2331,14 +2270,12 @@ exports.FormatsData = {
2331
2270
  tier: "Illegal",
2332
2271
  natDexTier: "RU",
2333
2272
  },
2334
- feebas: {
2335
- isNonstandard: "Past",
2336
- tier: "Illegal",
2337
- natDexTier: "LC",
2273
+ feebas: {
2274
+ tier: "LC",
2338
2275
  },
2339
2276
  milotic: {
2340
- isNonstandard: "Past",
2341
- tier: "Illegal",
2277
+ tier: "OU",
2278
+ doublesTier: "DOU",
2342
2279
  natDexTier: "RU",
2343
2280
  },
2344
2281
  castform: {
@@ -2374,18 +2311,14 @@ exports.FormatsData = {
2374
2311
  natDexTier: "RU",
2375
2312
  },
2376
2313
  duskull: {
2377
- isNonstandard: "Past",
2378
- tier: "Illegal",
2379
- natDexTier: "LC",
2314
+ tier: "LC",
2380
2315
  },
2381
2316
  dusclops: {
2382
- isNonstandard: "Past",
2383
- tier: "Illegal",
2384
- natDexTier: "NFE",
2317
+ tier: "NFE",
2385
2318
  },
2386
2319
  dusknoir: {
2387
- isNonstandard: "Past",
2388
- tier: "Illegal",
2320
+ tier: "OU",
2321
+ doublesTier: "DOU",
2389
2322
  natDexTier: "RU",
2390
2323
  },
2391
2324
  tropius: {
@@ -2394,13 +2327,11 @@ exports.FormatsData = {
2394
2327
  natDexTier: "RU",
2395
2328
  },
2396
2329
  chingling: {
2397
- isNonstandard: "Past",
2398
- tier: "Illegal",
2399
- natDexTier: "LC",
2330
+ tier: "LC",
2400
2331
  },
2401
2332
  chimecho: {
2402
- isNonstandard: "Past",
2403
- tier: "Illegal",
2333
+ tier: "OU",
2334
+ doublesTier: "DOU",
2404
2335
  natDexTier: "RU",
2405
2336
  },
2406
2337
  absol: {
@@ -2573,9 +2504,9 @@ exports.FormatsData = {
2573
2504
  natDexTier: "AG",
2574
2505
  },
2575
2506
  jirachi: {
2576
- isNonstandard: "Past",
2577
- tier: "Illegal",
2578
- natDexTier: "UU",
2507
+ tier: "OU",
2508
+ doublesTier: "DOU",
2509
+ natDexTier: "RUBL",
2579
2510
  },
2580
2511
  deoxys: {
2581
2512
  isNonstandard: "Past",
@@ -2598,48 +2529,36 @@ exports.FormatsData = {
2598
2529
  natDexTier: "Uber",
2599
2530
  },
2600
2531
  turtwig: {
2601
- isNonstandard: "Past",
2602
- tier: "Illegal",
2603
- natDexTier: "LC",
2532
+ tier: "LC",
2604
2533
  },
2605
2534
  grotle: {
2606
- isNonstandard: "Past",
2607
- tier: "Illegal",
2608
- natDexTier: "NFE",
2535
+ tier: "NFE",
2609
2536
  },
2610
2537
  torterra: {
2611
- isNonstandard: "Past",
2612
- tier: "Illegal",
2538
+ tier: "OU",
2539
+ doublesTier: "DOU",
2613
2540
  natDexTier: "RU",
2614
2541
  },
2615
2542
  chimchar: {
2616
- isNonstandard: "Past",
2617
- tier: "Illegal",
2618
- natDexTier: "LC",
2543
+ tier: "LC",
2619
2544
  },
2620
2545
  monferno: {
2621
- isNonstandard: "Past",
2622
- tier: "Illegal",
2623
- natDexTier: "NFE",
2546
+ tier: "NFE",
2624
2547
  },
2625
2548
  infernape: {
2626
- isNonstandard: "Past",
2627
- tier: "Illegal",
2549
+ tier: "OU",
2550
+ doublesTier: "DOU",
2628
2551
  natDexTier: "RU",
2629
2552
  },
2630
2553
  piplup: {
2631
- isNonstandard: "Past",
2632
- tier: "Illegal",
2633
- natDexTier: "LC",
2554
+ tier: "LC",
2634
2555
  },
2635
2556
  prinplup: {
2636
- isNonstandard: "Past",
2637
- tier: "Illegal",
2638
- natDexTier: "NFE",
2557
+ tier: "NFE",
2639
2558
  },
2640
2559
  empoleon: {
2641
- isNonstandard: "Past",
2642
- tier: "Illegal",
2560
+ tier: "OU",
2561
+ doublesTier: "DOU",
2643
2562
  natDexTier: "RU",
2644
2563
  },
2645
2564
  starly: {
@@ -3002,28 +2921,28 @@ exports.FormatsData = {
3002
2921
  natDexTier: "RUBL",
3003
2922
  },
3004
2923
  phione: {
3005
- isNonstandard: "Past",
3006
- tier: "Illegal",
2924
+ tier: "OU",
2925
+ doublesTier: "DOU",
3007
2926
  natDexTier: "RU",
3008
2927
  },
3009
2928
  manaphy: {
3010
- isNonstandard: "Past",
3011
- tier: "Illegal",
2929
+ tier: "OU",
2930
+ doublesTier: "DOU",
3012
2931
  natDexTier: "UUBL",
3013
2932
  },
3014
2933
  darkrai: {
3015
- isNonstandard: "Past",
3016
- tier: "Illegal",
2934
+ tier: "Uber",
2935
+ doublesTier: "DOU",
3017
2936
  natDexTier: "Uber",
3018
2937
  },
3019
2938
  shaymin: {
3020
- isNonstandard: "Past",
3021
- tier: "Illegal",
2939
+ tier: "OU",
2940
+ doublesTier: "DOU",
3022
2941
  natDexTier: "RU",
3023
2942
  },
3024
2943
  shayminsky: {
3025
- isNonstandard: "Past",
3026
- tier: "Illegal",
2944
+ tier: "Uber",
2945
+ doublesTier: "DOU",
3027
2946
  natDexTier: "Uber",
3028
2947
  },
3029
2948
  arceus: {
@@ -3228,18 +3147,14 @@ exports.FormatsData = {
3228
3147
  natDexTier: "RU",
3229
3148
  },
3230
3149
  timburr: {
3231
- isNonstandard: "Past",
3232
- tier: "Illegal",
3233
- natDexTier: "LC",
3150
+ tier: "LC",
3234
3151
  },
3235
3152
  gurdurr: {
3236
- isNonstandard: "Past",
3237
- tier: "Illegal",
3238
- natDexTier: "NFE",
3153
+ tier: "NFE",
3239
3154
  },
3240
3155
  conkeldurr: {
3241
- isNonstandard: "Past",
3242
- tier: "Illegal",
3156
+ tier: "OU",
3157
+ doublesTier: "DOU",
3243
3158
  natDexTier: "RU",
3244
3159
  },
3245
3160
  tympole: {
@@ -3268,18 +3183,14 @@ exports.FormatsData = {
3268
3183
  natDexTier: "RU",
3269
3184
  },
3270
3185
  sewaddle: {
3271
- isNonstandard: "Past",
3272
- tier: "Illegal",
3273
- natDexTier: "LC",
3186
+ tier: "LC",
3274
3187
  },
3275
3188
  swadloon: {
3276
- isNonstandard: "Past",
3277
- tier: "Illegal",
3278
- natDexTier: "NFE",
3189
+ tier: "NFE",
3279
3190
  },
3280
3191
  leavanny: {
3281
- isNonstandard: "Past",
3282
- tier: "Illegal",
3192
+ tier: "OU",
3193
+ doublesTier: "DOU",
3283
3194
  natDexTier: "RU",
3284
3195
  },
3285
3196
  venipede: {
@@ -3473,7 +3384,7 @@ exports.FormatsData = {
3473
3384
  tier: "LC",
3474
3385
  },
3475
3386
  zoroark: {
3476
- tier: "NU",
3387
+ tier: "NUBL",
3477
3388
  doublesTier: "(DUU)",
3478
3389
  natDexTier: "RU",
3479
3390
  },
@@ -3519,13 +3430,11 @@ exports.FormatsData = {
3519
3430
  natDexTier: "RU",
3520
3431
  },
3521
3432
  ducklett: {
3522
- isNonstandard: "Past",
3523
- tier: "Illegal",
3524
- natDexTier: "LC",
3433
+ tier: "LC",
3525
3434
  },
3526
3435
  swanna: {
3527
- isNonstandard: "Past",
3528
- tier: "Illegal",
3436
+ tier: "OU",
3437
+ doublesTier: "DOU",
3529
3438
  natDexTier: "RU",
3530
3439
  },
3531
3440
  vanillite: {
@@ -3646,18 +3555,14 @@ exports.FormatsData = {
3646
3555
  natDexTier: "RU",
3647
3556
  },
3648
3557
  litwick: {
3649
- isNonstandard: "Past",
3650
- tier: "Illegal",
3651
- natDexTier: "LC",
3558
+ tier: "LC",
3652
3559
  },
3653
3560
  lampent: {
3654
- isNonstandard: "Past",
3655
- tier: "Illegal",
3656
- natDexTier: "NFE",
3561
+ tier: "NFE",
3657
3562
  },
3658
3563
  chandelure: {
3659
- isNonstandard: "Past",
3660
- tier: "Illegal",
3564
+ tier: "OU",
3565
+ doublesTier: "DOU",
3661
3566
  natDexTier: "RU",
3662
3567
  },
3663
3568
  axew: {
@@ -3705,13 +3610,11 @@ exports.FormatsData = {
3705
3610
  natDexTier: "RU",
3706
3611
  },
3707
3612
  mienfoo: {
3708
- isNonstandard: "Past",
3709
- tier: "Illegal",
3710
- natDexTier: "LC",
3613
+ tier: "LC",
3711
3614
  },
3712
3615
  mienshao: {
3713
- isNonstandard: "Past",
3714
- tier: "Illegal",
3616
+ tier: "OU",
3617
+ doublesTier: "DOU",
3715
3618
  natDexTier: "RU",
3716
3619
  },
3717
3620
  druddigon: {
@@ -3756,13 +3659,11 @@ exports.FormatsData = {
3756
3659
  natDexTier: "RU",
3757
3660
  },
3758
3661
  vullaby: {
3759
- isNonstandard: "Past",
3760
- tier: "Illegal",
3761
- natDexTier: "LC",
3662
+ tier: "LC",
3762
3663
  },
3763
3664
  mandibuzz: {
3764
- isNonstandard: "Past",
3765
- tier: "Illegal",
3665
+ tier: "OU",
3666
+ doublesTier: "DOU",
3766
3667
  natDexTier: "RU",
3767
3668
  },
3768
3669
  heatmor: {
@@ -3817,7 +3718,7 @@ exports.FormatsData = {
3817
3718
  tornadustherian: {
3818
3719
  tier: "UU",
3819
3720
  doublesTier: "(DUU)",
3820
- natDexTier: "UU",
3721
+ natDexTier: "UUBL",
3821
3722
  },
3822
3723
  thundurus: {
3823
3724
  tier: "RU",
@@ -3873,7 +3774,7 @@ exports.FormatsData = {
3873
3774
  isNonstandard: "Past",
3874
3775
  },
3875
3776
  meloetta: {
3876
- tier: "NU",
3777
+ tier: "NUBL",
3877
3778
  doublesTier: "(DUU)",
3878
3779
  natDexTier: "RU",
3879
3780
  },
@@ -3920,7 +3821,7 @@ exports.FormatsData = {
3920
3821
  tier: "NFE",
3921
3822
  },
3922
3823
  delphox: {
3923
- tier: "NU",
3824
+ tier: "NUBL",
3924
3825
  doublesTier: "(DUU)",
3925
3826
  natDexTier: "RU",
3926
3827
  },
@@ -4178,13 +4079,11 @@ exports.FormatsData = {
4178
4079
  natDexTier: "RU",
4179
4080
  },
4180
4081
  phantump: {
4181
- isNonstandard: "Past",
4182
- tier: "Illegal",
4183
- natDexTier: "LC",
4082
+ tier: "LC",
4184
4083
  },
4185
4084
  trevenant: {
4186
- isNonstandard: "Past",
4187
- tier: "Illegal",
4085
+ tier: "OU",
4086
+ doublesTier: "DOU",
4188
4087
  natDexTier: "RU",
4189
4088
  },
4190
4089
  pumpkaboo: {
@@ -4367,22 +4266,20 @@ exports.FormatsData = {
4367
4266
  natDexTier: "RU",
4368
4267
  },
4369
4268
  grubbin: {
4370
- isNonstandard: "Past",
4371
- tier: "Illegal",
4372
- natDexTier: "LC",
4269
+ tier: "LC",
4373
4270
  },
4374
4271
  charjabug: {
4375
- isNonstandard: "Past",
4376
- tier: "Illegal",
4377
- natDexTier: "NFE",
4272
+ tier: "NFE",
4378
4273
  },
4379
4274
  vikavolt: {
4380
- isNonstandard: "Past",
4381
- tier: "Illegal",
4275
+ tier: "OU",
4276
+ doublesTier: "DOU",
4382
4277
  natDexTier: "RU",
4383
4278
  },
4384
4279
  vikavolttotem: {
4385
4280
  isNonstandard: "Past",
4281
+ tier: "Illegal",
4282
+ natDexTier: "RU",
4386
4283
  },
4387
4284
  crabrawler: {
4388
4285
  tier: "LC",
@@ -4413,17 +4310,17 @@ exports.FormatsData = {
4413
4310
  natDexTier: "RU",
4414
4311
  },
4415
4312
  cutiefly: {
4416
- isNonstandard: "Past",
4417
- tier: "Illegal",
4418
- natDexTier: "LC",
4313
+ tier: "NFE",
4419
4314
  },
4420
4315
  ribombee: {
4421
- isNonstandard: "Past",
4422
- tier: "Illegal",
4316
+ tier: "OU",
4317
+ doublesTier: "DOU",
4423
4318
  natDexTier: "RU",
4424
4319
  },
4425
4320
  ribombeetotem: {
4426
4321
  isNonstandard: "Past",
4322
+ tier: "Illegal",
4323
+ natDexTier: "RU",
4427
4324
  },
4428
4325
  rockruff: {
4429
4326
  tier: "LC",
@@ -4730,22 +4627,20 @@ exports.FormatsData = {
4730
4627
  natDexTier: "RU",
4731
4628
  },
4732
4629
  jangmoo: {
4733
- isNonstandard: "Past",
4734
- tier: "Illegal",
4735
- natDexTier: "LC",
4630
+ tier: "LC",
4736
4631
  },
4737
4632
  hakamoo: {
4738
- isNonstandard: "Past",
4739
- tier: "Illegal",
4740
- natDexTier: "NFE",
4633
+ tier: "NFE",
4741
4634
  },
4742
4635
  kommoo: {
4743
- isNonstandard: "Past",
4744
- tier: "Illegal",
4636
+ tier: "OU",
4637
+ doublesTier: "DOU",
4745
4638
  natDexTier: "OU",
4746
4639
  },
4747
4640
  kommoototem: {
4748
4641
  isNonstandard: "Past",
4642
+ tier: "Illegal",
4643
+ natDexTier: "OU",
4749
4644
  },
4750
4645
  tapukoko: {
4751
4646
  isNonstandard: "Past",
@@ -5068,6 +4963,11 @@ exports.FormatsData = {
5068
4963
  isNonstandard: "Past",
5069
4964
  tier: "Illegal",
5070
4965
  },
4966
+ dipplin: {
4967
+ tier: "OU",
4968
+ doublesTier: "DOU",
4969
+ natDexTier: "OU",
4970
+ },
5071
4971
  silicobra: {
5072
4972
  tier: "LC",
5073
4973
  },
@@ -5081,16 +4981,10 @@ exports.FormatsData = {
5081
4981
  tier: "Illegal",
5082
4982
  },
5083
4983
  cramorant: {
5084
- isNonstandard: "Past",
5085
- tier: "Illegal",
4984
+ tier: "OU",
4985
+ doublesTier: "DOU",
5086
4986
  natDexTier: "RU",
5087
4987
  },
5088
- cramorantgulping: {
5089
- isNonstandard: "Past",
5090
- },
5091
- cramorantgorging: {
5092
- isNonstandard: "Past",
5093
- },
5094
4988
  arrokuda: {
5095
4989
  tier: "LC",
5096
4990
  },
@@ -5232,13 +5126,10 @@ exports.FormatsData = {
5232
5126
  natDexTier: "RU",
5233
5127
  },
5234
5128
  morpeko: {
5235
- isNonstandard: "Past",
5236
- tier: "Illegal",
5129
+ tier: "OU",
5130
+ doublesTier: "DOU",
5237
5131
  natDexTier: "RU",
5238
5132
  },
5239
- morpekohangry: {
5240
- isNonstandard: "Past",
5241
- },
5242
5133
  cufant: {
5243
5134
  tier: "LC",
5244
5135
  },
@@ -5612,7 +5503,7 @@ exports.FormatsData = {
5612
5503
  natDexTier: "RU",
5613
5504
  },
5614
5505
  flamigo: {
5615
- tier: "NU",
5506
+ tier: "NUBL",
5616
5507
  doublesTier: "(DUU)",
5617
5508
  natDexTier: "RU",
5618
5509
  },
@@ -5844,6 +5735,49 @@ exports.FormatsData = {
5844
5735
  doublesTier: "DUU",
5845
5736
  natDexTier: "RUBL",
5846
5737
  },
5738
+ poltchageist: {
5739
+ tier: "LC",
5740
+ },
5741
+ sinistcha: {
5742
+ tier: "OU",
5743
+ doublesTier: "DOU",
5744
+ natDexTier: "OU",
5745
+ },
5746
+ okidogi: {
5747
+ tier: "OU",
5748
+ doublesTier: "DOU",
5749
+ natDexTier: "OU",
5750
+ },
5751
+ munkidori: {
5752
+ tier: "OU",
5753
+ doublesTier: "DOU",
5754
+ natDexTier: "OU",
5755
+ },
5756
+ fezandipiti: {
5757
+ tier: "OU",
5758
+ doublesTier: "DOU",
5759
+ natDexTier: "OU",
5760
+ },
5761
+ ogerpon: {
5762
+ tier: "OU",
5763
+ doublesTier: "DOU",
5764
+ natDexTier: "OU",
5765
+ },
5766
+ ogerponwellspring: {
5767
+ tier: "OU",
5768
+ doublesTier: "DOU",
5769
+ natDexTier: "OU",
5770
+ },
5771
+ ogerponhearthflame: {
5772
+ tier: "OU",
5773
+ doublesTier: "DOU",
5774
+ natDexTier: "OU",
5775
+ },
5776
+ ogerponcornerstone: {
5777
+ tier: "OU",
5778
+ doublesTier: "DOU",
5779
+ natDexTier: "OU",
5780
+ },
5847
5781
  missingno: {
5848
5782
  isNonstandard: "Custom",
5849
5783
  tier: "Illegal",