@pkmn/sim 0.5.3 → 0.5.7
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.
- package/build/config/formats.js +402 -332
- package/build/config/formats.js.map +1 -1
- package/build/data/aliases.js +4 -4
- package/build/data/aliases.js.map +1 -1
- package/build/data/formats-data.js +183 -70
- package/build/data/formats-data.js.map +1 -1
- package/build/data/mods/gen1/formats-data.js +190 -190
- package/build/data/mods/gen1/formats-data.js.map +1 -1
- package/build/data/mods/gen1/moves.js +1 -2
- package/build/data/mods/gen1/moves.js.map +1 -1
- package/build/data/mods/gen2/formats-data.js +1 -1
- package/build/data/mods/gen2/formats-data.js.map +1 -1
- package/build/data/mods/gen3/formats-data.js +13 -13
- package/build/data/mods/gen3/formats-data.js.map +1 -1
- package/build/data/mods/gen4/moves.js +22 -0
- package/build/data/mods/gen4/moves.js.map +1 -1
- package/build/data/mods/gen5/formats-data.js +173 -156
- package/build/data/mods/gen5/formats-data.js.map +1 -1
- package/build/data/mods/gen6/formats-data.js +4 -3
- package/build/data/mods/gen6/formats-data.js.map +1 -1
- package/build/data/mods/gen7/formats-data.js +3 -2
- package/build/data/mods/gen7/formats-data.js.map +1 -1
- package/build/data/mods/gen7/moves.js +154 -0
- package/build/data/mods/gen7/moves.js.map +1 -1
- package/build/data/moves.js +38 -7
- package/build/data/moves.js.map +1 -1
- package/build/data/pokedex.js +480 -11
- package/build/data/pokedex.js.map +1 -1
- package/build/data/rulesets.js +12 -1
- package/build/data/rulesets.js.map +1 -1
- package/build/data/tags.d.ts +1 -0
- package/build/data/tags.js +4 -3
- package/build/data/tags.js.map +1 -1
- package/build/data/text/abilities.js +4 -4
- package/build/data/text/abilities.js.map +1 -1
- package/build/data/text/moves.js +18 -18
- package/build/data/text/moves.js.map +1 -1
- package/build/sim/battle-actions.js +4 -1
- package/build/sim/battle-actions.js.map +1 -1
- package/build/sim/battle.js +23 -22
- package/build/sim/battle.js.map +1 -1
- package/build/sim/dex-formats.d.ts +1 -0
- package/build/sim/dex-formats.js +3 -2
- package/build/sim/dex-formats.js.map +1 -1
- package/build/sim/dex-species.js +5 -2
- package/build/sim/dex-species.js.map +1 -1
- package/build/sim/exported-global-types.d.ts +1 -0
- package/build/sim/global-types.d.ts +1 -0
- package/build/sim/index.d.ts +1 -0
- package/build/sim/index.js +3 -1
- package/build/sim/index.js.map +1 -1
- package/build/sim/team-validator.js +13 -0
- package/build/sim/team-validator.js.map +1 -1
- package/config/formats.ts +422 -352
- package/data/aliases.ts +4 -4
- package/data/formats-data.ts +183 -70
- package/data/mods/gen1/formats-data.ts +190 -190
- package/data/mods/gen1/moves.ts +1 -2
- package/data/mods/gen2/formats-data.ts +1 -1
- package/data/mods/gen3/formats-data.ts +13 -13
- package/data/mods/gen4/moves.ts +21 -0
- package/data/mods/gen5/formats-data.ts +173 -156
- package/data/mods/gen6/formats-data.ts +4 -3
- package/data/mods/gen7/formats-data.ts +3 -2
- package/data/mods/gen7/moves.ts +150 -0
- package/data/moves.ts +37 -7
- package/data/pokedex.ts +480 -11
- package/data/rulesets.ts +11 -1
- package/data/tags.ts +6 -3
- package/data/text/abilities.ts +4 -4
- package/data/text/moves.ts +18 -18
- package/package.json +2 -2
- package/sim/battle-actions.ts +4 -1
- package/sim/battle.ts +24 -23
- package/sim/dex-formats.ts +4 -1
- package/sim/dex-species.ts +5 -2
- package/sim/exported-global-types.ts +1 -0
- package/sim/global-types.ts +1 -0
- package/sim/index.ts +1 -0
- package/sim/team-validator.ts +12 -0
package/data/formats-data.ts
CHANGED
|
@@ -270,10 +270,11 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
270
270
|
tier: "LC",
|
|
271
271
|
},
|
|
272
272
|
sandshrewalola: {
|
|
273
|
-
tier: "
|
|
273
|
+
tier: "NUBL",
|
|
274
|
+
doublesTier: "LC",
|
|
274
275
|
},
|
|
275
276
|
sandslash: {
|
|
276
|
-
randomBattleMoves: ["earthquake", "knockoff", "rapidspin", "
|
|
277
|
+
randomBattleMoves: ["earthquake", "knockoff", "rapidspin", "spikes", "stealthrock", "stoneedge", "swordsdance", "toxic"],
|
|
277
278
|
randomBattleLevel: 86,
|
|
278
279
|
randomDoubleBattleMoves: ["drillrun", "knockoff", "protect", "stealthrock", "stoneedge", "swordsdance"],
|
|
279
280
|
randomDoubleBattleLevel: 89,
|
|
@@ -285,7 +286,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
285
286
|
randomBattleLevel: 86,
|
|
286
287
|
randomDoubleBattleMoves: ["drillrun", "ironhead", "protect", "swordsdance", "tripleaxel"],
|
|
287
288
|
randomDoubleBattleLevel: 90,
|
|
288
|
-
tier: "
|
|
289
|
+
tier: "NUBL",
|
|
289
290
|
doublesTier: "(DUU)",
|
|
290
291
|
},
|
|
291
292
|
nidoranf: {
|
|
@@ -503,6 +504,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
503
504
|
growlithe: {
|
|
504
505
|
tier: "LC",
|
|
505
506
|
},
|
|
507
|
+
growlithehisui: {
|
|
508
|
+
isNonstandard: "Future",
|
|
509
|
+
tier: "Illegal",
|
|
510
|
+
},
|
|
506
511
|
arcanine: {
|
|
507
512
|
randomBattleMoves: ["closecombat", "extremespeed", "flareblitz", "morningsun", "toxic", "wildcharge", "willowisp"],
|
|
508
513
|
randomBattleLevel: 82,
|
|
@@ -511,6 +516,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
511
516
|
tier: "NU",
|
|
512
517
|
doublesTier: "DUU",
|
|
513
518
|
},
|
|
519
|
+
arcaninehisui: {
|
|
520
|
+
isNonstandard: "Future",
|
|
521
|
+
tier: "Illegal",
|
|
522
|
+
},
|
|
514
523
|
poliwag: {
|
|
515
524
|
tier: "LC",
|
|
516
525
|
},
|
|
@@ -589,7 +598,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
589
598
|
randomBattleMoves: ["haze", "knockoff", "rapidspin", "scald", "sludgebomb", "toxicspikes"],
|
|
590
599
|
randomBattleLevel: 84,
|
|
591
600
|
randomDoubleBattleMoves: ["acidspray", "icywind", "knockoff", "muddywater", "rapidspin", "sludgebomb"],
|
|
592
|
-
randomDoubleBattleLevel:
|
|
601
|
+
randomDoubleBattleLevel: 87,
|
|
593
602
|
tier: "UU",
|
|
594
603
|
doublesTier: "(DUU)",
|
|
595
604
|
},
|
|
@@ -690,7 +699,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
690
699
|
magnezone: {
|
|
691
700
|
randomBattleMoves: ["bodypress", "flashcannon", "mirrorcoat", "thunderbolt", "voltswitch"],
|
|
692
701
|
randomBattleLevel: 84,
|
|
693
|
-
randomDoubleBattleMoves: ["
|
|
702
|
+
randomDoubleBattleMoves: ["bodypress", "electroweb", "flashcannon", "protect", "thunderbolt", "voltswitch"],
|
|
694
703
|
randomDoubleBattleLevel: 88,
|
|
695
704
|
tier: "OU",
|
|
696
705
|
doublesTier: "(DUU)",
|
|
@@ -830,10 +839,18 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
830
839
|
isNonstandard: "Past",
|
|
831
840
|
tier: "Illegal",
|
|
832
841
|
},
|
|
842
|
+
voltorbhisui: {
|
|
843
|
+
isNonstandard: "Future",
|
|
844
|
+
tier: "Illegal",
|
|
845
|
+
},
|
|
833
846
|
electrode: {
|
|
834
847
|
isNonstandard: "Past",
|
|
835
848
|
tier: "Illegal",
|
|
836
849
|
},
|
|
850
|
+
electrodehisui: {
|
|
851
|
+
isNonstandard: "Future",
|
|
852
|
+
tier: "Illegal",
|
|
853
|
+
},
|
|
837
854
|
exeggcute: {
|
|
838
855
|
tier: "LC",
|
|
839
856
|
},
|
|
@@ -868,7 +885,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
868
885
|
randomBattleMoves: ["earthquake", "flamecharge", "flareblitz", "poltergeist", "stealthrock", "stoneedge"],
|
|
869
886
|
randomBattleLevel: 84,
|
|
870
887
|
randomDoubleBattleMoves: ["bonemerang", "flamecharge", "flareblitz", "protect", "shadowbone"],
|
|
871
|
-
randomDoubleBattleLevel:
|
|
888
|
+
randomDoubleBattleLevel: 83,
|
|
872
889
|
tier: "RU",
|
|
873
890
|
doublesTier: "(DUU)",
|
|
874
891
|
},
|
|
@@ -929,7 +946,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
929
946
|
randomBattleMoves: ["defog", "fireblast", "painsplit", "sludgebomb", "strangesteam", "toxicspikes", "willowisp"],
|
|
930
947
|
randomBattleLevel: 86,
|
|
931
948
|
randomDoubleBattleMoves: ["clearsmog", "defog", "fireblast", "painsplit", "strangesteam", "toxicspikes", "willowisp"],
|
|
932
|
-
randomDoubleBattleLevel:
|
|
949
|
+
randomDoubleBattleLevel: 89,
|
|
933
950
|
tier: "RU",
|
|
934
951
|
doublesTier: "DUU",
|
|
935
952
|
},
|
|
@@ -962,7 +979,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
962
979
|
randomBattleMoves: ["seismictoss", "softboiled", "stealthrock", "teleport", "toxic"],
|
|
963
980
|
randomBattleLevel: 83,
|
|
964
981
|
randomDoubleBattleMoves: ["allyswitch", "protect", "seismictoss", "softboiled", "thunderwave", "toxic"],
|
|
965
|
-
randomDoubleBattleLevel:
|
|
982
|
+
randomDoubleBattleLevel: 88,
|
|
966
983
|
tier: "OU",
|
|
967
984
|
doublesTier: "(DUU)",
|
|
968
985
|
},
|
|
@@ -1019,7 +1036,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
1019
1036
|
tier: "LC",
|
|
1020
1037
|
},
|
|
1021
1038
|
starmie: {
|
|
1022
|
-
randomBattleMoves: ["hydropump", "psyshock", "rapidspin", "recover", "scald", "thunderbolt"
|
|
1039
|
+
randomBattleMoves: ["hydropump", "icebeam", "psyshock", "rapidspin", "recover", "scald", "thunderbolt"],
|
|
1023
1040
|
randomBattleLevel: 84,
|
|
1024
1041
|
randomDoubleBattleMoves: ["flipturn", "hydropump", "icebeam", "protect", "psyshock", "thunderbolt"],
|
|
1025
1042
|
randomDoubleBattleLevel: 84,
|
|
@@ -1328,7 +1345,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
1328
1345
|
randomBattleMoves: ["airslash", "calmmind", "freezingglare", "recover"],
|
|
1329
1346
|
randomBattleLevel: 80,
|
|
1330
1347
|
randomDoubleBattleMoves: ["calmmind", "freezingglare", "hurricane", "recover", "tailwind"],
|
|
1331
|
-
randomDoubleBattleLevel:
|
|
1348
|
+
randomDoubleBattleLevel: 80,
|
|
1332
1349
|
randomBattleNoDynamaxMoves: ["calmmind", "freezingglare", "hurricane", "recover"],
|
|
1333
1350
|
tier: "PU",
|
|
1334
1351
|
doublesTier: "(DUU)",
|
|
@@ -1362,7 +1379,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
1362
1379
|
randomBattleMoves: ["fierywrath", "hurricane", "nastyplot", "rest"],
|
|
1363
1380
|
randomBattleLevel: 75,
|
|
1364
1381
|
randomDoubleBattleMoves: ["fierywrath", "hurricane", "nastyplot", "protect"],
|
|
1365
|
-
randomDoubleBattleLevel:
|
|
1382
|
+
randomDoubleBattleLevel: 75,
|
|
1366
1383
|
randomBattleNoDynamaxMoves: ["agility", "fierywrath", "hurricane", "nastyplot", "rest"],
|
|
1367
1384
|
tier: "UU",
|
|
1368
1385
|
doublesTier: "DUU",
|
|
@@ -1431,6 +1448,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
1431
1448
|
isNonstandard: "Past",
|
|
1432
1449
|
tier: "Illegal",
|
|
1433
1450
|
},
|
|
1451
|
+
typhlosionhisui: {
|
|
1452
|
+
isNonstandard: "Future",
|
|
1453
|
+
tier: "Illegal",
|
|
1454
|
+
},
|
|
1434
1455
|
totodile: {
|
|
1435
1456
|
isNonstandard: "Past",
|
|
1436
1457
|
tier: "Illegal",
|
|
@@ -1455,7 +1476,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
1455
1476
|
tier: "LC",
|
|
1456
1477
|
},
|
|
1457
1478
|
noctowl: {
|
|
1458
|
-
randomBattleMoves: ["
|
|
1479
|
+
randomBattleMoves: ["defog", "heatwave", "hurricane", "nastyplot", "roost"],
|
|
1459
1480
|
randomBattleLevel: 88,
|
|
1460
1481
|
randomDoubleBattleMoves: ["airslash", "heatwave", "hypervoice", "nastyplot", "roost", "tailwind"],
|
|
1461
1482
|
randomDoubleBattleLevel: 84,
|
|
@@ -1509,7 +1530,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
1509
1530
|
},
|
|
1510
1531
|
xatu: {
|
|
1511
1532
|
randomBattleMoves: ["heatwave", "psychic", "roost", "teleport", "thunderwave"],
|
|
1512
|
-
randomBattleLevel:
|
|
1533
|
+
randomBattleLevel: 89,
|
|
1513
1534
|
randomDoubleBattleMoves: ["airslash", "heatwave", "lightscreen", "psychic", "reflect", "roost", "tailwind"],
|
|
1514
1535
|
randomDoubleBattleLevel: 88,
|
|
1515
1536
|
tier: "NU",
|
|
@@ -1648,7 +1669,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
1648
1669
|
tier: "Illegal",
|
|
1649
1670
|
},
|
|
1650
1671
|
dunsparce: {
|
|
1651
|
-
randomBattleMoves: ["bodyslam", "coil", "
|
|
1672
|
+
randomBattleMoves: ["bodyslam", "coil", "earthquake", "roost"],
|
|
1652
1673
|
randomBattleLevel: 90,
|
|
1653
1674
|
randomDoubleBattleMoves: ["glare", "headbutt", "protect", "rockslide"],
|
|
1654
1675
|
randomDoubleBattleLevel: 90,
|
|
@@ -1679,6 +1700,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
1679
1700
|
tier: "(PU)",
|
|
1680
1701
|
doublesTier: "(DUU)",
|
|
1681
1702
|
},
|
|
1703
|
+
qwilfishhisui: {
|
|
1704
|
+
isNonstandard: "Future",
|
|
1705
|
+
tier: "Illegal",
|
|
1706
|
+
},
|
|
1682
1707
|
shuckle: {
|
|
1683
1708
|
randomBattleMoves: ["encore", "knockoff", "stealthrock", "stickyweb", "toxic"],
|
|
1684
1709
|
randomBattleLevel: 86,
|
|
@@ -1702,6 +1727,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
1702
1727
|
sneasel: {
|
|
1703
1728
|
tier: "NFE",
|
|
1704
1729
|
},
|
|
1730
|
+
sneaselhisui: {
|
|
1731
|
+
isNonstandard: "Future",
|
|
1732
|
+
tier: "Illegal",
|
|
1733
|
+
},
|
|
1705
1734
|
weavile: {
|
|
1706
1735
|
randomBattleMoves: ["iceshard", "knockoff", "lowkick", "swordsdance", "tripleaxel"],
|
|
1707
1736
|
randomBattleLevel: 79,
|
|
@@ -1844,7 +1873,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
1844
1873
|
doublesTier: "(DUU)",
|
|
1845
1874
|
},
|
|
1846
1875
|
entei: {
|
|
1847
|
-
randomBattleMoves: ["extremespeed", "flareblitz", "
|
|
1876
|
+
randomBattleMoves: ["extremespeed", "flareblitz", "sacredfire", "stompingtantrum", "stoneedge"],
|
|
1848
1877
|
randomBattleLevel: 78,
|
|
1849
1878
|
randomDoubleBattleMoves: ["extremespeed", "protect", "sacredfire", "snarl", "stompingtantrum", "stoneedge"],
|
|
1850
1879
|
randomDoubleBattleLevel: 79,
|
|
@@ -1927,7 +1956,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
1927
1956
|
tier: "NFE",
|
|
1928
1957
|
},
|
|
1929
1958
|
blaziken: {
|
|
1930
|
-
randomBattleMoves: ["closecombat", "flareblitz", "knockoff", "
|
|
1959
|
+
randomBattleMoves: ["closecombat", "flareblitz", "knockoff", "stoneedge", "swordsdance"],
|
|
1931
1960
|
randomBattleLevel: 76,
|
|
1932
1961
|
randomDoubleBattleMoves: ["closecombat", "flareblitz", "knockoff", "protect", "swordsdance"],
|
|
1933
1962
|
randomDoubleBattleLevel: 78,
|
|
@@ -1945,7 +1974,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
1945
1974
|
tier: "NFE",
|
|
1946
1975
|
},
|
|
1947
1976
|
swampert: {
|
|
1948
|
-
randomBattleMoves: ["earthquake", "icebeam", "protect", "scald", "stealthrock", "toxic"
|
|
1977
|
+
randomBattleMoves: ["earthquake", "flipturn", "icebeam", "protect", "scald", "stealthrock", "toxic"],
|
|
1949
1978
|
randomBattleLevel: 80,
|
|
1950
1979
|
randomDoubleBattleMoves: ["highhorsepower", "icywind", "muddywater", "protect", "stealthrock", "wideguard"],
|
|
1951
1980
|
randomDoubleBattleLevel: 86,
|
|
@@ -2300,7 +2329,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
2300
2329
|
},
|
|
2301
2330
|
wailord: {
|
|
2302
2331
|
randomBattleMoves: ["hydropump", "hypervoice", "icebeam", "waterspout"],
|
|
2303
|
-
randomBattleLevel:
|
|
2332
|
+
randomBattleLevel: 90,
|
|
2304
2333
|
randomDoubleBattleMoves: ["hydropump", "hypervoice", "icebeam", "waterspout"],
|
|
2305
2334
|
randomDoubleBattleLevel: 88,
|
|
2306
2335
|
tier: "(PU)",
|
|
@@ -2447,7 +2476,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
2447
2476
|
tier: "LC",
|
|
2448
2477
|
},
|
|
2449
2478
|
armaldo: {
|
|
2450
|
-
randomBattleMoves: ["earthquake", "knockoff", "rapidspin", "stealthrock", "stoneedge", "swordsdance"
|
|
2479
|
+
randomBattleMoves: ["earthquake", "knockoff", "liquidation", "rapidspin", "stealthrock", "stoneedge", "swordsdance"],
|
|
2451
2480
|
randomBattleLevel: 86,
|
|
2452
2481
|
randomDoubleBattleMoves: ["knockoff", "liquidation", "stoneedge", "superpower", "xscissor"],
|
|
2453
2482
|
randomDoubleBattleLevel: 88,
|
|
@@ -2606,7 +2635,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
2606
2635
|
randomBattleMoves: ["dragondance", "dualwingbeat", "earthquake", "outrage", "roost"],
|
|
2607
2636
|
randomBattleLevel: 76,
|
|
2608
2637
|
randomDoubleBattleMoves: ["dragonclaw", "fireblast", "hurricane", "protect", "tailwind"],
|
|
2609
|
-
randomDoubleBattleLevel:
|
|
2638
|
+
randomDoubleBattleLevel: 79,
|
|
2610
2639
|
tier: "UU",
|
|
2611
2640
|
doublesTier: "(DUU)",
|
|
2612
2641
|
},
|
|
@@ -2624,7 +2653,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
2624
2653
|
randomBattleMoves: ["agility", "bulletpunch", "earthquake", "explosion", "meteormash", "stealthrock", "thunderpunch"],
|
|
2625
2654
|
randomBattleLevel: 79,
|
|
2626
2655
|
randomDoubleBattleMoves: ["agility", "bulletpunch", "icepunch", "meteormash", "stompingtantrum", "trick", "zenheadbutt"],
|
|
2627
|
-
randomDoubleBattleLevel:
|
|
2656
|
+
randomDoubleBattleLevel: 82,
|
|
2628
2657
|
tier: "RU",
|
|
2629
2658
|
doublesTier: "DOU",
|
|
2630
2659
|
},
|
|
@@ -2669,7 +2698,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
2669
2698
|
tier: "Illegal",
|
|
2670
2699
|
},
|
|
2671
2700
|
latios: {
|
|
2672
|
-
randomBattleMoves: ["
|
|
2701
|
+
randomBattleMoves: ["calmmind", "dracometeor", "mysticalfire", "psyshock", "roost", "trick"],
|
|
2673
2702
|
randomBattleLevel: 78,
|
|
2674
2703
|
randomDoubleBattleMoves: ["dracometeor", "dragonpulse", "mysticalfire", "psychic", "psyshock", "roost", "tailwind", "trick"],
|
|
2675
2704
|
randomDoubleBattleLevel: 80,
|
|
@@ -2693,11 +2722,11 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
2693
2722
|
tier: "Illegal",
|
|
2694
2723
|
},
|
|
2695
2724
|
groudon: {
|
|
2696
|
-
randomBattleMoves: ["
|
|
2725
|
+
randomBattleMoves: ["heatcrash", "heavyslam", "precipiceblades", "stealthrock", "stoneedge", "swordsdance", "thunderwave"],
|
|
2697
2726
|
randomBattleLevel: 73,
|
|
2698
2727
|
randomDoubleBattleMoves: ["heatcrash", "precipiceblades", "rockpolish", "stoneedge", "swordsdance"],
|
|
2699
2728
|
randomDoubleBattleLevel: 72,
|
|
2700
|
-
randomBattleNoDynamaxMoves: ["
|
|
2729
|
+
randomBattleNoDynamaxMoves: ["heatcrash", "precipiceblades", "stealthrock", "stoneedge", "swordsdance", "thunderwave"],
|
|
2701
2730
|
tier: "Uber",
|
|
2702
2731
|
doublesTier: "DUber",
|
|
2703
2732
|
},
|
|
@@ -2706,11 +2735,11 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
2706
2735
|
tier: "Illegal",
|
|
2707
2736
|
},
|
|
2708
2737
|
rayquaza: {
|
|
2709
|
-
randomBattleMoves: ["dracometeor", "dragonascent", "dragondance", "
|
|
2738
|
+
randomBattleMoves: ["dracometeor", "dragonascent", "dragondance", "earthquake", "extremespeed", "swordsdance", "vcreate"],
|
|
2710
2739
|
randomBattleLevel: 74,
|
|
2711
2740
|
randomDoubleBattleMoves: ["dracometeor", "dragonascent", "dragonclaw", "dragondance", "earthpower", "extremespeed", "vcreate"],
|
|
2712
2741
|
randomDoubleBattleLevel: 74,
|
|
2713
|
-
randomBattleNoDynamaxMoves: ["dracometeor", "dragonascent", "dragondance", "
|
|
2742
|
+
randomBattleNoDynamaxMoves: ["dracometeor", "dragonascent", "dragondance", "earthquake", "extremespeed", "vcreate"],
|
|
2714
2743
|
tier: "Uber",
|
|
2715
2744
|
doublesTier: "DUber",
|
|
2716
2745
|
},
|
|
@@ -2966,7 +2995,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
2966
2995
|
tier: "Illegal",
|
|
2967
2996
|
},
|
|
2968
2997
|
spiritomb: {
|
|
2969
|
-
randomBattleMoves: ["foulplay", "
|
|
2998
|
+
randomBattleMoves: ["foulplay", "poltergeist", "shadowsneak", "suckerpunch", "trick"],
|
|
2970
2999
|
randomBattleLevel: 88,
|
|
2971
3000
|
randomDoubleBattleMoves: ["foulplay", "poltergeist", "protect", "snarl", "suckerpunch", "willowisp"],
|
|
2972
3001
|
randomDoubleBattleLevel: 88,
|
|
@@ -3069,7 +3098,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3069
3098
|
rotom: {
|
|
3070
3099
|
randomBattleMoves: ["nastyplot", "shadowball", "thunderbolt", "voltswitch", "willowisp"],
|
|
3071
3100
|
randomBattleLevel: 84,
|
|
3072
|
-
randomDoubleBattleMoves: ["
|
|
3101
|
+
randomDoubleBattleMoves: ["electroweb", "protect", "shadowball", "thunderbolt", "voltswitch", "willowisp"],
|
|
3073
3102
|
randomDoubleBattleLevel: 88,
|
|
3074
3103
|
tier: "(PU)",
|
|
3075
3104
|
doublesTier: "(DUU)",
|
|
@@ -3085,7 +3114,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3085
3114
|
rotomwash: {
|
|
3086
3115
|
randomBattleMoves: ["hydropump", "thunderbolt", "trick", "voltswitch", "willowisp"],
|
|
3087
3116
|
randomBattleLevel: 82,
|
|
3088
|
-
randomDoubleBattleMoves: ["
|
|
3117
|
+
randomDoubleBattleMoves: ["hydropump", "protect", "thunderbolt", "thunderwave", "voltswitch", "willowisp"],
|
|
3089
3118
|
randomDoubleBattleLevel: 84,
|
|
3090
3119
|
tier: "UU",
|
|
3091
3120
|
doublesTier: "(DUU)",
|
|
@@ -3107,7 +3136,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3107
3136
|
doublesTier: "(DUU)",
|
|
3108
3137
|
},
|
|
3109
3138
|
rotommow: {
|
|
3110
|
-
randomBattleMoves: ["leafstorm", "thunderbolt", "trick", "voltswitch", "willowisp"
|
|
3139
|
+
randomBattleMoves: ["leafstorm", "nastyplot", "thunderbolt", "trick", "voltswitch", "willowisp"],
|
|
3111
3140
|
randomBattleLevel: 86,
|
|
3112
3141
|
randomDoubleBattleMoves: ["electroweb", "leafstorm", "protect", "thunderbolt", "voltswitch", "willowisp"],
|
|
3113
3142
|
randomDoubleBattleLevel: 88,
|
|
@@ -3131,7 +3160,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3131
3160
|
doublesTier: "(DUU)",
|
|
3132
3161
|
},
|
|
3133
3162
|
azelf: {
|
|
3134
|
-
randomBattleMoves: ["dazzlinggleam", "fireblast", "nastyplot", "psyshock", "stealthrock", "taunt", "uturn"
|
|
3163
|
+
randomBattleMoves: ["dazzlinggleam", "fireblast", "nastyplot", "psychic", "psyshock", "stealthrock", "taunt", "uturn"],
|
|
3135
3164
|
randomBattleLevel: 82,
|
|
3136
3165
|
randomDoubleBattleMoves: ["energyball", "fireblast", "nastyplot", "protect", "psychic", "shadowball", "uturn"],
|
|
3137
3166
|
randomDoubleBattleLevel: 84,
|
|
@@ -3146,6 +3175,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3146
3175
|
tier: "Uber",
|
|
3147
3176
|
doublesTier: "DUber",
|
|
3148
3177
|
},
|
|
3178
|
+
dialgaorigin: {
|
|
3179
|
+
isNonstandard: "Future",
|
|
3180
|
+
tier: "Illegal",
|
|
3181
|
+
},
|
|
3149
3182
|
palkia: {
|
|
3150
3183
|
randomBattleMoves: ["dracometeor", "fireblast", "hydropump", "spacialrend", "thunderwave"],
|
|
3151
3184
|
randomBattleLevel: 74,
|
|
@@ -3154,10 +3187,14 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3154
3187
|
tier: "Uber",
|
|
3155
3188
|
doublesTier: "DUber",
|
|
3156
3189
|
},
|
|
3190
|
+
palkiaorigin: {
|
|
3191
|
+
isNonstandard: "Future",
|
|
3192
|
+
tier: "Illegal",
|
|
3193
|
+
},
|
|
3157
3194
|
heatran: {
|
|
3158
3195
|
randomBattleMoves: ["earthpower", "flashcannon", "lavaplume", "protect", "stealthrock", "taunt", "toxic"],
|
|
3159
3196
|
randomBattleLevel: 78,
|
|
3160
|
-
randomDoubleBattleMoves: ["earthpower", "eruption", "flashcannon", "
|
|
3197
|
+
randomDoubleBattleMoves: ["earthpower", "eruption", "flashcannon", "heatwave", "protect"],
|
|
3161
3198
|
randomDoubleBattleLevel: 80,
|
|
3162
3199
|
tier: "OU",
|
|
3163
3200
|
doublesTier: "DOU",
|
|
@@ -3181,7 +3218,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3181
3218
|
giratinaorigin: {
|
|
3182
3219
|
randomBattleMoves: ["dualwingbeat", "honeclaws", "outrage", "poltergeist", "shadowsneak"],
|
|
3183
3220
|
randomBattleLevel: 74,
|
|
3184
|
-
randomDoubleBattleMoves: ["breakingswipe", "dracometeor", "
|
|
3221
|
+
randomDoubleBattleMoves: ["breakingswipe", "dracometeor", "protect", "shadowball", "shadowsneak", "tailwind", "willowisp"],
|
|
3185
3222
|
randomDoubleBattleLevel: 74,
|
|
3186
3223
|
randomBattleNoDynamaxMoves: ["defog", "dracometeor", "earthquake", "poltergeist", "shadowsneak", "willowisp"],
|
|
3187
3224
|
tier: "Uber",
|
|
@@ -3314,6 +3351,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3314
3351
|
isNonstandard: "Past",
|
|
3315
3352
|
tier: "Illegal",
|
|
3316
3353
|
},
|
|
3354
|
+
samurotthisui: {
|
|
3355
|
+
isNonstandard: "Future",
|
|
3356
|
+
tier: "Illegal",
|
|
3357
|
+
},
|
|
3317
3358
|
patrat: {
|
|
3318
3359
|
isNonstandard: "Past",
|
|
3319
3360
|
tier: "Illegal",
|
|
@@ -3442,9 +3483,9 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3442
3483
|
},
|
|
3443
3484
|
audino: {
|
|
3444
3485
|
randomBattleMoves: ["healbell", "knockoff", "protect", "toxic", "wish"],
|
|
3445
|
-
randomBattleLevel:
|
|
3486
|
+
randomBattleLevel: 91,
|
|
3446
3487
|
randomDoubleBattleMoves: ["bodyslam", "healpulse", "helpinghand", "knockoff", "protect", "thunderwave"],
|
|
3447
|
-
randomDoubleBattleLevel:
|
|
3488
|
+
randomDoubleBattleLevel: 90,
|
|
3448
3489
|
tier: "PU",
|
|
3449
3490
|
doublesTier: "(DUU)",
|
|
3450
3491
|
},
|
|
@@ -3547,6 +3588,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3547
3588
|
tier: "(PU)",
|
|
3548
3589
|
doublesTier: "(DUU)",
|
|
3549
3590
|
},
|
|
3591
|
+
lilliganthisui: {
|
|
3592
|
+
isNonstandard: "Future",
|
|
3593
|
+
tier: "Illegal",
|
|
3594
|
+
},
|
|
3550
3595
|
basculin: {
|
|
3551
3596
|
randomBattleMoves: ["aquajet", "crunch", "flipturn", "headsmash", "liquidation", "psychicfangs"],
|
|
3552
3597
|
randomBattleLevel: 86,
|
|
@@ -3563,6 +3608,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3563
3608
|
tier: "(PU)",
|
|
3564
3609
|
doublesTier: "(DUU)",
|
|
3565
3610
|
},
|
|
3611
|
+
basculinwhitestriped: {
|
|
3612
|
+
isNonstandard: "Future",
|
|
3613
|
+
tier: "Illegal",
|
|
3614
|
+
},
|
|
3566
3615
|
sandile: {
|
|
3567
3616
|
tier: "LC",
|
|
3568
3617
|
},
|
|
@@ -3658,7 +3707,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3658
3707
|
runerigus: {
|
|
3659
3708
|
randomBattleMoves: ["earthquake", "haze", "poltergeist", "stealthrock", "toxicspikes", "willowisp"],
|
|
3660
3709
|
randomBattleLevel: 84,
|
|
3661
|
-
randomDoubleBattleMoves: ["
|
|
3710
|
+
randomDoubleBattleMoves: ["earthquake", "poltergeist", "protect", "trickroom", "willowisp"],
|
|
3662
3711
|
randomDoubleBattleLevel: 88,
|
|
3663
3712
|
tier: "(PU)",
|
|
3664
3713
|
doublesTier: "(DUU)",
|
|
@@ -3704,12 +3753,20 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3704
3753
|
zorua: {
|
|
3705
3754
|
tier: "LC",
|
|
3706
3755
|
},
|
|
3756
|
+
zoruahisui: {
|
|
3757
|
+
isNonstandard: "Future",
|
|
3758
|
+
tier: "Illegal",
|
|
3759
|
+
},
|
|
3707
3760
|
zoroark: {
|
|
3708
3761
|
randomBattleMoves: ["darkpulse", "flamethrower", "nastyplot", "sludgebomb", "trick"],
|
|
3709
3762
|
randomDoubleBattleMoves: ["darkpulse", "flamethrower", "focusblast", "nastyplot", "protect", "sludgebomb"],
|
|
3710
3763
|
tier: "NU",
|
|
3711
3764
|
doublesTier: "(DUU)",
|
|
3712
3765
|
},
|
|
3766
|
+
zoroarkhisui: {
|
|
3767
|
+
isNonstandard: "Future",
|
|
3768
|
+
tier: "Illegal",
|
|
3769
|
+
},
|
|
3713
3770
|
minccino: {
|
|
3714
3771
|
tier: "LC",
|
|
3715
3772
|
},
|
|
@@ -3840,7 +3897,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3840
3897
|
doublesTier: "NFE",
|
|
3841
3898
|
},
|
|
3842
3899
|
ferrothorn: {
|
|
3843
|
-
randomBattleMoves: ["gyroball", "leechseed", "powerwhip", "protect", "spikes", "stealthrock"
|
|
3900
|
+
randomBattleMoves: ["gyroball", "knockoff", "leechseed", "powerwhip", "protect", "spikes", "stealthrock"],
|
|
3844
3901
|
randomBattleLevel: 78,
|
|
3845
3902
|
randomDoubleBattleMoves: ["bodypress", "gyroball", "knockoff", "leechseed", "powerwhip", "protect", "toxic"],
|
|
3846
3903
|
randomDoubleBattleLevel: 83,
|
|
@@ -3906,7 +3963,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3906
3963
|
},
|
|
3907
3964
|
haxorus: {
|
|
3908
3965
|
randomBattleMoves: ["closecombat", "dragondance", "earthquake", "outrage", "poisonjab"],
|
|
3909
|
-
randomBattleLevel:
|
|
3966
|
+
randomBattleLevel: 77,
|
|
3910
3967
|
randomDoubleBattleMoves: ["closecombat", "dragonclaw", "dragondance", "poisonjab", "protect"],
|
|
3911
3968
|
randomDoubleBattleLevel: 84,
|
|
3912
3969
|
tier: "RUBL",
|
|
@@ -3916,7 +3973,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3916
3973
|
tier: "LC",
|
|
3917
3974
|
},
|
|
3918
3975
|
beartic: {
|
|
3919
|
-
randomBattleMoves: ["aquajet", "iciclecrash", "
|
|
3976
|
+
randomBattleMoves: ["aquajet", "iciclecrash", "stoneedge", "superpower", "swordsdance"],
|
|
3920
3977
|
randomBattleLevel: 86,
|
|
3921
3978
|
randomDoubleBattleMoves: ["aquajet", "iciclecrash", "protect", "rockslide", "superpower", "swordsdance", "throatchop"],
|
|
3922
3979
|
randomDoubleBattleLevel: 86,
|
|
@@ -3926,7 +3983,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3926
3983
|
cryogonal: {
|
|
3927
3984
|
randomBattleMoves: ["freezedry", "haze", "rapidspin", "recover", "toxic"],
|
|
3928
3985
|
randomBattleLevel: 86,
|
|
3929
|
-
randomDoubleBattleMoves: ["freezedry", "
|
|
3986
|
+
randomDoubleBattleMoves: ["freezedry", "haze", "icebeam", "icywind", "rapidspin", "recover", "toxic"],
|
|
3930
3987
|
randomDoubleBattleLevel: 88,
|
|
3931
3988
|
tier: "(PU)",
|
|
3932
3989
|
doublesTier: "(DUU)",
|
|
@@ -4019,6 +4076,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
4019
4076
|
tier: "NU",
|
|
4020
4077
|
doublesTier: "(DUU)",
|
|
4021
4078
|
},
|
|
4079
|
+
braviaryhisui: {
|
|
4080
|
+
isNonstandard: "Future",
|
|
4081
|
+
tier: "Illegal",
|
|
4082
|
+
},
|
|
4022
4083
|
vullaby: {
|
|
4023
4084
|
tier: "NFE",
|
|
4024
4085
|
},
|
|
@@ -4121,7 +4182,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
4121
4182
|
doublesTier: "(DUU)",
|
|
4122
4183
|
},
|
|
4123
4184
|
thundurustherian: {
|
|
4124
|
-
randomBattleMoves: ["
|
|
4185
|
+
randomBattleMoves: ["focusblast", "grassknot", "nastyplot", "psychic", "thunderbolt", "voltswitch"],
|
|
4125
4186
|
randomBattleLevel: 80,
|
|
4126
4187
|
randomDoubleBattleMoves: ["agility", "focusblast", "grassknot", "nastyplot", "sludgebomb", "thunderbolt", "voltswitch"],
|
|
4127
4188
|
randomDoubleBattleLevel: 82,
|
|
@@ -4167,7 +4228,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
4167
4228
|
randomDoubleBattleMoves: ["dracometeor", "earthpower", "freezedry", "glaciate", "protect", "roost"],
|
|
4168
4229
|
randomDoubleBattleLevel: 78,
|
|
4169
4230
|
tier: "Uber",
|
|
4170
|
-
doublesTier: "DUU",
|
|
4231
|
+
doublesTier: "(DUU)",
|
|
4171
4232
|
},
|
|
4172
4233
|
kyuremblack: {
|
|
4173
4234
|
randomBattleMoves: ["dragondance", "fusionbolt", "iciclespear", "outrage"],
|
|
@@ -4203,7 +4264,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
4203
4264
|
isNonstandard: "Past",
|
|
4204
4265
|
},
|
|
4205
4266
|
genesect: {
|
|
4206
|
-
randomBattleMoves: ["blazekick", "extremespeed", "
|
|
4267
|
+
randomBattleMoves: ["blazekick", "extremespeed", "ironhead", "leechlife", "shiftgear", "thunderbolt", "uturn"],
|
|
4207
4268
|
randomBattleLevel: 74,
|
|
4208
4269
|
randomDoubleBattleMoves: ["blazekick", "ironhead", "leechlife", "protect", "shiftgear", "thunderbolt", "uturn"],
|
|
4209
4270
|
randomDoubleBattleLevel: 78,
|
|
@@ -4347,7 +4408,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
4347
4408
|
tier: "LC",
|
|
4348
4409
|
},
|
|
4349
4410
|
pangoro: {
|
|
4350
|
-
randomBattleMoves: ["closecombat", "
|
|
4411
|
+
randomBattleMoves: ["closecombat", "gunkshot", "icepunch", "knockoff", "partingshot"],
|
|
4351
4412
|
randomBattleLevel: 84,
|
|
4352
4413
|
randomDoubleBattleMoves: ["bulletpunch", "closecombat", "drainpunch", "gunkshot", "icepunch", "knockoff", "protect"],
|
|
4353
4414
|
randomDoubleBattleLevel: 88,
|
|
@@ -4418,7 +4479,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
4418
4479
|
randomBattleMoves: ["bellydrum", "drainpunch", "facade", "playrough"],
|
|
4419
4480
|
randomBattleLevel: 80,
|
|
4420
4481
|
randomDoubleBattleMoves: ["faketears", "flamethrower", "helpinghand", "playrough", "stickyweb"],
|
|
4421
|
-
randomDoubleBattleLevel:
|
|
4482
|
+
randomDoubleBattleLevel: 86,
|
|
4422
4483
|
tier: "NUBL",
|
|
4423
4484
|
doublesTier: "(DUU)",
|
|
4424
4485
|
},
|
|
@@ -4529,6 +4590,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
4529
4590
|
sliggoo: {
|
|
4530
4591
|
tier: "NFE",
|
|
4531
4592
|
},
|
|
4593
|
+
sliggoohisui: {
|
|
4594
|
+
isNonstandard: "Future",
|
|
4595
|
+
tier: "Illegal",
|
|
4596
|
+
},
|
|
4532
4597
|
goodra: {
|
|
4533
4598
|
randomBattleMoves: ["dracometeor", "earthquake", "fireblast", "powerwhip", "sludgebomb", "thunderbolt"],
|
|
4534
4599
|
randomBattleLevel: 82,
|
|
@@ -4537,6 +4602,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
4537
4602
|
tier: "NU",
|
|
4538
4603
|
doublesTier: "(DUU)",
|
|
4539
4604
|
},
|
|
4605
|
+
goodrahisui: {
|
|
4606
|
+
isNonstandard: "Future",
|
|
4607
|
+
tier: "Illegal",
|
|
4608
|
+
},
|
|
4540
4609
|
klefki: {
|
|
4541
4610
|
randomBattleMoves: ["magnetrise", "playrough", "spikes", "thunderwave", "toxic"],
|
|
4542
4611
|
randomBattleLevel: 82,
|
|
@@ -4611,6 +4680,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
4611
4680
|
tier: "(PU)",
|
|
4612
4681
|
doublesTier: "(DUU)",
|
|
4613
4682
|
},
|
|
4683
|
+
avalugghisui: {
|
|
4684
|
+
isNonstandard: "Future",
|
|
4685
|
+
tier: "Illegal",
|
|
4686
|
+
},
|
|
4614
4687
|
noibat: {
|
|
4615
4688
|
tier: "LC",
|
|
4616
4689
|
},
|
|
@@ -4635,7 +4708,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
4635
4708
|
tier: "Illegal",
|
|
4636
4709
|
},
|
|
4637
4710
|
yveltal: {
|
|
4638
|
-
randomBattleMoves: ["defog", "heatwave", "knockoff", "oblivionwing", "roost", "suckerpunch", "
|
|
4711
|
+
randomBattleMoves: ["darkpulse", "defog", "heatwave", "knockoff", "oblivionwing", "roost", "suckerpunch", "taunt"],
|
|
4639
4712
|
randomBattleLevel: 69,
|
|
4640
4713
|
randomDoubleBattleMoves: ["darkpulse", "heatwave", "knockoff", "oblivionwing", "roost", "suckerpunch", "tailwind", "uturn"],
|
|
4641
4714
|
randomDoubleBattleLevel: 71,
|
|
@@ -4654,7 +4727,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
4654
4727
|
randomBattleMoves: ["coil", "extremespeed", "irontail", "outrage", "thousandarrows"],
|
|
4655
4728
|
randomBattleLevel: 82,
|
|
4656
4729
|
randomDoubleBattleMoves: ["dragondance", "extremespeed", "irontail", "protect", "rockslide", "thousandarrows"],
|
|
4657
|
-
randomDoubleBattleLevel:
|
|
4730
|
+
randomDoubleBattleLevel: 77,
|
|
4658
4731
|
tier: "UU",
|
|
4659
4732
|
doublesTier: "(DUU)",
|
|
4660
4733
|
},
|
|
@@ -4697,7 +4770,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
4697
4770
|
tier: "NFE",
|
|
4698
4771
|
},
|
|
4699
4772
|
decidueye: {
|
|
4700
|
-
randomBattleMoves: ["bravebird", "leafblade", "
|
|
4773
|
+
randomBattleMoves: ["bravebird", "leafblade", "poltergeist", "roost", "shadowsneak", "swordsdance"],
|
|
4701
4774
|
randomBattleLevel: 86,
|
|
4702
4775
|
randomDoubleBattleMoves: ["bravebird", "leafblade", "protect", "shadowsneak", "spiritshackle", "swordsdance"],
|
|
4703
4776
|
randomDoubleBattleLevel: 88,
|
|
@@ -4705,6 +4778,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
4705
4778
|
tier: "NU",
|
|
4706
4779
|
doublesTier: "(DUU)",
|
|
4707
4780
|
},
|
|
4781
|
+
decidueyehisui: {
|
|
4782
|
+
isNonstandard: "Future",
|
|
4783
|
+
tier: "Illegal",
|
|
4784
|
+
},
|
|
4708
4785
|
litten: {
|
|
4709
4786
|
tier: "LC",
|
|
4710
4787
|
},
|
|
@@ -4880,7 +4957,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
4880
4957
|
tier: "LC",
|
|
4881
4958
|
},
|
|
4882
4959
|
araquanid: {
|
|
4883
|
-
randomBattleMoves: ["
|
|
4960
|
+
randomBattleMoves: ["leechlife", "liquidation", "mirrorcoat", "stickyweb", "toxic"],
|
|
4884
4961
|
randomBattleLevel: 80,
|
|
4885
4962
|
randomDoubleBattleMoves: ["leechlife", "liquidation", "lunge", "protect", "stickyweb", "wideguard"],
|
|
4886
4963
|
randomDoubleBattleLevel: 84,
|
|
@@ -5266,7 +5343,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
5266
5343
|
randomBattleMoves: ["closecombat", "hornleech", "megahorn", "stoneedge", "swordsdance", "woodhammer"],
|
|
5267
5344
|
randomBattleLevel: 82,
|
|
5268
5345
|
randomDoubleBattleMoves: ["closecombat", "highhorsepower", "hornleech", "protect", "stoneedge", "swordsdance", "woodhammer"],
|
|
5269
|
-
randomDoubleBattleLevel:
|
|
5346
|
+
randomDoubleBattleLevel: 83,
|
|
5270
5347
|
tier: "UU",
|
|
5271
5348
|
doublesTier: "DUU",
|
|
5272
5349
|
},
|
|
@@ -5302,7 +5379,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
5302
5379
|
},
|
|
5303
5380
|
nihilego: {
|
|
5304
5381
|
randomBattleMoves: ["grassknot", "powergem", "sludgewave", "stealthrock", "thunderbolt", "toxicspikes"],
|
|
5305
|
-
randomBattleLevel:
|
|
5382
|
+
randomBattleLevel: 79,
|
|
5306
5383
|
randomDoubleBattleMoves: ["grassknot", "meteorbeam", "protect", "sludgebomb", "thunderbolt"],
|
|
5307
5384
|
randomDoubleBattleLevel: 81,
|
|
5308
5385
|
tier: "UU",
|
|
@@ -5388,7 +5465,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
5388
5465
|
},
|
|
5389
5466
|
magearna: {
|
|
5390
5467
|
randomBattleMoves: ["agility", "calmmind", "flashcannon", "fleurcannon"],
|
|
5391
|
-
randomBattleLevel:
|
|
5468
|
+
randomBattleLevel: 75,
|
|
5392
5469
|
randomDoubleBattleMoves: ["agility", "aurasphere", "dazzlinggleam", "flashcannon", "fleurcannon", "protect", "trick"],
|
|
5393
5470
|
randomDoubleBattleLevel: 72,
|
|
5394
5471
|
tier: "Uber",
|
|
@@ -5451,7 +5528,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
5451
5528
|
doublesTier: "(DUU)",
|
|
5452
5529
|
},
|
|
5453
5530
|
melmetal: {
|
|
5454
|
-
randomBattleMoves: ["doubleironbash", "earthquake", "
|
|
5531
|
+
randomBattleMoves: ["doubleironbash", "earthquake", "superpower", "thunderpunch", "thunderwave"],
|
|
5455
5532
|
randomBattleLevel: 74,
|
|
5456
5533
|
randomDoubleBattleMoves: ["acidarmor", "bodypress", "doubleironbash", "protect", "thunderpunch", "thunderwave"],
|
|
5457
5534
|
randomDoubleBattleLevel: 76,
|
|
@@ -5500,7 +5577,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
5500
5577
|
},
|
|
5501
5578
|
cinderacegmax: {
|
|
5502
5579
|
randomBattleLevel: 74,
|
|
5503
|
-
randomBattleMoves: ["bulkup", "
|
|
5580
|
+
randomBattleMoves: ["bulkup", "highjumpkick", "pyroball", "suckerpunch"],
|
|
5504
5581
|
isNonstandard: "Gigantamax",
|
|
5505
5582
|
tier: "AG",
|
|
5506
5583
|
doublesTier: "(DUber)",
|
|
@@ -5584,7 +5661,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
5584
5661
|
randomBattleMoves: ["darkpulse", "foulplay", "grassknot", "nastyplot", "partingshot", "psychic"],
|
|
5585
5662
|
randomBattleLevel: 86,
|
|
5586
5663
|
randomDoubleBattleMoves: ["faketears", "foulplay", "partingshot", "snarl", "taunt"],
|
|
5587
|
-
randomDoubleBattleLevel:
|
|
5664
|
+
randomDoubleBattleLevel: 89,
|
|
5588
5665
|
tier: "(PU)",
|
|
5589
5666
|
doublesTier: "(DUU)",
|
|
5590
5667
|
},
|
|
@@ -5650,7 +5727,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
5650
5727
|
},
|
|
5651
5728
|
coalossalgmax: {
|
|
5652
5729
|
randomBattleMoves: ["overheat", "rapidspin", "spikes", "stealthrock", "stoneedge", "willowisp"],
|
|
5653
|
-
randomBattleLevel:
|
|
5730
|
+
randomBattleLevel: 87,
|
|
5654
5731
|
randomDoubleBattleMoves: ["fireblast", "incinerate", "protect", "stealthrock", "stoneedge", "willowisp"],
|
|
5655
5732
|
randomDoubleBattleLevel: 85,
|
|
5656
5733
|
isNonstandard: "Gigantamax",
|
|
@@ -5692,7 +5769,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
5692
5769
|
tier: "LC",
|
|
5693
5770
|
},
|
|
5694
5771
|
sandaconda: {
|
|
5695
|
-
randomBattleMoves: ["coil", "earthquake", "glare", "
|
|
5772
|
+
randomBattleMoves: ["coil", "earthquake", "glare", "rest", "stealthrock", "stoneedge"],
|
|
5696
5773
|
randomBattleLevel: 84,
|
|
5697
5774
|
tier: "PU",
|
|
5698
5775
|
doublesTier: "(DUU)",
|
|
@@ -5759,13 +5836,13 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
5759
5836
|
randomBattleMoves: ["coil", "firelash", "knockoff", "leechlife", "powerwhip"],
|
|
5760
5837
|
randomBattleLevel: 84,
|
|
5761
5838
|
randomDoubleBattleMoves: ["coil", "firelash", "knockoff", "leechlife", "powerwhip", "protect"],
|
|
5762
|
-
randomDoubleBattleLevel:
|
|
5839
|
+
randomDoubleBattleLevel: 89,
|
|
5763
5840
|
tier: "(PU)",
|
|
5764
5841
|
doublesTier: "(DUU)",
|
|
5765
5842
|
},
|
|
5766
5843
|
centiskorchgmax: {
|
|
5767
5844
|
randomDoubleBattleMoves: ["coil", "firelash", "knockoff", "leechlife", "powerwhip", "protect"],
|
|
5768
|
-
randomDoubleBattleLevel:
|
|
5845
|
+
randomDoubleBattleLevel: 89,
|
|
5769
5846
|
isNonstandard: "Gigantamax",
|
|
5770
5847
|
tier: "AG",
|
|
5771
5848
|
doublesTier: "(DUber)",
|
|
@@ -5893,7 +5970,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
5893
5970
|
},
|
|
5894
5971
|
indeedee: {
|
|
5895
5972
|
randomBattleMoves: ["calmmind", "expandingforce", "hypervoice", "mysticalfire", "trick"],
|
|
5896
|
-
randomBattleLevel:
|
|
5973
|
+
randomBattleLevel: 83,
|
|
5897
5974
|
randomDoubleBattleMoves: ["encore", "expandingforce", "hypervoice", "mysticalfire", "protect", "trick"],
|
|
5898
5975
|
randomDoubleBattleLevel: 80,
|
|
5899
5976
|
tier: "NUBL",
|
|
@@ -5901,7 +5978,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
5901
5978
|
},
|
|
5902
5979
|
indeedeef: {
|
|
5903
5980
|
randomBattleMoves: ["calmmind", "expandingforce", "healingwish", "hypervoice", "mysticalfire"],
|
|
5904
|
-
randomBattleLevel:
|
|
5981
|
+
randomBattleLevel: 85,
|
|
5905
5982
|
randomDoubleBattleMoves: ["expandingforce", "followme", "healpulse", "helpinghand", "protect"],
|
|
5906
5983
|
randomDoubleBattleLevel: 80,
|
|
5907
5984
|
tier: "NU",
|
|
@@ -5948,7 +6025,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
5948
6025
|
randomDoubleBattleMoves: ["blizzard", "boltbeak", "iciclecrash", "lowkick", "protect"],
|
|
5949
6026
|
randomDoubleBattleLevel: 88,
|
|
5950
6027
|
tier: "UUBL",
|
|
5951
|
-
doublesTier: "DUU",
|
|
6028
|
+
doublesTier: "(DUU)",
|
|
5952
6029
|
},
|
|
5953
6030
|
dracovish: {
|
|
5954
6031
|
randomBattleMoves: ["crunch", "fishiousrend", "icefang", "lowkick", "psychicfangs"],
|
|
@@ -5963,7 +6040,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
5963
6040
|
randomBattleLevel: 86,
|
|
5964
6041
|
randomDoubleBattleMoves: ["blizzard", "fishiousrend", "iciclecrash", "protect", "superfang"],
|
|
5965
6042
|
randomDoubleBattleLevel: 88,
|
|
5966
|
-
tier: "
|
|
6043
|
+
tier: "(PU)",
|
|
5967
6044
|
doublesTier: "(DUU)",
|
|
5968
6045
|
},
|
|
5969
6046
|
duraludon: {
|
|
@@ -6011,14 +6088,14 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
6011
6088
|
},
|
|
6012
6089
|
zamazenta: {
|
|
6013
6090
|
randomBattleMoves: ["closecombat", "crunch", "psychicfangs", "wildcharge"],
|
|
6014
|
-
randomBattleLevel:
|
|
6091
|
+
randomBattleLevel: 73,
|
|
6015
6092
|
randomDoubleBattleMoves: ["closecombat", "crunch", "playrough", "protect", "psychicfangs"],
|
|
6016
6093
|
randomDoubleBattleLevel: 74,
|
|
6017
6094
|
tier: "Uber",
|
|
6018
6095
|
doublesTier: "DUber",
|
|
6019
6096
|
},
|
|
6020
6097
|
zamazentacrowned: {
|
|
6021
|
-
randomBattleMoves: ["behemothbash", "closecombat", "crunch", "
|
|
6098
|
+
randomBattleMoves: ["behemothbash", "closecombat", "crunch", "howl", "psychicfangs"],
|
|
6022
6099
|
randomBattleLevel: 71,
|
|
6023
6100
|
randomDoubleBattleMoves: ["behemothbash", "closecombat", "crunch", "howl", "protect", "psychicfangs"],
|
|
6024
6101
|
randomDoubleBattleLevel: 72,
|
|
@@ -6064,7 +6141,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
6064
6141
|
doublesTier: "(DUber)",
|
|
6065
6142
|
},
|
|
6066
6143
|
urshifurapidstrikegmax: {
|
|
6067
|
-
randomBattleMoves: ["bulkup", "closecombat", "
|
|
6144
|
+
randomBattleMoves: ["bulkup", "closecombat", "icepunch", "surgingstrikes", "uturn"],
|
|
6068
6145
|
randomBattleLevel: 78,
|
|
6069
6146
|
isNonstandard: "Gigantamax",
|
|
6070
6147
|
tier: "AG",
|
|
@@ -6094,7 +6171,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
6094
6171
|
doublesTier: "DOU",
|
|
6095
6172
|
},
|
|
6096
6173
|
regidrago: {
|
|
6097
|
-
randomBattleMoves: ["dracometeor", "dragondance", "
|
|
6174
|
+
randomBattleMoves: ["dracometeor", "dragondance", "firefang", "hammerarm", "outrage"],
|
|
6098
6175
|
randomBattleLevel: 78,
|
|
6099
6176
|
randomDoubleBattleMoves: ["crunch", "dragonclaw", "dragonenergy", "firefang"],
|
|
6100
6177
|
randomDoubleBattleLevel: 78,
|
|
@@ -6118,15 +6195,15 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
6118
6195
|
doublesTier: "DUU",
|
|
6119
6196
|
},
|
|
6120
6197
|
calyrex: {
|
|
6121
|
-
randomBattleMoves: ["calmmind", "gigadrain", "
|
|
6198
|
+
randomBattleMoves: ["calmmind", "gigadrain", "leechseed", "psyshock", "substitute"],
|
|
6122
6199
|
randomBattleLevel: 88,
|
|
6123
|
-
randomDoubleBattleMoves: ["
|
|
6200
|
+
randomDoubleBattleMoves: ["helpinghand", "leafstorm", "pollenpuff", "protect"],
|
|
6124
6201
|
randomDoubleBattleLevel: 94,
|
|
6125
6202
|
tier: "(PU)",
|
|
6126
6203
|
doublesTier: "(DUU)",
|
|
6127
6204
|
},
|
|
6128
6205
|
calyrexice: {
|
|
6129
|
-
randomBattleMoves: ["closecombat", "glaciallance", "highhorsepower", "trickroom"
|
|
6206
|
+
randomBattleMoves: ["agility", "closecombat", "glaciallance", "highhorsepower", "trickroom"],
|
|
6130
6207
|
randomBattleLevel: 72,
|
|
6131
6208
|
randomDoubleBattleMoves: ["closecombat", "glaciallance", "highhorsepower", "swordsdance", "trickroom"],
|
|
6132
6209
|
randomDoubleBattleLevel: 72,
|
|
@@ -6141,6 +6218,42 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
6141
6218
|
tier: "Uber",
|
|
6142
6219
|
doublesTier: "DUber",
|
|
6143
6220
|
},
|
|
6221
|
+
wyrdeer: {
|
|
6222
|
+
isNonstandard: "Future",
|
|
6223
|
+
tier: "Illegal",
|
|
6224
|
+
},
|
|
6225
|
+
kleavor: {
|
|
6226
|
+
isNonstandard: "Future",
|
|
6227
|
+
tier: "Illegal",
|
|
6228
|
+
},
|
|
6229
|
+
ursaluna: {
|
|
6230
|
+
isNonstandard: "Future",
|
|
6231
|
+
tier: "Illegal",
|
|
6232
|
+
},
|
|
6233
|
+
basculegion: {
|
|
6234
|
+
isNonstandard: "Future",
|
|
6235
|
+
tier: "Illegal",
|
|
6236
|
+
},
|
|
6237
|
+
basculegionf: {
|
|
6238
|
+
isNonstandard: "Future",
|
|
6239
|
+
tier: "Illegal",
|
|
6240
|
+
},
|
|
6241
|
+
sneasler: {
|
|
6242
|
+
isNonstandard: "Future",
|
|
6243
|
+
tier: "Illegal",
|
|
6244
|
+
},
|
|
6245
|
+
overqwil: {
|
|
6246
|
+
isNonstandard: "Future",
|
|
6247
|
+
tier: "Illegal",
|
|
6248
|
+
},
|
|
6249
|
+
enamorus: {
|
|
6250
|
+
isNonstandard: "Future",
|
|
6251
|
+
tier: "Illegal",
|
|
6252
|
+
},
|
|
6253
|
+
enamorustherian: {
|
|
6254
|
+
isNonstandard: "Future",
|
|
6255
|
+
tier: "Illegal",
|
|
6256
|
+
},
|
|
6144
6257
|
missingno: {
|
|
6145
6258
|
isNonstandard: "Custom",
|
|
6146
6259
|
tier: "Illegal",
|