@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
@@ -167,13 +167,11 @@ export const FormatsData = {
167
167
  natDexTier: "RU",
168
168
  },
169
169
  ekans: {
170
- isNonstandard: "Past",
171
- tier: "Illegal",
172
- natDexTier: "LC",
170
+ tier: "LC",
173
171
  },
174
172
  arbok: {
175
- isNonstandard: "Past",
176
- tier: "Illegal",
173
+ tier: "OU",
174
+ doublesTier: "DOU",
177
175
  natDexTier: "RU",
178
176
  },
179
177
  pichu: {
@@ -185,7 +183,7 @@ export const FormatsData = {
185
183
  },
186
184
  pikachu: {
187
185
  tier: "(PU)",
188
- doublesTier: "NFE",
186
+ doublesTier: "(DUU)",
189
187
  natDexTier: "RU",
190
188
  },
191
189
  pikachucosplay: {
@@ -271,23 +269,19 @@ export const FormatsData = {
271
269
  natDexTier: "RU",
272
270
  },
273
271
  sandshrew: {
274
- isNonstandard: "Past",
275
- tier: "Illegal",
276
- natDexTier: "LC",
272
+ tier: "LC",
277
273
  },
278
274
  sandshrewalola: {
279
- isNonstandard: "Past",
280
- tier: "Illegal",
281
- natDexTier: "LC",
275
+ tier: "LC",
282
276
  },
283
277
  sandslash: {
284
- isNonstandard: "Past",
285
- tier: "Illegal",
278
+ tier: "OU",
279
+ doublesTier: "DOU",
286
280
  natDexTier: "RU",
287
281
  },
288
282
  sandslashalola: {
289
- isNonstandard: "Past",
290
- tier: "Illegal",
283
+ tier: "OU",
284
+ doublesTier: "DOU",
291
285
  natDexTier: "RU",
292
286
  },
293
287
  nidoranf: {
@@ -321,38 +315,30 @@ export const FormatsData = {
321
315
  natDexTier: "RU",
322
316
  },
323
317
  cleffa: {
324
- isNonstandard: "Past",
325
- tier: "Illegal",
326
- natDexTier: "LC",
318
+ tier: "LC",
327
319
  },
328
320
  clefairy: {
329
- isNonstandard: "Past",
330
- tier: "Illegal",
331
- natDexTier: "NFE",
321
+ tier: "NFE",
332
322
  },
333
323
  clefable: {
334
- isNonstandard: "Past",
335
- tier: "Illegal",
324
+ tier: "OU",
325
+ doublesTier: "DOU",
336
326
  natDexTier: "UU",
337
327
  },
338
328
  vulpix: {
339
- isNonstandard: "Past",
340
- tier: "Illegal",
341
- natDexTier: "LC",
329
+ tier: "NFE",
342
330
  },
343
331
  vulpixalola: {
344
- isNonstandard: "Past",
345
- tier: "Illegal",
346
- natDexTier: "LC",
332
+ tier: "NFE",
347
333
  },
348
334
  ninetales: {
349
- isNonstandard: "Past",
350
- tier: "Illegal",
335
+ tier: "OU",
336
+ doublesTier: "DOU",
351
337
  natDexTier: "RU",
352
338
  },
353
339
  ninetalesalola: {
354
- isNonstandard: "Past",
355
- tier: "Illegal",
340
+ tier: "OU",
341
+ doublesTier: "DOU",
356
342
  natDexTier: "RU",
357
343
  },
358
344
  igglybuff: {
@@ -496,23 +482,19 @@ export const FormatsData = {
496
482
  natDexTier: "UU",
497
483
  },
498
484
  poliwag: {
499
- isNonstandard: "Past",
500
- tier: "Illegal",
501
- natDexTier: "LC",
485
+ tier: "LC",
502
486
  },
503
487
  poliwhirl: {
504
- isNonstandard: "Past",
505
- tier: "Illegal",
506
- natDexTier: "NFE",
488
+ tier: "NFE",
507
489
  },
508
490
  poliwrath: {
509
- isNonstandard: "Past",
510
- tier: "Illegal",
491
+ tier: "OU",
492
+ doublesTier: "DOU",
511
493
  natDexTier: "RU",
512
494
  },
513
495
  politoed: {
514
- isNonstandard: "Past",
515
- tier: "Illegal",
496
+ tier: "OU",
497
+ doublesTier: "DOU",
516
498
  natDexTier: "RU",
517
499
  },
518
500
  abra: {
@@ -555,18 +537,14 @@ export const FormatsData = {
555
537
  tier: "Illegal",
556
538
  },
557
539
  bellsprout: {
558
- isNonstandard: "Past",
559
- tier: "Illegal",
560
- natDexTier: "LC",
540
+ tier: "LC",
561
541
  },
562
542
  weepinbell: {
563
- isNonstandard: "Past",
564
- tier: "Illegal",
565
- natDexTier: "NFE",
543
+ tier: "NFE",
566
544
  },
567
545
  victreebel: {
568
- isNonstandard: "Past",
569
- tier: "Illegal",
546
+ tier: "OU",
547
+ doublesTier: "DOU",
570
548
  natDexTier: "RU",
571
549
  },
572
550
  tentacool: {
@@ -580,33 +558,25 @@ export const FormatsData = {
580
558
  natDexTier: "RU",
581
559
  },
582
560
  geodude: {
583
- isNonstandard: "Past",
584
- tier: "Illegal",
585
- natDexTier: "LC",
561
+ tier: "LC",
586
562
  },
587
563
  geodudealola: {
588
- isNonstandard: "Past",
589
- tier: "Illegal",
590
- natDexTier: "LC",
564
+ tier: "LC",
591
565
  },
592
566
  graveler: {
593
- isNonstandard: "Past",
594
- tier: "Illegal",
595
- natDexTier: "NFE",
567
+ tier: "NFE",
596
568
  },
597
569
  graveleralola: {
598
- isNonstandard: "Past",
599
- tier: "Illegal",
600
- natDexTier: "NFE",
570
+ tier: "NFE",
601
571
  },
602
572
  golem: {
603
- isNonstandard: "Past",
604
- tier: "Illegal",
573
+ tier: "OU",
574
+ doublesTier: "DOU",
605
575
  natDexTier: "RU",
606
576
  },
607
577
  golemalola: {
608
- isNonstandard: "Past",
609
- tier: "Illegal",
578
+ tier: "OU",
579
+ doublesTier: "DOU",
610
580
  natDexTier: "RU",
611
581
  },
612
582
  ponyta: {
@@ -873,18 +843,16 @@ export const FormatsData = {
873
843
  natDexTier: "RU",
874
844
  },
875
845
  koffing: {
876
- isNonstandard: "Past",
877
- tier: "Illegal",
878
- natDexTier: "LC",
846
+ tier: "LC",
879
847
  },
880
848
  weezing: {
881
- isNonstandard: "Past",
882
- tier: "Illegal",
849
+ tier: "OU",
850
+ doublesTier: "DOU",
883
851
  natDexTier: "RU",
884
852
  },
885
853
  weezinggalar: {
886
- isNonstandard: "Past",
887
- tier: "Illegal",
854
+ tier: "OU",
855
+ doublesTier: "DOU",
888
856
  natDexTier: "RU",
889
857
  },
890
858
  rhyhorn: {
@@ -1204,13 +1172,11 @@ export const FormatsData = {
1204
1172
  natDexTier: "RUBL",
1205
1173
  },
1206
1174
  munchlax: {
1207
- isNonstandard: "Past",
1208
- tier: "Illegal",
1209
- natDexTier: "LC",
1175
+ tier: "LC",
1210
1176
  },
1211
1177
  snorlax: {
1212
- isNonstandard: "Past",
1213
- tier: "Illegal",
1178
+ tier: "OU",
1179
+ doublesTier: "DOU",
1214
1180
  natDexTier: "RU",
1215
1181
  },
1216
1182
  snorlaxgmax: {
@@ -1325,23 +1291,19 @@ export const FormatsData = {
1325
1291
  natDexTier: "RU",
1326
1292
  },
1327
1293
  sentret: {
1328
- isNonstandard: "Past",
1329
- tier: "Illegal",
1330
- natDexTier: "LC",
1294
+ tier: "LC",
1331
1295
  },
1332
1296
  furret: {
1333
- isNonstandard: "Past",
1334
- tier: "Illegal",
1297
+ tier: "OU",
1298
+ doublesTier: "DOU",
1335
1299
  natDexTier: "RU",
1336
1300
  },
1337
1301
  hoothoot: {
1338
- isNonstandard: "Past",
1339
- tier: "Illegal",
1340
- natDexTier: "LC",
1302
+ tier: "LC",
1341
1303
  },
1342
1304
  noctowl: {
1343
- isNonstandard: "Past",
1344
- tier: "Illegal",
1305
+ tier: "OU",
1306
+ doublesTier: "DOU",
1345
1307
  natDexTier: "RU",
1346
1308
  },
1347
1309
  ledyba: {
@@ -1355,13 +1317,11 @@ export const FormatsData = {
1355
1317
  natDexTier: "RU",
1356
1318
  },
1357
1319
  spinarak: {
1358
- isNonstandard: "Past",
1359
- tier: "Illegal",
1360
- natDexTier: "LC",
1320
+ tier: "LC",
1361
1321
  },
1362
1322
  ariados: {
1363
- isNonstandard: "Past",
1364
- tier: "Illegal",
1323
+ tier: "OU",
1324
+ doublesTier: "DOU",
1365
1325
  natDexTier: "RU",
1366
1326
  },
1367
1327
  chinchou: {
@@ -1446,13 +1406,11 @@ export const FormatsData = {
1446
1406
  natDexTier: "RU",
1447
1407
  },
1448
1408
  aipom: {
1449
- isNonstandard: "Past",
1450
- tier: "Illegal",
1451
- natDexTier: "LC",
1409
+ tier: "NFE",
1452
1410
  },
1453
1411
  ambipom: {
1454
- isNonstandard: "Past",
1455
- tier: "Illegal",
1412
+ tier: "OU",
1413
+ doublesTier: "DOU",
1456
1414
  natDexTier: "RU",
1457
1415
  },
1458
1416
  sunkern: {
@@ -1464,13 +1422,11 @@ export const FormatsData = {
1464
1422
  natDexTier: "RU",
1465
1423
  },
1466
1424
  yanma: {
1467
- isNonstandard: "Past",
1468
- tier: "Illegal",
1469
- natDexTier: "LC",
1425
+ tier: "NFE",
1470
1426
  },
1471
1427
  yanmega: {
1472
- isNonstandard: "Past",
1473
- tier: "Illegal",
1428
+ tier: "OU",
1429
+ doublesTier: "DOU",
1474
1430
  natDexTier: "RU",
1475
1431
  },
1476
1432
  wooper: {
@@ -1543,13 +1499,11 @@ export const FormatsData = {
1543
1499
  natDexTier: "RU",
1544
1500
  },
1545
1501
  gligar: {
1546
- isNonstandard: "Past",
1547
- tier: "Illegal",
1548
- natDexTier: "LC",
1502
+ tier: "NFE",
1549
1503
  },
1550
1504
  gliscor: {
1551
- isNonstandard: "Past",
1552
- tier: "Illegal",
1505
+ tier: "OU",
1506
+ doublesTier: "DOU",
1553
1507
  natDexTier: "OU",
1554
1508
  },
1555
1509
  snubbull: {
@@ -1620,32 +1574,31 @@ export const FormatsData = {
1620
1574
  },
1621
1575
  ursaluna: {
1622
1576
  tier: "UU",
1623
- doublesTier: "DUber",
1577
+ doublesTier: "DOU",
1624
1578
  natDexTier: "Uber",
1625
1579
  },
1580
+ ursalunabloodmoon: {
1581
+ tier: "OU",
1582
+ doublesTier: "DOU",
1583
+ natDexTier: "OU",
1584
+ },
1626
1585
  slugma: {
1627
- isNonstandard: "Past",
1628
- tier: "Illegal",
1629
- natDexTier: "LC",
1586
+ tier: "LC",
1630
1587
  },
1631
1588
  magcargo: {
1632
- isNonstandard: "Past",
1633
- tier: "Illegal",
1589
+ tier: "OU",
1590
+ doublesTier: "DOU",
1634
1591
  natDexTier: "RU",
1635
1592
  },
1636
1593
  swinub: {
1637
- isNonstandard: "Past",
1638
- tier: "Illegal",
1639
- natDexTier: "LC",
1594
+ tier: "LC",
1640
1595
  },
1641
1596
  piloswine: {
1642
- isNonstandard: "Past",
1643
- tier: "Illegal",
1644
- natDexTier: "NFE",
1597
+ tier: "NFE",
1645
1598
  },
1646
1599
  mamoswine: {
1647
- isNonstandard: "Past",
1648
- tier: "Illegal",
1600
+ tier: "OU",
1601
+ doublesTier: "DOU",
1649
1602
  natDexTier: "RU",
1650
1603
  },
1651
1604
  corsola: {
@@ -1839,13 +1792,11 @@ export const FormatsData = {
1839
1792
  natDexTier: "OU",
1840
1793
  },
1841
1794
  poochyena: {
1842
- isNonstandard: "Past",
1843
- tier: "Illegal",
1844
- natDexTier: "LC",
1795
+ tier: "LC",
1845
1796
  },
1846
1797
  mightyena: {
1847
- isNonstandard: "Past",
1848
- tier: "Illegal",
1798
+ tier: "OU",
1799
+ doublesTier: "DOU",
1849
1800
  natDexTier: "RU",
1850
1801
  },
1851
1802
  zigzagoon: {
@@ -1899,33 +1850,25 @@ export const FormatsData = {
1899
1850
  natDexTier: "RU",
1900
1851
  },
1901
1852
  lotad: {
1902
- isNonstandard: "Past",
1903
- tier: "Illegal",
1904
- natDexTier: "LC",
1853
+ tier: "LC",
1905
1854
  },
1906
1855
  lombre: {
1907
- isNonstandard: "Past",
1908
- tier: "Illegal",
1909
- natDexTier: "NFE",
1856
+ tier: "NFE",
1910
1857
  },
1911
1858
  ludicolo: {
1912
- isNonstandard: "Past",
1913
- tier: "Illegal",
1859
+ tier: "OU",
1860
+ doublesTier: "DOU",
1914
1861
  natDexTier: "RU",
1915
1862
  },
1916
1863
  seedot: {
1917
- isNonstandard: "Past",
1918
- tier: "Illegal",
1919
- natDexTier: "LC",
1864
+ tier: "LC",
1920
1865
  },
1921
1866
  nuzleaf: {
1922
- isNonstandard: "Past",
1923
- tier: "Illegal",
1924
- natDexTier: "NFE",
1867
+ tier: "NFE",
1925
1868
  },
1926
1869
  shiftry: {
1927
- isNonstandard: "Past",
1928
- tier: "Illegal",
1870
+ tier: "OU",
1871
+ doublesTier: "DOU",
1929
1872
  natDexTier: "RU",
1930
1873
  },
1931
1874
  taillow: {
@@ -2038,13 +1981,11 @@ export const FormatsData = {
2038
1981
  natDexTier: "RU",
2039
1982
  },
2040
1983
  nosepass: {
2041
- isNonstandard: "Past",
2042
- tier: "Illegal",
2043
- natDexTier: "LC",
1984
+ tier: "LC",
2044
1985
  },
2045
1986
  probopass: {
2046
- isNonstandard: "Past",
2047
- tier: "Illegal",
1987
+ tier: "OU",
1988
+ doublesTier: "DOU",
2048
1989
  natDexTier: "RU",
2049
1990
  },
2050
1991
  skitty: {
@@ -2136,13 +2077,13 @@ export const FormatsData = {
2136
2077
  natDexTier: "RU",
2137
2078
  },
2138
2079
  volbeat: {
2139
- isNonstandard: "Past",
2140
- tier: "Illegal",
2080
+ tier: "OU",
2081
+ doublesTier: "DOU",
2141
2082
  natDexTier: "RU",
2142
2083
  },
2143
2084
  illumise: {
2144
- isNonstandard: "Past",
2145
- tier: "Illegal",
2085
+ tier: "OU",
2086
+ doublesTier: "DOU",
2146
2087
  natDexTier: "RU",
2147
2088
  },
2148
2089
  budew: {
@@ -2289,13 +2230,11 @@ export const FormatsData = {
2289
2230
  natDexTier: "RU",
2290
2231
  },
2291
2232
  corphish: {
2292
- isNonstandard: "Past",
2293
- tier: "Illegal",
2294
- natDexTier: "LC",
2233
+ tier: "LC",
2295
2234
  },
2296
2235
  crawdaunt: {
2297
- isNonstandard: "Past",
2298
- tier: "Illegal",
2236
+ tier: "OU",
2237
+ doublesTier: "DOU",
2299
2238
  natDexTier: "UU",
2300
2239
  },
2301
2240
  baltoy: {
@@ -2328,14 +2267,12 @@ export const FormatsData = {
2328
2267
  tier: "Illegal",
2329
2268
  natDexTier: "RU",
2330
2269
  },
2331
- feebas: {
2332
- isNonstandard: "Past",
2333
- tier: "Illegal",
2334
- natDexTier: "LC",
2270
+ feebas: {
2271
+ tier: "LC",
2335
2272
  },
2336
2273
  milotic: {
2337
- isNonstandard: "Past",
2338
- tier: "Illegal",
2274
+ tier: "OU",
2275
+ doublesTier: "DOU",
2339
2276
  natDexTier: "RU",
2340
2277
  },
2341
2278
  castform: {
@@ -2371,18 +2308,14 @@ export const FormatsData = {
2371
2308
  natDexTier: "RU",
2372
2309
  },
2373
2310
  duskull: {
2374
- isNonstandard: "Past",
2375
- tier: "Illegal",
2376
- natDexTier: "LC",
2311
+ tier: "LC",
2377
2312
  },
2378
2313
  dusclops: {
2379
- isNonstandard: "Past",
2380
- tier: "Illegal",
2381
- natDexTier: "NFE",
2314
+ tier: "NFE",
2382
2315
  },
2383
2316
  dusknoir: {
2384
- isNonstandard: "Past",
2385
- tier: "Illegal",
2317
+ tier: "OU",
2318
+ doublesTier: "DOU",
2386
2319
  natDexTier: "RU",
2387
2320
  },
2388
2321
  tropius: {
@@ -2391,13 +2324,11 @@ export const FormatsData = {
2391
2324
  natDexTier: "RU",
2392
2325
  },
2393
2326
  chingling: {
2394
- isNonstandard: "Past",
2395
- tier: "Illegal",
2396
- natDexTier: "LC",
2327
+ tier: "LC",
2397
2328
  },
2398
2329
  chimecho: {
2399
- isNonstandard: "Past",
2400
- tier: "Illegal",
2330
+ tier: "OU",
2331
+ doublesTier: "DOU",
2401
2332
  natDexTier: "RU",
2402
2333
  },
2403
2334
  absol: {
@@ -2570,9 +2501,9 @@ export const FormatsData = {
2570
2501
  natDexTier: "AG",
2571
2502
  },
2572
2503
  jirachi: {
2573
- isNonstandard: "Past",
2574
- tier: "Illegal",
2575
- natDexTier: "UU",
2504
+ tier: "OU",
2505
+ doublesTier: "DOU",
2506
+ natDexTier: "RUBL",
2576
2507
  },
2577
2508
  deoxys: {
2578
2509
  isNonstandard: "Past",
@@ -2595,48 +2526,36 @@ export const FormatsData = {
2595
2526
  natDexTier: "Uber",
2596
2527
  },
2597
2528
  turtwig: {
2598
- isNonstandard: "Past",
2599
- tier: "Illegal",
2600
- natDexTier: "LC",
2529
+ tier: "LC",
2601
2530
  },
2602
2531
  grotle: {
2603
- isNonstandard: "Past",
2604
- tier: "Illegal",
2605
- natDexTier: "NFE",
2532
+ tier: "NFE",
2606
2533
  },
2607
2534
  torterra: {
2608
- isNonstandard: "Past",
2609
- tier: "Illegal",
2535
+ tier: "OU",
2536
+ doublesTier: "DOU",
2610
2537
  natDexTier: "RU",
2611
2538
  },
2612
2539
  chimchar: {
2613
- isNonstandard: "Past",
2614
- tier: "Illegal",
2615
- natDexTier: "LC",
2540
+ tier: "LC",
2616
2541
  },
2617
2542
  monferno: {
2618
- isNonstandard: "Past",
2619
- tier: "Illegal",
2620
- natDexTier: "NFE",
2543
+ tier: "NFE",
2621
2544
  },
2622
2545
  infernape: {
2623
- isNonstandard: "Past",
2624
- tier: "Illegal",
2546
+ tier: "OU",
2547
+ doublesTier: "DOU",
2625
2548
  natDexTier: "RU",
2626
2549
  },
2627
2550
  piplup: {
2628
- isNonstandard: "Past",
2629
- tier: "Illegal",
2630
- natDexTier: "LC",
2551
+ tier: "LC",
2631
2552
  },
2632
2553
  prinplup: {
2633
- isNonstandard: "Past",
2634
- tier: "Illegal",
2635
- natDexTier: "NFE",
2554
+ tier: "NFE",
2636
2555
  },
2637
2556
  empoleon: {
2638
- isNonstandard: "Past",
2639
- tier: "Illegal",
2557
+ tier: "OU",
2558
+ doublesTier: "DOU",
2640
2559
  natDexTier: "RU",
2641
2560
  },
2642
2561
  starly: {
@@ -2999,28 +2918,28 @@ export const FormatsData = {
2999
2918
  natDexTier: "RUBL",
3000
2919
  },
3001
2920
  phione: {
3002
- isNonstandard: "Past",
3003
- tier: "Illegal",
2921
+ tier: "OU",
2922
+ doublesTier: "DOU",
3004
2923
  natDexTier: "RU",
3005
2924
  },
3006
2925
  manaphy: {
3007
- isNonstandard: "Past",
3008
- tier: "Illegal",
2926
+ tier: "OU",
2927
+ doublesTier: "DOU",
3009
2928
  natDexTier: "UUBL",
3010
2929
  },
3011
2930
  darkrai: {
3012
- isNonstandard: "Past",
3013
- tier: "Illegal",
2931
+ tier: "Uber",
2932
+ doublesTier: "DOU",
3014
2933
  natDexTier: "Uber",
3015
2934
  },
3016
2935
  shaymin: {
3017
- isNonstandard: "Past",
3018
- tier: "Illegal",
2936
+ tier: "OU",
2937
+ doublesTier: "DOU",
3019
2938
  natDexTier: "RU",
3020
2939
  },
3021
2940
  shayminsky: {
3022
- isNonstandard: "Past",
3023
- tier: "Illegal",
2941
+ tier: "Uber",
2942
+ doublesTier: "DOU",
3024
2943
  natDexTier: "Uber",
3025
2944
  },
3026
2945
  arceus: {
@@ -3225,18 +3144,14 @@ export const FormatsData = {
3225
3144
  natDexTier: "RU",
3226
3145
  },
3227
3146
  timburr: {
3228
- isNonstandard: "Past",
3229
- tier: "Illegal",
3230
- natDexTier: "LC",
3147
+ tier: "LC",
3231
3148
  },
3232
3149
  gurdurr: {
3233
- isNonstandard: "Past",
3234
- tier: "Illegal",
3235
- natDexTier: "NFE",
3150
+ tier: "NFE",
3236
3151
  },
3237
3152
  conkeldurr: {
3238
- isNonstandard: "Past",
3239
- tier: "Illegal",
3153
+ tier: "OU",
3154
+ doublesTier: "DOU",
3240
3155
  natDexTier: "RU",
3241
3156
  },
3242
3157
  tympole: {
@@ -3265,18 +3180,14 @@ export const FormatsData = {
3265
3180
  natDexTier: "RU",
3266
3181
  },
3267
3182
  sewaddle: {
3268
- isNonstandard: "Past",
3269
- tier: "Illegal",
3270
- natDexTier: "LC",
3183
+ tier: "LC",
3271
3184
  },
3272
3185
  swadloon: {
3273
- isNonstandard: "Past",
3274
- tier: "Illegal",
3275
- natDexTier: "NFE",
3186
+ tier: "NFE",
3276
3187
  },
3277
3188
  leavanny: {
3278
- isNonstandard: "Past",
3279
- tier: "Illegal",
3189
+ tier: "OU",
3190
+ doublesTier: "DOU",
3280
3191
  natDexTier: "RU",
3281
3192
  },
3282
3193
  venipede: {
@@ -3470,7 +3381,7 @@ export const FormatsData = {
3470
3381
  tier: "LC",
3471
3382
  },
3472
3383
  zoroark: {
3473
- tier: "NU",
3384
+ tier: "NUBL",
3474
3385
  doublesTier: "(DUU)",
3475
3386
  natDexTier: "RU",
3476
3387
  },
@@ -3516,13 +3427,11 @@ export const FormatsData = {
3516
3427
  natDexTier: "RU",
3517
3428
  },
3518
3429
  ducklett: {
3519
- isNonstandard: "Past",
3520
- tier: "Illegal",
3521
- natDexTier: "LC",
3430
+ tier: "LC",
3522
3431
  },
3523
3432
  swanna: {
3524
- isNonstandard: "Past",
3525
- tier: "Illegal",
3433
+ tier: "OU",
3434
+ doublesTier: "DOU",
3526
3435
  natDexTier: "RU",
3527
3436
  },
3528
3437
  vanillite: {
@@ -3643,18 +3552,14 @@ export const FormatsData = {
3643
3552
  natDexTier: "RU",
3644
3553
  },
3645
3554
  litwick: {
3646
- isNonstandard: "Past",
3647
- tier: "Illegal",
3648
- natDexTier: "LC",
3555
+ tier: "LC",
3649
3556
  },
3650
3557
  lampent: {
3651
- isNonstandard: "Past",
3652
- tier: "Illegal",
3653
- natDexTier: "NFE",
3558
+ tier: "NFE",
3654
3559
  },
3655
3560
  chandelure: {
3656
- isNonstandard: "Past",
3657
- tier: "Illegal",
3561
+ tier: "OU",
3562
+ doublesTier: "DOU",
3658
3563
  natDexTier: "RU",
3659
3564
  },
3660
3565
  axew: {
@@ -3702,13 +3607,11 @@ export const FormatsData = {
3702
3607
  natDexTier: "RU",
3703
3608
  },
3704
3609
  mienfoo: {
3705
- isNonstandard: "Past",
3706
- tier: "Illegal",
3707
- natDexTier: "LC",
3610
+ tier: "LC",
3708
3611
  },
3709
3612
  mienshao: {
3710
- isNonstandard: "Past",
3711
- tier: "Illegal",
3613
+ tier: "OU",
3614
+ doublesTier: "DOU",
3712
3615
  natDexTier: "RU",
3713
3616
  },
3714
3617
  druddigon: {
@@ -3753,13 +3656,11 @@ export const FormatsData = {
3753
3656
  natDexTier: "RU",
3754
3657
  },
3755
3658
  vullaby: {
3756
- isNonstandard: "Past",
3757
- tier: "Illegal",
3758
- natDexTier: "LC",
3659
+ tier: "LC",
3759
3660
  },
3760
3661
  mandibuzz: {
3761
- isNonstandard: "Past",
3762
- tier: "Illegal",
3662
+ tier: "OU",
3663
+ doublesTier: "DOU",
3763
3664
  natDexTier: "RU",
3764
3665
  },
3765
3666
  heatmor: {
@@ -3814,7 +3715,7 @@ export const FormatsData = {
3814
3715
  tornadustherian: {
3815
3716
  tier: "UU",
3816
3717
  doublesTier: "(DUU)",
3817
- natDexTier: "UU",
3718
+ natDexTier: "UUBL",
3818
3719
  },
3819
3720
  thundurus: {
3820
3721
  tier: "RU",
@@ -3870,7 +3771,7 @@ export const FormatsData = {
3870
3771
  isNonstandard: "Past",
3871
3772
  },
3872
3773
  meloetta: {
3873
- tier: "NU",
3774
+ tier: "NUBL",
3874
3775
  doublesTier: "(DUU)",
3875
3776
  natDexTier: "RU",
3876
3777
  },
@@ -3917,7 +3818,7 @@ export const FormatsData = {
3917
3818
  tier: "NFE",
3918
3819
  },
3919
3820
  delphox: {
3920
- tier: "NU",
3821
+ tier: "NUBL",
3921
3822
  doublesTier: "(DUU)",
3922
3823
  natDexTier: "RU",
3923
3824
  },
@@ -4175,13 +4076,11 @@ export const FormatsData = {
4175
4076
  natDexTier: "RU",
4176
4077
  },
4177
4078
  phantump: {
4178
- isNonstandard: "Past",
4179
- tier: "Illegal",
4180
- natDexTier: "LC",
4079
+ tier: "LC",
4181
4080
  },
4182
4081
  trevenant: {
4183
- isNonstandard: "Past",
4184
- tier: "Illegal",
4082
+ tier: "OU",
4083
+ doublesTier: "DOU",
4185
4084
  natDexTier: "RU",
4186
4085
  },
4187
4086
  pumpkaboo: {
@@ -4364,22 +4263,20 @@ export const FormatsData = {
4364
4263
  natDexTier: "RU",
4365
4264
  },
4366
4265
  grubbin: {
4367
- isNonstandard: "Past",
4368
- tier: "Illegal",
4369
- natDexTier: "LC",
4266
+ tier: "LC",
4370
4267
  },
4371
4268
  charjabug: {
4372
- isNonstandard: "Past",
4373
- tier: "Illegal",
4374
- natDexTier: "NFE",
4269
+ tier: "NFE",
4375
4270
  },
4376
4271
  vikavolt: {
4377
- isNonstandard: "Past",
4378
- tier: "Illegal",
4272
+ tier: "OU",
4273
+ doublesTier: "DOU",
4379
4274
  natDexTier: "RU",
4380
4275
  },
4381
4276
  vikavolttotem: {
4382
4277
  isNonstandard: "Past",
4278
+ tier: "Illegal",
4279
+ natDexTier: "RU",
4383
4280
  },
4384
4281
  crabrawler: {
4385
4282
  tier: "LC",
@@ -4410,17 +4307,17 @@ export const FormatsData = {
4410
4307
  natDexTier: "RU",
4411
4308
  },
4412
4309
  cutiefly: {
4413
- isNonstandard: "Past",
4414
- tier: "Illegal",
4415
- natDexTier: "LC",
4310
+ tier: "NFE",
4416
4311
  },
4417
4312
  ribombee: {
4418
- isNonstandard: "Past",
4419
- tier: "Illegal",
4313
+ tier: "OU",
4314
+ doublesTier: "DOU",
4420
4315
  natDexTier: "RU",
4421
4316
  },
4422
4317
  ribombeetotem: {
4423
4318
  isNonstandard: "Past",
4319
+ tier: "Illegal",
4320
+ natDexTier: "RU",
4424
4321
  },
4425
4322
  rockruff: {
4426
4323
  tier: "LC",
@@ -4727,22 +4624,20 @@ export const FormatsData = {
4727
4624
  natDexTier: "RU",
4728
4625
  },
4729
4626
  jangmoo: {
4730
- isNonstandard: "Past",
4731
- tier: "Illegal",
4732
- natDexTier: "LC",
4627
+ tier: "LC",
4733
4628
  },
4734
4629
  hakamoo: {
4735
- isNonstandard: "Past",
4736
- tier: "Illegal",
4737
- natDexTier: "NFE",
4630
+ tier: "NFE",
4738
4631
  },
4739
4632
  kommoo: {
4740
- isNonstandard: "Past",
4741
- tier: "Illegal",
4633
+ tier: "OU",
4634
+ doublesTier: "DOU",
4742
4635
  natDexTier: "OU",
4743
4636
  },
4744
4637
  kommoototem: {
4745
4638
  isNonstandard: "Past",
4639
+ tier: "Illegal",
4640
+ natDexTier: "OU",
4746
4641
  },
4747
4642
  tapukoko: {
4748
4643
  isNonstandard: "Past",
@@ -5065,6 +4960,11 @@ export const FormatsData = {
5065
4960
  isNonstandard: "Past",
5066
4961
  tier: "Illegal",
5067
4962
  },
4963
+ dipplin: {
4964
+ tier: "OU",
4965
+ doublesTier: "DOU",
4966
+ natDexTier: "OU",
4967
+ },
5068
4968
  silicobra: {
5069
4969
  tier: "LC",
5070
4970
  },
@@ -5078,16 +4978,10 @@ export const FormatsData = {
5078
4978
  tier: "Illegal",
5079
4979
  },
5080
4980
  cramorant: {
5081
- isNonstandard: "Past",
5082
- tier: "Illegal",
4981
+ tier: "OU",
4982
+ doublesTier: "DOU",
5083
4983
  natDexTier: "RU",
5084
4984
  },
5085
- cramorantgulping: {
5086
- isNonstandard: "Past",
5087
- },
5088
- cramorantgorging: {
5089
- isNonstandard: "Past",
5090
- },
5091
4985
  arrokuda: {
5092
4986
  tier: "LC",
5093
4987
  },
@@ -5229,13 +5123,10 @@ export const FormatsData = {
5229
5123
  natDexTier: "RU",
5230
5124
  },
5231
5125
  morpeko: {
5232
- isNonstandard: "Past",
5233
- tier: "Illegal",
5126
+ tier: "OU",
5127
+ doublesTier: "DOU",
5234
5128
  natDexTier: "RU",
5235
5129
  },
5236
- morpekohangry: {
5237
- isNonstandard: "Past",
5238
- },
5239
5130
  cufant: {
5240
5131
  tier: "LC",
5241
5132
  },
@@ -5609,7 +5500,7 @@ export const FormatsData = {
5609
5500
  natDexTier: "RU",
5610
5501
  },
5611
5502
  flamigo: {
5612
- tier: "NU",
5503
+ tier: "NUBL",
5613
5504
  doublesTier: "(DUU)",
5614
5505
  natDexTier: "RU",
5615
5506
  },
@@ -5841,6 +5732,49 @@ export const FormatsData = {
5841
5732
  doublesTier: "DUU",
5842
5733
  natDexTier: "RUBL",
5843
5734
  },
5735
+ poltchageist: {
5736
+ tier: "LC",
5737
+ },
5738
+ sinistcha: {
5739
+ tier: "OU",
5740
+ doublesTier: "DOU",
5741
+ natDexTier: "OU",
5742
+ },
5743
+ okidogi: {
5744
+ tier: "OU",
5745
+ doublesTier: "DOU",
5746
+ natDexTier: "OU",
5747
+ },
5748
+ munkidori: {
5749
+ tier: "OU",
5750
+ doublesTier: "DOU",
5751
+ natDexTier: "OU",
5752
+ },
5753
+ fezandipiti: {
5754
+ tier: "OU",
5755
+ doublesTier: "DOU",
5756
+ natDexTier: "OU",
5757
+ },
5758
+ ogerpon: {
5759
+ tier: "OU",
5760
+ doublesTier: "DOU",
5761
+ natDexTier: "OU",
5762
+ },
5763
+ ogerponwellspring: {
5764
+ tier: "OU",
5765
+ doublesTier: "DOU",
5766
+ natDexTier: "OU",
5767
+ },
5768
+ ogerponhearthflame: {
5769
+ tier: "OU",
5770
+ doublesTier: "DOU",
5771
+ natDexTier: "OU",
5772
+ },
5773
+ ogerponcornerstone: {
5774
+ tier: "OU",
5775
+ doublesTier: "DOU",
5776
+ natDexTier: "OU",
5777
+ },
5844
5778
  missingno: {
5845
5779
  isNonstandard: "Custom",
5846
5780
  tier: "Illegal",