@pkmn/sim 0.6.1 → 0.6.2

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 (43) hide show
  1. package/build/config/formats.js +71 -97
  2. package/build/config/formats.js.map +1 -1
  3. package/build/data/aliases.js +2 -2
  4. package/build/data/aliases.js.map +1 -1
  5. package/build/data/formats-data.js +111 -115
  6. package/build/data/formats-data.js.map +1 -1
  7. package/build/data/items.js +7 -1
  8. package/build/data/items.js.map +1 -1
  9. package/build/data/learnsets.js +3 -2
  10. package/build/data/learnsets.js.map +1 -1
  11. package/build/data/mods/gen1/moves.js +0 -10
  12. package/build/data/mods/gen1/moves.js.map +1 -1
  13. package/build/data/mods/gen1/scripts.js +15 -14
  14. package/build/data/mods/gen1/scripts.js.map +1 -1
  15. package/build/data/mods/gen2/moves.js +0 -1
  16. package/build/data/mods/gen2/moves.js.map +1 -1
  17. package/build/data/moves.js +44 -25
  18. package/build/data/moves.js.map +1 -1
  19. package/build/data/pokedex.js +1 -1
  20. package/build/sim/dex-conditions.d.ts +1 -0
  21. package/build/sim/dex-conditions.js.map +1 -1
  22. package/build/sim/field.js +1 -0
  23. package/build/sim/field.js.map +1 -1
  24. package/build/sim/pokemon.js +2 -10
  25. package/build/sim/pokemon.js.map +1 -1
  26. package/build/sim/team-validator.d.ts +2 -2
  27. package/build/sim/team-validator.js +19 -14
  28. package/build/sim/team-validator.js.map +1 -1
  29. package/config/formats.ts +75 -103
  30. package/data/aliases.ts +2 -2
  31. package/data/formats-data.ts +111 -115
  32. package/data/items.ts +7 -1
  33. package/data/learnsets.ts +3 -2
  34. package/data/mods/gen1/moves.ts +0 -10
  35. package/data/mods/gen1/scripts.ts +14 -14
  36. package/data/mods/gen2/moves.ts +0 -1
  37. package/data/moves.ts +43 -23
  38. package/data/pokedex.ts +1 -1
  39. package/package.json +1 -1
  40. package/sim/dex-conditions.ts +1 -0
  41. package/sim/field.ts +1 -0
  42. package/sim/pokemon.ts +1 -8
  43. package/sim/team-validator.ts +27 -15
@@ -82,7 +82,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
82
82
  blastoisegmax: {
83
83
  randomBattleMoves: ["icebeam", "protect", "rapidspin", "scald", "toxic"],
84
84
  randomBattleLevel: 82,
85
- randomDoubleBattleMoves: ["fakeout", "flipturn", "followme", "icywind", "lifedew", "muddywater", "protect"],
85
+ randomDoubleBattleMoves: ["fakeout", "flipturn", "followme", "icywind", "lifedew", "muddywater"],
86
86
  randomDoubleBattleLevel: 80,
87
87
  isNonstandard: "Gigantamax",
88
88
  tier: "AG",
@@ -292,7 +292,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
292
292
  raichu: {
293
293
  randomBattleMoves: ["focusblast", "grassknot", "nastyplot", "surf", "thunderbolt", "voltswitch"],
294
294
  randomBattleLevel: 86,
295
- randomDoubleBattleMoves: ["encore", "fakeout", "grassknot", "helpinghand", "nuzzle", "protect", "thunderbolt", "voltswitch"],
295
+ randomDoubleBattleMoves: ["encore", "fakeout", "helpinghand", "nuzzle", "thunderbolt", "voltswitch"],
296
296
  randomDoubleBattleLevel: 88,
297
297
  randomBattleNoDynamaxMoves: ["encore", "focusblast", "grassknot", "nastyplot", "surf", "thunderbolt", "voltswitch"],
298
298
  tier: "(PU)",
@@ -489,7 +489,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
489
489
  dugtrio: {
490
490
  randomBattleMoves: ["earthquake", "memento", "stoneedge", "suckerpunch"],
491
491
  randomBattleLevel: 82,
492
- randomDoubleBattleMoves: ["highhorsepower", "memento", "protect", "rockslide", "substitute", "suckerpunch"],
492
+ randomDoubleBattleMoves: ["highhorsepower", "memento", "protect", "rockslide", "suckerpunch"],
493
493
  randomDoubleBattleLevel: 88,
494
494
  tier: "(PU)",
495
495
  doublesTier: "(DUU)",
@@ -531,7 +531,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
531
531
  persianalola: {
532
532
  randomBattleMoves: ["darkpulse", "hypnosis", "nastyplot", "thunderbolt"],
533
533
  randomBattleLevel: 82,
534
- randomDoubleBattleMoves: ["fakeout", "foulplay", "icywind", "partingshot", "protect", "snarl", "taunt"],
534
+ randomDoubleBattleMoves: ["fakeout", "foulplay", "icywind", "partingshot", "snarl", "taunt"],
535
535
  randomDoubleBattleLevel: 88,
536
536
  tier: "(PU)",
537
537
  doublesTier: "(DUU)",
@@ -597,7 +597,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
597
597
  poliwrath: {
598
598
  randomBattleMoves: ["closecombat", "darkestlariat", "liquidation", "raindance"],
599
599
  randomBattleLevel: 84,
600
- randomDoubleBattleMoves: ["closecombat", "coaching", "darkestlariat", "helpinghand", "icywind", "liquidation", "protect"],
600
+ randomDoubleBattleMoves: ["closecombat", "coaching", "helpinghand", "liquidation", "protect"],
601
601
  randomDoubleBattleLevel: 88,
602
602
  tier: "(PU)",
603
603
  doublesTier: "(DUU)",
@@ -606,7 +606,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
606
606
  politoed: {
607
607
  randomBattleMoves: ["encore", "icebeam", "protect", "rest", "scald", "toxic"],
608
608
  randomBattleLevel: 86,
609
- randomDoubleBattleMoves: ["earthpower", "helpinghand", "icywind", "muddywater", "protect"],
609
+ randomDoubleBattleMoves: ["haze", "helpinghand", "icywind", "protect", "scald"],
610
610
  randomDoubleBattleLevel: 84,
611
611
  tier: "(PU)",
612
612
  doublesTier: "DUU",
@@ -1030,7 +1030,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1030
1030
  hitmonchan: {
1031
1031
  randomBattleMoves: ["bulkup", "drainpunch", "icepunch", "machpunch", "rapidspin", "throatchop"],
1032
1032
  randomBattleLevel: 86,
1033
- randomDoubleBattleMoves: ["coaching", "drainpunch", "feint", "firepunch", "icepunch", "machpunch", "protect"],
1033
+ randomDoubleBattleMoves: ["coaching", "drainpunch", "feint", "firepunch", "icepunch", "machpunch"],
1034
1034
  randomDoubleBattleLevel: 88,
1035
1035
  tier: "(PU)",
1036
1036
  doublesTier: "(DUU)",
@@ -1051,7 +1051,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1051
1051
  lickilicky: {
1052
1052
  randomBattleMoves: ["bodyslam", "earthquake", "explosion", "healbell", "knockoff", "protect", "swordsdance", "wish"],
1053
1053
  randomBattleLevel: 86,
1054
- randomDoubleBattleMoves: ["bodyslam", "explosion", "helpinghand", "icywind", "knockoff", "protect"],
1054
+ randomDoubleBattleMoves: ["bodyslam", "explosion", "helpinghand", "icywind", "knockoff"],
1055
1055
  randomDoubleBattleLevel: 88,
1056
1056
  tier: "(PU)",
1057
1057
  doublesTier: "(DUU)",
@@ -1108,7 +1108,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1108
1108
  blissey: {
1109
1109
  randomBattleMoves: ["seismictoss", "softboiled", "stealthrock", "teleport", "toxic"],
1110
1110
  randomBattleLevel: 83,
1111
- randomDoubleBattleMoves: ["allyswitch", "protect", "seismictoss", "softboiled", "thunderwave", "toxic"],
1111
+ randomDoubleBattleMoves: ["allyswitch", "healpulse", "helpinghand", "protect", "seismictoss", "softboiled", "thunderwave", "toxic"],
1112
1112
  randomDoubleBattleLevel: 88,
1113
1113
  tier: "OU",
1114
1114
  doublesTier: "(DUU)",
@@ -1175,7 +1175,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1175
1175
  starmie: {
1176
1176
  randomBattleMoves: ["hydropump", "icebeam", "psyshock", "rapidspin", "recover", "scald", "thunderbolt"],
1177
1177
  randomBattleLevel: 84,
1178
- randomDoubleBattleMoves: ["flipturn", "hydropump", "icebeam", "protect", "psyshock", "thunderbolt"],
1178
+ randomDoubleBattleMoves: ["hydropump", "icebeam", "protect", "psyshock", "thunderbolt", "trick"],
1179
1179
  randomDoubleBattleLevel: 84,
1180
1180
  tier: "NU",
1181
1181
  doublesTier: "(DUU)",
@@ -1196,8 +1196,6 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1196
1196
  mrmimegalar: {
1197
1197
  randomBattleMoves: ["focusblast", "freezedry", "nastyplot", "psychic", "rapidspin"],
1198
1198
  randomBattleLevel: 86,
1199
- randomDoubleBattleMoves: ["fakeout", "focusblast", "freezedry", "nastyplot", "protect", "psychic"],
1200
- randomDoubleBattleLevel: 86,
1201
1199
  tier: "NFE",
1202
1200
  },
1203
1201
  mrrime: {
@@ -1355,7 +1353,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1355
1353
  vaporeon: {
1356
1354
  randomBattleMoves: ["healbell", "icebeam", "protect", "scald", "toxic", "wish"],
1357
1355
  randomBattleLevel: 84,
1358
- randomDoubleBattleMoves: ["healbell", "icywind", "protect", "scald", "toxic", "wish"],
1356
+ randomDoubleBattleMoves: ["helpinghand", "icywind", "protect", "scald", "toxic", "wish"],
1359
1357
  randomDoubleBattleLevel: 88,
1360
1358
  tier: "NU",
1361
1359
  doublesTier: "(DUU)",
@@ -1364,7 +1362,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1364
1362
  jolteon: {
1365
1363
  randomBattleMoves: ["hypervoice", "shadowball", "thunderbolt", "voltswitch"],
1366
1364
  randomBattleLevel: 82,
1367
- randomDoubleBattleMoves: ["faketears", "protect", "shadowball", "thunderbolt", "thunderwave"],
1365
+ randomDoubleBattleMoves: ["faketears", "helpinghand", "shadowball", "thunderbolt", "thunderwave"],
1368
1366
  randomDoubleBattleLevel: 86,
1369
1367
  tier: "PU",
1370
1368
  doublesTier: "(DUU)",
@@ -1430,7 +1428,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1430
1428
  porygon2: {
1431
1429
  randomBattleMoves: ["discharge", "icebeam", "recover", "toxic", "triattack"],
1432
1430
  randomBattleLevel: 82,
1433
- randomDoubleBattleMoves: ["icebeam", "protect", "recover", "thunderbolt", "toxic", "triattack"],
1431
+ randomDoubleBattleMoves: ["icebeam", "recover", "thunderbolt", "toxic", "triattack", "trickroom"],
1434
1432
  randomDoubleBattleLevel: 83,
1435
1433
  tier: "RU",
1436
1434
  doublesTier: "DOU",
@@ -1444,7 +1442,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1444
1442
  randomBattleNoDynamaxMoves: ["icebeam", "nastyplot", "shadowball", "thunderbolt", "triattack", "trick"],
1445
1443
  tier: "NUBL",
1446
1444
  doublesTier: "(DUU)",
1447
- natDexTier: "RUBL",
1445
+ natDexTier: "UUBL",
1448
1446
  },
1449
1447
  omanyte: {
1450
1448
  tier: "LC",
@@ -1464,7 +1462,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1464
1462
  kabutops: {
1465
1463
  randomBattleMoves: ["aquajet", "knockoff", "liquidation", "rapidspin", "stoneedge", "swordsdance"],
1466
1464
  randomBattleLevel: 82,
1467
- randomDoubleBattleMoves: ["knockoff", "protect", "stoneedge", "superpower", "swordsdance", "waterfall"],
1465
+ randomDoubleBattleMoves: ["aquajet", "protect", "stoneedge", "superpower", "swordsdance", "waterfall"],
1468
1466
  randomDoubleBattleLevel: 86,
1469
1467
  tier: "(PU)",
1470
1468
  doublesTier: "(DUU)",
@@ -1507,7 +1505,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1507
1505
  articuno: {
1508
1506
  randomBattleMoves: ["defog", "freezedry", "healbell", "roost", "toxic"],
1509
1507
  randomBattleLevel: 84,
1510
- randomDoubleBattleMoves: ["freezedry", "healbell", "hurricane", "icebeam", "roost", "toxic"],
1508
+ randomDoubleBattleMoves: ["freezedry", "healbell", "hurricane", "icebeam", "roost"],
1511
1509
  randomDoubleBattleLevel: 86,
1512
1510
  tier: "(PU)",
1513
1511
  doublesTier: "(DUU)",
@@ -1719,7 +1717,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1719
1717
  togekiss: {
1720
1718
  randomBattleMoves: ["airslash", "aurasphere", "fireblast", "nastyplot", "roost", "thunderwave", "trick"],
1721
1719
  randomBattleLevel: 80,
1722
- randomDoubleBattleMoves: ["airslash", "dazzlinggleam", "followme", "heatwave", "protect", "tailwind"],
1720
+ randomDoubleBattleMoves: ["airslash", "dazzlinggleam", "followme", "helpinghand", "protect", "tailwind"],
1723
1721
  randomDoubleBattleLevel: 80,
1724
1722
  tier: "RU",
1725
1723
  doublesTier: "DUU",
@@ -1835,7 +1833,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1835
1833
  quagsire: {
1836
1834
  randomBattleMoves: ["earthquake", "icebeam", "recover", "scald", "toxic"],
1837
1835
  randomBattleLevel: 84,
1838
- randomDoubleBattleMoves: ["highhorsepower", "protect", "recover", "scald", "toxic"],
1836
+ randomDoubleBattleMoves: ["highhorsepower", "protect", "recover", "scald", "yawn"],
1839
1837
  randomDoubleBattleLevel: 88,
1840
1838
  tier: "PU",
1841
1839
  doublesTier: "(DUU)",
@@ -1970,7 +1968,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1970
1968
  weavile: {
1971
1969
  randomBattleMoves: ["iceshard", "knockoff", "lowkick", "swordsdance", "tripleaxel"],
1972
1970
  randomBattleLevel: 79,
1973
- randomDoubleBattleMoves: ["fakeout", "iceshard", "knockoff", "swordsdance", "tripleaxel"],
1971
+ randomDoubleBattleMoves: ["fakeout", "iceshard", "knockoff", "lowkick", "tripleaxel"],
1974
1972
  randomDoubleBattleLevel: 84,
1975
1973
  tier: "OU",
1976
1974
  doublesTier: "DUU",
@@ -2142,7 +2140,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
2142
2140
  suicune: {
2143
2141
  randomBattleMoves: ["airslash", "calmmind", "icebeam", "rest", "scald", "sleeptalk"],
2144
2142
  randomBattleLevel: 80,
2145
- randomDoubleBattleMoves: ["icebeam", "scald", "snarl", "tailwind", "toxic"],
2143
+ randomDoubleBattleMoves: ["calmmind", "icebeam", "scald", "snarl", "tailwind"],
2146
2144
  randomDoubleBattleLevel: 82,
2147
2145
  randomBattleNoDynamaxMoves: ["calmmind", "icebeam", "rest", "scald", "sleeptalk"],
2148
2146
  tier: "RU",
@@ -2204,7 +2202,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
2204
2202
  sceptile: {
2205
2203
  randomBattleMoves: ["earthquake", "focusblast", "gigadrain", "leafstorm", "leechseed", "rockslide", "substitute"],
2206
2204
  randomBattleLevel: 86,
2207
- randomDoubleBattleMoves: ["breakingswipe", "dragonpulse", "focusblast", "leafstorm", "protect"],
2205
+ randomDoubleBattleMoves: ["breakingswipe", "energyball", "focusblast", "leafstorm"],
2208
2206
  randomDoubleBattleLevel: 88,
2209
2207
  tier: "PUBL",
2210
2208
  doublesTier: "(DUU)",
@@ -2244,7 +2242,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
2244
2242
  swampert: {
2245
2243
  randomBattleMoves: ["earthquake", "flipturn", "icebeam", "protect", "scald", "stealthrock", "toxic"],
2246
2244
  randomBattleLevel: 80,
2247
- randomDoubleBattleMoves: ["highhorsepower", "icywind", "muddywater", "protect", "stealthrock", "wideguard"],
2245
+ randomDoubleBattleMoves: ["highhorsepower", "icywind", "liquidation", "muddywater", "protect", "stealthrock", "wideguard"],
2248
2246
  randomDoubleBattleLevel: 86,
2249
2247
  tier: "UU",
2250
2248
  doublesTier: "(DUU)",
@@ -2342,7 +2340,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
2342
2340
  shiftry: {
2343
2341
  randomBattleMoves: ["darkpulse", "defog", "heatwave", "leafstorm", "nastyplot", "suckerpunch"],
2344
2342
  randomBattleLevel: 86,
2345
- randomDoubleBattleMoves: ["fakeout", "knockoff", "leafblade", "suckerpunch", "swordsdance", "tailwind"],
2343
+ randomDoubleBattleMoves: ["defog", "fakeout", "knockoff", "leafblade", "suckerpunch", "tailwind"],
2346
2344
  randomDoubleBattleLevel: 88,
2347
2345
  randomBattleNoDynamaxMoves: ["defog", "knockoff", "leafblade", "lowkick", "rockslide", "suckerpunch", "swordsdance"],
2348
2346
  tier: "(PU)",
@@ -2455,7 +2453,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
2455
2453
  shedinja: {
2456
2454
  randomBattleMoves: ["poltergeist", "shadowsneak", "swordsdance", "willowisp", "xscissor"],
2457
2455
  randomBattleLevel: 88,
2458
- randomDoubleBattleMoves: ["allyswitch", "poltergeist", "protect", "shadowsneak", "swordsdance", "willowisp", "xscissor"],
2456
+ randomDoubleBattleMoves: ["poltergeist", "protect", "shadowsneak", "swordsdance", "willowisp", "xscissor"],
2459
2457
  randomDoubleBattleLevel: 95,
2460
2458
  tier: "(PU)",
2461
2459
  doublesTier: "(DUU)",
@@ -2655,7 +2653,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
2655
2653
  wailord: {
2656
2654
  randomBattleMoves: ["hydropump", "hypervoice", "icebeam", "waterspout"],
2657
2655
  randomBattleLevel: 90,
2658
- randomDoubleBattleMoves: ["hydropump", "hypervoice", "icebeam", "waterspout"],
2656
+ randomDoubleBattleMoves: ["hydropump", "heavyslam", "icebeam", "waterspout"],
2659
2657
  randomDoubleBattleLevel: 88,
2660
2658
  tier: "(PU)",
2661
2659
  doublesTier: "(DUU)",
@@ -2764,7 +2762,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
2764
2762
  solrock: {
2765
2763
  randomBattleMoves: ["earthquake", "explosion", "morningsun", "rockslide", "stealthrock", "willowisp"],
2766
2764
  randomBattleLevel: 88,
2767
- randomDoubleBattleMoves: ["allyswitch", "flareblitz", "helpinghand", "rockslide", "stoneedge", "willowisp"],
2765
+ randomDoubleBattleMoves: ["flareblitz", "helpinghand", "rockslide", "stoneedge", "willowisp"],
2768
2766
  randomDoubleBattleLevel: 88,
2769
2767
  tier: "(PU)",
2770
2768
  doublesTier: "(DUU)",
@@ -2800,7 +2798,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
2800
2798
  claydol: {
2801
2799
  randomBattleMoves: ["earthquake", "icebeam", "psychic", "rapidspin", "stealthrock", "toxic"],
2802
2800
  randomBattleLevel: 86,
2803
- randomDoubleBattleMoves: ["allyswitch", "earthpower", "icebeam", "psychic", "rapidspin", "stealthrock"],
2801
+ randomDoubleBattleMoves: ["allyswitch", "earthpower", "icebeam", "psychic", "rapidspin"],
2804
2802
  randomDoubleBattleLevel: 88,
2805
2803
  tier: "PU",
2806
2804
  doublesTier: "(DUU)",
@@ -2812,7 +2810,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
2812
2810
  cradily: {
2813
2811
  randomBattleMoves: ["powerwhip", "recover", "stealthrock", "stoneedge", "swordsdance", "toxic"],
2814
2812
  randomBattleLevel: 86,
2815
- randomDoubleBattleMoves: ["powerwhip", "protect", "recover", "stealthrock", "stoneedge", "stringshot", "toxic"],
2813
+ randomDoubleBattleMoves: ["powerwhip", "protect", "recover", "stealthrock", "stoneedge", "stringshot"],
2816
2814
  randomDoubleBattleLevel: 88,
2817
2815
  tier: "(PU)",
2818
2816
  doublesTier: "(DUU)",
@@ -2881,8 +2879,6 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
2881
2879
  tier: "LC",
2882
2880
  },
2883
2881
  dusclops: {
2884
- randomDoubleBattleMoves: ["allyswitch", "haze", "helpinghand", "nightshade", "painsplit", "trickroom", "willowisp"],
2885
- randomDoubleBattleLevel: 84,
2886
2882
  tier: "NFE",
2887
2883
  },
2888
2884
  dusknoir: {
@@ -3077,7 +3073,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3077
3073
  latios: {
3078
3074
  randomBattleMoves: ["calmmind", "dracometeor", "mysticalfire", "psyshock", "roost", "trick"],
3079
3075
  randomBattleLevel: 78,
3080
- randomDoubleBattleMoves: ["dracometeor", "dragonpulse", "mysticalfire", "psychic", "psyshock", "roost", "tailwind", "trick"],
3076
+ randomDoubleBattleMoves: ["dracometeor", "mysticalfire", "psychic", "psyshock", "roost", "tailwind", "trick"],
3081
3077
  randomDoubleBattleLevel: 80,
3082
3078
  tier: "UUBL",
3083
3079
  doublesTier: "(DUU)",
@@ -3335,7 +3331,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3335
3331
  cherrim: {
3336
3332
  randomBattleMoves: ["dazzlinggleam", "energyball", "healingwish", "petaldance", "pollenpuff"],
3337
3333
  randomBattleLevel: 93,
3338
- randomDoubleBattleMoves: ["aromatherapy", "energyball", "helpinghand", "pollenpuff", "protect"],
3334
+ randomDoubleBattleMoves: ["energyball", "healingwish", "helpinghand", "pollenpuff"],
3339
3335
  randomDoubleBattleLevel: 92,
3340
3336
  tier: "(PU)",
3341
3337
  doublesTier: "(DUU)",
@@ -3351,7 +3347,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3351
3347
  gastrodon: {
3352
3348
  randomBattleMoves: ["clearsmog", "earthquake", "icebeam", "recover", "scald", "toxic"],
3353
3349
  randomBattleLevel: 84,
3354
- randomDoubleBattleMoves: ["clearsmog", "earthpower", "icywind", "protect", "recover", "scald", "yawn"],
3350
+ randomDoubleBattleMoves: ["clearsmog", "earthpower", "icywind", "recover", "scald", "yawn"],
3355
3351
  randomDoubleBattleLevel: 80,
3356
3352
  tier: "NU",
3357
3353
  doublesTier: "DOU",
@@ -3364,7 +3360,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3364
3360
  drifblim: {
3365
3361
  randomBattleMoves: ["calmmind", "shadowball", "strengthsap", "thunderbolt"],
3366
3362
  randomBattleLevel: 84,
3367
- randomDoubleBattleMoves: ["destinybond", "hex", "tailwind", "thunderwave", "willowisp"],
3363
+ randomDoubleBattleMoves: ["calmmind", "icywind", "shadowball", "strengthsap"],
3368
3364
  randomDoubleBattleLevel: 84,
3369
3365
  tier: "(PU)",
3370
3366
  doublesTier: "(DUU)",
@@ -3403,7 +3399,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3403
3399
  skuntank: {
3404
3400
  randomBattleMoves: ["crunch", "defog", "fireblast", "poisonjab", "suckerpunch", "taunt", "toxic"],
3405
3401
  randomBattleLevel: 85,
3406
- randomDoubleBattleMoves: ["crunch", "fireblast", "haze", "poisonjab", "suckerpunch", "taunt"],
3402
+ randomDoubleBattleMoves: ["crunch", "defog", "fireblast", "poisonjab", "suckerpunch", "taunt"],
3407
3403
  randomDoubleBattleLevel: 88,
3408
3404
  tier: "(PU)",
3409
3405
  doublesTier: "(DUU)",
@@ -3415,7 +3411,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3415
3411
  bronzong: {
3416
3412
  randomBattleMoves: ["earthquake", "ironhead", "protect", "stealthrock", "toxic"],
3417
3413
  randomBattleLevel: 83,
3418
- randomDoubleBattleMoves: ["allyswitch", "bodypress", "explosion", "ironhead", "trickroom"],
3414
+ randomDoubleBattleMoves: ["allyswitch", "bodypress", "ironhead", "trickroom"],
3419
3415
  randomDoubleBattleLevel: 88,
3420
3416
  tier: "RU",
3421
3417
  doublesTier: "(DUU)",
@@ -3461,7 +3457,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3461
3457
  lucario: {
3462
3458
  randomBattleMoves: ["closecombat", "extremespeed", "meteormash", "stoneedge", "swordsdance"],
3463
3459
  randomBattleLevel: 82,
3464
- randomDoubleBattleMoves: ["closecombat", "darkpulse", "extremespeed", "icepunch", "meteormash", "protect", "swordsdance"],
3460
+ randomDoubleBattleMoves: ["closecombat", "extremespeed", "icepunch", "meteormash", "protect", "swordsdance"],
3465
3461
  randomDoubleBattleLevel: 84,
3466
3462
  tier: "RU",
3467
3463
  doublesTier: "(DUU)",
@@ -3478,7 +3474,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3478
3474
  hippowdon: {
3479
3475
  randomBattleMoves: ["earthquake", "slackoff", "stealthrock", "stoneedge", "toxic", "whirlwind"],
3480
3476
  randomBattleLevel: 80,
3481
- randomDoubleBattleMoves: ["highhorsepower", "protect", "rockslide", "slackoff", "stealthrock", "whirlwind", "yawn"],
3477
+ randomDoubleBattleMoves: ["highhorsepower", "slackoff", "stealthrock", "whirlwind", "yawn"],
3482
3478
  randomDoubleBattleLevel: 88,
3483
3479
  tier: "UU",
3484
3480
  doublesTier: "(DUU)",
@@ -3490,7 +3486,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3490
3486
  drapion: {
3491
3487
  randomBattleMoves: ["aquatail", "earthquake", "knockoff", "poisonjab", "swordsdance", "taunt", "toxicspikes"],
3492
3488
  randomBattleLevel: 82,
3493
- randomDoubleBattleMoves: ["knockoff", "poisonjab", "protect", "rockslide", "taunt"],
3489
+ randomDoubleBattleMoves: ["knockoff", "poisonjab", "protect", "swordsdance", "taunt"],
3494
3490
  randomDoubleBattleLevel: 88,
3495
3491
  tier: "NU",
3496
3492
  doublesTier: "(DUU)",
@@ -3502,7 +3498,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3502
3498
  toxicroak: {
3503
3499
  randomBattleMoves: ["drainpunch", "gunkshot", "icepunch", "knockoff", "substitute", "suckerpunch", "swordsdance"],
3504
3500
  randomBattleLevel: 84,
3505
- randomDoubleBattleMoves: ["drainpunch", "fakeout", "gunkshot", "icepunch", "protect", "suckerpunch", "swordsdance", "taunt"],
3501
+ randomDoubleBattleMoves: ["drainpunch", "fakeout", "gunkshot", "protect", "suckerpunch", "swordsdance", "taunt"],
3506
3502
  randomDoubleBattleLevel: 86,
3507
3503
  tier: "NU",
3508
3504
  doublesTier: "(DUU)",
@@ -3529,7 +3525,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3529
3525
  abomasnow: {
3530
3526
  randomBattleMoves: ["auroraveil", "blizzard", "earthquake", "iceshard", "woodhammer"],
3531
3527
  randomBattleLevel: 82,
3532
- randomDoubleBattleMoves: ["auroraveil", "blizzard", "focusblast", "iceshard", "protect", "woodhammer"],
3528
+ randomDoubleBattleMoves: ["auroraveil", "blizzard", "iceshard", "protect", "woodhammer"],
3533
3529
  randomDoubleBattleLevel: 88,
3534
3530
  tier: "(PU)",
3535
3531
  doublesTier: "(DUU)",
@@ -3579,7 +3575,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3579
3575
  rotomfan: {
3580
3576
  randomBattleMoves: ["airslash", "nastyplot", "thunderbolt", "voltswitch", "willowisp"],
3581
3577
  randomBattleLevel: 84,
3582
- randomDoubleBattleMoves: ["airslash", "darkpulse", "nastyplot", "protect", "thunderbolt"],
3578
+ randomDoubleBattleMoves: ["airslash", "nastyplot", "protect", "thunderbolt"],
3583
3579
  randomDoubleBattleLevel: 84,
3584
3580
  tier: "(PU)",
3585
3581
  doublesTier: "(DUU)",
@@ -3597,7 +3593,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3597
3593
  uxie: {
3598
3594
  randomBattleMoves: ["healbell", "knockoff", "psychic", "stealthrock", "uturn", "yawn"],
3599
3595
  randomBattleLevel: 82,
3600
- randomDoubleBattleMoves: ["helpinghand", "knockoff", "psychic", "stealthrock", "thunderwave", "yawn"],
3596
+ randomDoubleBattleMoves: ["helpinghand", "knockoff", "psychic", "stealthrock", "thunderwave", "u-turn", "yawn"],
3601
3597
  randomDoubleBattleLevel: 86,
3602
3598
  tier: "(PU)",
3603
3599
  doublesTier: "(DUU)",
@@ -3615,7 +3611,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3615
3611
  azelf: {
3616
3612
  randomBattleMoves: ["dazzlinggleam", "fireblast", "nastyplot", "psychic", "psyshock", "stealthrock", "taunt", "uturn"],
3617
3613
  randomBattleLevel: 82,
3618
- randomDoubleBattleMoves: ["energyball", "fireblast", "nastyplot", "protect", "psychic", "shadowball", "uturn"],
3614
+ randomDoubleBattleMoves: ["energyball", "fireblast", "nastyplot", "psychic", "shadowball", "uturn"],
3619
3615
  randomDoubleBattleLevel: 84,
3620
3616
  tier: "UU",
3621
3617
  doublesTier: "(DUU)",
@@ -3624,7 +3620,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3624
3620
  dialga: {
3625
3621
  randomBattleMoves: ["dracometeor", "fireblast", "flashcannon", "stealthrock", "thunderbolt", "toxic"],
3626
3622
  randomBattleLevel: 74,
3627
- randomDoubleBattleMoves: ["dracometeor", "earthpower", "flashcannon", "protect", "thunderbolt", "thunderwave"],
3623
+ randomDoubleBattleMoves: ["dracometeor", "earthpower", "fireblast", "flashcannon", "protect", "thunderbolt", "thunderwave"],
3628
3624
  randomDoubleBattleLevel: 74,
3629
3625
  tier: "Uber",
3630
3626
  doublesTier: "DUber",
@@ -3677,7 +3673,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3677
3673
  giratinaorigin: {
3678
3674
  randomBattleMoves: ["dualwingbeat", "honeclaws", "outrage", "poltergeist", "shadowsneak"],
3679
3675
  randomBattleLevel: 74,
3680
- randomDoubleBattleMoves: ["breakingswipe", "dracometeor", "protect", "shadowball", "shadowsneak", "tailwind", "willowisp"],
3676
+ randomDoubleBattleMoves: ["dracometeor", "protect", "shadowball", "shadowsneak", "tailwind", "willowisp"],
3681
3677
  randomDoubleBattleLevel: 74,
3682
3678
  randomBattleNoDynamaxMoves: ["defog", "dracometeor", "earthquake", "poltergeist", "shadowsneak", "willowisp"],
3683
3679
  tier: "Uber",
@@ -3687,7 +3683,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3687
3683
  cresselia: {
3688
3684
  randomBattleMoves: ["calmmind", "moonblast", "moonlight", "psyshock", "thunderwave", "toxic"],
3689
3685
  randomBattleLevel: 80,
3690
- randomDoubleBattleMoves: ["allyswitch", "helpinghand", "icywind", "moonlight", "psychic"],
3686
+ randomDoubleBattleMoves: ["helpinghand", "icywind", "moonblast", "moonlight", "psychic", "thunderwave"],
3691
3687
  randomDoubleBattleLevel: 83,
3692
3688
  tier: "NUBL",
3693
3689
  doublesTier: "DUU",
@@ -3851,7 +3847,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3851
3847
  stoutland: {
3852
3848
  randomBattleMoves: ["crunch", "facade", "playrough", "superpower", "wildcharge"],
3853
3849
  randomBattleLevel: 86,
3854
- randomDoubleBattleMoves: ["crunch", "facade", "helpinghand", "protect", "superpower", "thunderwave"],
3850
+ randomDoubleBattleMoves: ["facade", "helpinghand", "superpower", "thunderwave"],
3855
3851
  randomDoubleBattleLevel: 90,
3856
3852
  tier: "(PU)",
3857
3853
  doublesTier: "(DUU)",
@@ -3905,7 +3901,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3905
3901
  musharna: {
3906
3902
  randomBattleMoves: ["calmmind", "moonblast", "moonlight", "psychic", "thunderwave"],
3907
3903
  randomBattleLevel: 86,
3908
- randomDoubleBattleMoves: ["helpinghand", "hypnosis", "moonblast", "protect", "psychic", "trickroom"],
3904
+ randomDoubleBattleMoves: ["helpinghand", "hypnosis", "moonblast", "psychic", "trickroom"],
3909
3905
  randomDoubleBattleLevel: 88,
3910
3906
  tier: "(PU)",
3911
3907
  doublesTier: "(DUU)",
@@ -3920,7 +3916,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3920
3916
  unfezant: {
3921
3917
  randomBattleMoves: ["bravebird", "defog", "nightslash", "roost", "uturn"],
3922
3918
  randomBattleLevel: 84,
3923
- randomDoubleBattleMoves: ["bravebird", "nightslash", "quickattack", "roost", "tailwind", "uturn"],
3919
+ randomDoubleBattleMoves: ["bravebird", "nightslash", "quickattack", "tailwind", "uturn"],
3924
3920
  randomDoubleBattleLevel: 86,
3925
3921
  tier: "(PU)",
3926
3922
  doublesTier: "(DUU)",
@@ -3945,7 +3941,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3945
3941
  gigalith: {
3946
3942
  randomBattleMoves: ["earthquake", "explosion", "stealthrock", "stoneedge", "superpower"],
3947
3943
  randomBattleLevel: 82,
3948
- randomDoubleBattleMoves: ["bodypress", "explosion", "heavyslam", "protect", "rockslide", "stealthrock", "stompingtantrum", "stoneedge", "wideguard"],
3944
+ randomDoubleBattleMoves: ["bodypress", "explosion", "protect", "rockslide", "stealthrock", "stompingtantrum", "stoneedge", "wideguard"],
3949
3945
  randomDoubleBattleLevel: 88,
3950
3946
  tier: "PU",
3951
3947
  doublesTier: "DUU",
@@ -4001,7 +3997,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4001
3997
  conkeldurr: {
4002
3998
  randomBattleMoves: ["closecombat", "drainpunch", "facade", "knockoff", "machpunch"],
4003
3999
  randomBattleLevel: 80,
4004
- randomDoubleBattleMoves: ["closecombat", "drainpunch", "highhorsepower", "icepunch", "knockoff", "machpunch", "protect", "stoneedge"],
4000
+ randomDoubleBattleMoves: ["closecombat", "drainpunch", "icepunch", "knockoff", "machpunch", "protect"],
4005
4001
  randomDoubleBattleLevel: 84,
4006
4002
  tier: "UU",
4007
4003
  doublesTier: "(DUU)",
@@ -4025,7 +4021,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4025
4021
  throh: {
4026
4022
  randomBattleMoves: ["bulkup", "circlethrow", "icepunch", "knockoff", "rest", "sleeptalk", "stormthrow"],
4027
4023
  randomBattleLevel: 86,
4028
- randomDoubleBattleMoves: ["facade", "knockoff", "poisonjab", "protect", "stoneedge", "stormthrow", "wideguard"],
4024
+ randomDoubleBattleMoves: ["facade", "knockoff", "protect", "stoneedge", "stormthrow", "wideguard"],
4029
4025
  randomDoubleBattleLevel: 86,
4030
4026
  tier: "(PU)",
4031
4027
  doublesTier: "(DUU)",
@@ -4102,7 +4098,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4102
4098
  basculin: {
4103
4099
  randomBattleMoves: ["aquajet", "crunch", "flipturn", "liquidation", "psychicfangs", "superpower"],
4104
4100
  randomBattleLevel: 86,
4105
- randomDoubleBattleMoves: ["flipturn", "headsmash", "icebeam", "liquidation", "muddywater", "protect", "psychicfangs", "superpower"],
4101
+ randomDoubleBattleMoves: ["flipturn", "liquidation", "muddywater", "protect", "superpower"],
4106
4102
  randomDoubleBattleLevel: 86,
4107
4103
  tier: "(PU)",
4108
4104
  doublesTier: "(DUU)",
@@ -4111,7 +4107,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4111
4107
  basculinbluestriped: {
4112
4108
  randomBattleMoves: ["aquajet", "crunch", "flipturn", "liquidation", "psychicfangs", "superpower"],
4113
4109
  randomBattleLevel: 86,
4114
- randomDoubleBattleMoves: ["aquajet", "flipturn", "headsmash", "icebeam", "liquidation", "protect", "psychicfangs", "superpower"],
4110
+ randomDoubleBattleMoves: ["flipturn", "liquidation", "muddywater", "protect", "superpower"],
4115
4111
  randomDoubleBattleLevel: 86,
4116
4112
  tier: "(PU)",
4117
4113
  doublesTier: "(DUU)",
@@ -4145,7 +4141,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4145
4141
  darmanitan: {
4146
4142
  randomBattleMoves: ["earthquake", "flareblitz", "rockslide", "superpower", "uturn"],
4147
4143
  randomBattleLevel: 80,
4148
- randomDoubleBattleMoves: ["earthquake", "flareblitz", "rockslide", "superpower", "uturn"],
4144
+ randomDoubleBattleMoves: ["earthquake", "flareblitz", "protect", "rockslide", "superpower", "uturn"],
4149
4145
  randomDoubleBattleLevel: 82,
4150
4146
  tier: "UU",
4151
4147
  doublesTier: "(DUU)",
@@ -4154,7 +4150,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4154
4150
  darmanitangalar: {
4155
4151
  randomBattleMoves: ["earthquake", "flareblitz", "iciclecrash", "superpower", "uturn"],
4156
4152
  randomBattleLevel: 78,
4157
- randomDoubleBattleMoves: ["earthquake", "flareblitz", "iciclecrash", "rockslide", "superpower", "uturn"],
4153
+ randomDoubleBattleMoves: ["flareblitz", "iciclecrash", "rockslide", "superpower", "uturn"],
4158
4154
  randomDoubleBattleLevel: 80,
4159
4155
  tier: "Uber",
4160
4156
  doublesTier: "(DUU)",
@@ -4167,7 +4163,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4167
4163
  maractus: {
4168
4164
  randomBattleMoves: ["energyball", "knockoff", "leechseed", "spikes", "spikyshield", "toxic"],
4169
4165
  randomBattleLevel: 95,
4170
- randomDoubleBattleMoves: ["acupressure", "drainpunch", "helpinghand", "leafstorm", "spikyshield", "suckerpunch"],
4166
+ randomDoubleBattleMoves: ["acupressure", "helpinghand", "leafstorm", "leechseed", "spikyshield"],
4171
4167
  randomDoubleBattleLevel: 96, // buffed twice in the last 6 months as of Nov 2021
4172
4168
  tier: "(PU)",
4173
4169
  doublesTier: "(DUU)",
@@ -4179,7 +4175,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4179
4175
  crustle: {
4180
4176
  randomBattleMoves: ["earthquake", "shellsmash", "spikes", "stealthrock", "stoneedge", "xscissor"],
4181
4177
  randomBattleLevel: 82,
4182
- randomDoubleBattleMoves: ["knockoff", "protect", "rockslide", "shellsmash", "stompingtantrum", "xscissor"],
4178
+ randomDoubleBattleMoves: ["knockoff", "protect", "rockslide", "shellsmash", "xscissor"],
4183
4179
  randomDoubleBattleLevel: 84,
4184
4180
  tier: "(PU)",
4185
4181
  doublesTier: "(DUU)",
@@ -4225,7 +4221,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4225
4221
  runerigus: {
4226
4222
  randomBattleMoves: ["earthquake", "haze", "poltergeist", "stealthrock", "toxicspikes", "willowisp"],
4227
4223
  randomBattleLevel: 84,
4228
- randomDoubleBattleMoves: ["earthquake", "poltergeist", "protect", "trickroom", "willowisp"],
4224
+ randomDoubleBattleMoves: ["earthquake", "poltergeist", "protect", "toxicspikes", "trickroom", "willowisp"],
4229
4225
  randomDoubleBattleLevel: 88,
4230
4226
  tier: "(PU)",
4231
4227
  doublesTier: "(DUU)",
@@ -4249,7 +4245,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4249
4245
  archeops: {
4250
4246
  randomBattleMoves: ["dualwingbeat", "earthquake", "roost", "stoneedge", "uturn"],
4251
4247
  randomBattleLevel: 82,
4252
- randomDoubleBattleMoves: ["aquatail", "dualwingbeat", "earthquake", "heatwave", "protect", "rockslide", "uturn"],
4248
+ randomDoubleBattleMoves: ["aquatail", "dualwingbeat", "earthquake", "protect", "rockslide", "uturn"],
4253
4249
  randomDoubleBattleLevel: 86,
4254
4250
  tier: "PU",
4255
4251
  doublesTier: "(DUU)",
@@ -4313,7 +4309,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4313
4309
  gothitelle: {
4314
4310
  randomBattleMoves: ["nastyplot", "psychic", "shadowball", "thunderbolt", "trick"],
4315
4311
  randomBattleLevel: 86,
4316
- randomDoubleBattleMoves: ["allyswitch", "fakeout", "healpulse", "helpinghand", "hypnosis", "protect", "psychic", "shadowball", "trickroom"],
4312
+ randomDoubleBattleMoves: ["fakeout", "healpulse", "helpinghand", "hypnosis", "protect", "psychic", "trickroom"],
4317
4313
  randomDoubleBattleLevel: 83,
4318
4314
  tier: "(PU)",
4319
4315
  doublesTier: "(DUU)",
@@ -4353,7 +4349,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4353
4349
  vanilluxe: {
4354
4350
  randomBattleMoves: ["auroraveil", "blizzard", "explosion", "flashcannon", "freezedry"],
4355
4351
  randomBattleLevel: 82,
4356
- randomDoubleBattleMoves: ["auroraveil", "blizzard", "freezedry", "iceshard", "protect"],
4352
+ randomDoubleBattleMoves: ["auroraveil", "blizzard", "explosion", "freezedry", "protect"],
4357
4353
  randomDoubleBattleLevel: 82,
4358
4354
  tier: "PUBL",
4359
4355
  doublesTier: "(DUU)",
@@ -4372,7 +4368,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4372
4368
  emolga: {
4373
4369
  randomBattleMoves: ["airslash", "defog", "energyball", "roost", "thunderbolt", "toxic", "uturn"],
4374
4370
  randomBattleLevel: 88,
4375
- randomDoubleBattleMoves: ["acrobatics", "helpinghand", "nuzzle", "tailwind", "taunt"],
4371
+ randomDoubleBattleMoves: ["acrobatics", "helpinghand", "nuzzle", "tailwind", "taunt", "voltswitch"],
4376
4372
  randomDoubleBattleLevel: 88,
4377
4373
  tier: "(PU)",
4378
4374
  doublesTier: "(DUU)",
@@ -4408,7 +4404,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4408
4404
  jellicent: {
4409
4405
  randomBattleMoves: ["icebeam", "recover", "scald", "shadowball", "toxic", "willowisp"],
4410
4406
  randomBattleLevel: 84,
4411
- randomDoubleBattleMoves: ["protect", "scald", "shadowball", "strengthsap", "trickroom", "willowisp"],
4407
+ randomDoubleBattleMoves: ["scald", "shadowball", "strengthsap", "trickroom", "willowisp"],
4412
4408
  randomDoubleBattleLevel: 84,
4413
4409
  tier: "PU",
4414
4410
  doublesTier: "(DUU)",
@@ -4439,7 +4435,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4439
4435
  ferrothorn: {
4440
4436
  randomBattleMoves: ["gyroball", "knockoff", "leechseed", "powerwhip", "protect", "spikes", "stealthrock"],
4441
4437
  randomBattleLevel: 78,
4442
- randomDoubleBattleMoves: ["bodypress", "gyroball", "knockoff", "leechseed", "powerwhip", "protect", "toxic"],
4438
+ randomDoubleBattleMoves: ["bodypress", "gyroball", "leechseed", "powerwhip", "protect", "toxic"],
4443
4439
  randomDoubleBattleLevel: 83,
4444
4440
  tier: "OU",
4445
4441
  doublesTier: "DUU",
@@ -4454,7 +4450,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4454
4450
  klinklang: {
4455
4451
  randomBattleMoves: ["geargrind", "shiftgear", "substitute", "wildcharge"],
4456
4452
  randomBattleLevel: 84,
4457
- randomDoubleBattleMoves: ["geargrind", "protect", "shiftgear", "thunderwave", "wildcharge"],
4453
+ randomDoubleBattleMoves: ["geargrind", "protect", "shiftgear", "wildcharge"],
4458
4454
  randomDoubleBattleLevel: 88,
4459
4455
  tier: "(PU)",
4460
4456
  doublesTier: "(DUU)",
@@ -4523,7 +4519,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4523
4519
  beartic: {
4524
4520
  randomBattleMoves: ["aquajet", "iciclecrash", "stoneedge", "superpower", "swordsdance"],
4525
4521
  randomBattleLevel: 86,
4526
- randomDoubleBattleMoves: ["aquajet", "iciclecrash", "protect", "rockslide", "superpower", "swordsdance", "throatchop"],
4522
+ randomDoubleBattleMoves: ["aquajet", "iciclecrash", "protect", "superpower", "swordsdance"],
4527
4523
  randomDoubleBattleLevel: 86,
4528
4524
  tier: "(PU)",
4529
4525
  doublesTier: "(DUU)",
@@ -4554,7 +4550,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4554
4550
  stunfisk: {
4555
4551
  randomBattleMoves: ["discharge", "earthpower", "foulplay", "sludgebomb", "stealthrock"],
4556
4552
  randomBattleLevel: 84,
4557
- randomDoubleBattleMoves: ["earthpower", "electroweb", "foulplay", "muddywater", "stealthrock", "thunderbolt"],
4553
+ randomDoubleBattleMoves: ["earthpower", "electroweb", "foulplay", "stealthrock", "thunderbolt"],
4558
4554
  randomDoubleBattleLevel: 88,
4559
4555
  tier: "(PU)",
4560
4556
  doublesTier: "(DUU)",
@@ -4563,7 +4559,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4563
4559
  stunfiskgalar: {
4564
4560
  randomBattleMoves: ["earthquake", "painsplit", "stealthrock", "stoneedge", "thunderwave"],
4565
4561
  randomBattleLevel: 84,
4566
- randomDoubleBattleMoves: ["earthquake", "foulplay", "protect", "stealthrock", "stoneedge", "thunderwave"],
4562
+ randomDoubleBattleMoves: ["earthquake", "stealthrock", "stoneedge", "thunderwave", "yawn"],
4567
4563
  randomDoubleBattleLevel: 88,
4568
4564
  tier: "(PU)",
4569
4565
  doublesTier: "(DUU)",
@@ -4584,7 +4580,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4584
4580
  druddigon: {
4585
4581
  randomBattleMoves: ["earthquake", "glare", "gunkshot", "outrage", "stealthrock", "suckerpunch", "superpower"],
4586
4582
  randomBattleLevel: 84,
4587
- randomDoubleBattleMoves: ["firepunch", "glare", "gunkshot", "protect", "scaleshot", "suckerpunch"],
4583
+ randomDoubleBattleMoves: ["dragonclaw", "firepunch", "glare", "gunkshot", "protect", "suckerpunch"],
4588
4584
  randomDoubleBattleLevel: 87,
4589
4585
  tier: "PU",
4590
4586
  doublesTier: "(DUU)",
@@ -4596,7 +4592,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4596
4592
  golurk: {
4597
4593
  randomBattleMoves: ["dynamicpunch", "earthquake", "poltergeist", "rockpolish", "stoneedge"],
4598
4594
  randomBattleLevel: 82,
4599
- randomDoubleBattleMoves: ["dynamicpunch", "earthquake", "highhorsepower", "icepunch", "poltergeist", "protect"],
4595
+ randomDoubleBattleMoves: ["dynamicpunch", "highhorsepower", "icepunch", "poltergeist", "protect"],
4600
4596
  randomDoubleBattleLevel: 86,
4601
4597
  tier: "NU",
4602
4598
  doublesTier: "(DUU)",
@@ -4608,7 +4604,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4608
4604
  bisharp: {
4609
4605
  randomBattleMoves: ["ironhead", "knockoff", "stealthrock", "suckerpunch", "swordsdance"],
4610
4606
  randomBattleLevel: 80,
4611
- randomDoubleBattleMoves: ["brickbreak", "ironhead", "knockoff", "protect", "suckerpunch", "swordsdance"],
4607
+ randomDoubleBattleMoves: ["ironhead", "knockoff", "protect", "suckerpunch", "swordsdance"],
4612
4608
  randomDoubleBattleLevel: 84,
4613
4609
  tier: "OU",
4614
4610
  doublesTier: "(DUU)",
@@ -4630,7 +4626,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4630
4626
  braviary: {
4631
4627
  randomBattleMoves: ["bravebird", "bulkup", "closecombat", "roost"],
4632
4628
  randomBattleLevel: 82,
4633
- randomDoubleBattleMoves: ["bravebird", "closecombat", "protect", "roost", "tailwind"],
4629
+ randomDoubleBattleMoves: ["bravebird", "bulkup", "closecombat", "roost", "tailwind"],
4634
4630
  randomDoubleBattleLevel: 82,
4635
4631
  tier: "NU",
4636
4632
  doublesTier: "(DUU)",
@@ -4656,7 +4652,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4656
4652
  heatmor: {
4657
4653
  randomBattleMoves: ["firelash", "gigadrain", "knockoff", "substitute", "suckerpunch", "superpower"],
4658
4654
  randomBattleLevel: 90,
4659
- randomDoubleBattleMoves: ["firelash", "gigadrain", "incinerate", "protect", "rocktomb", "suckerpunch", "superpower", "willowisp"],
4655
+ randomDoubleBattleMoves: ["firelash", "gigadrain", "incinerate", "protect", "suckerpunch", "superpower"],
4660
4656
  randomDoubleBattleLevel: 88,
4661
4657
  tier: "(PU)",
4662
4658
  doublesTier: "(DUU)",
@@ -4665,7 +4661,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4665
4661
  durant: {
4666
4662
  randomBattleMoves: ["firstimpression", "honeclaws", "ironhead", "rockslide", "superpower"],
4667
4663
  randomBattleLevel: 78,
4668
- randomDoubleBattleMoves: ["firstimpression", "ironhead", "protect", "rockslide", "superpower", "xscissor"],
4664
+ randomDoubleBattleMoves: ["firstimpression", "ironhead", "protect", "stompingtantrum", "superpower", "xscissor"],
4669
4665
  randomDoubleBattleLevel: 82,
4670
4666
  tier: "RUBL",
4671
4667
  doublesTier: "(DUU)",
@@ -4692,7 +4688,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4692
4688
  volcarona: {
4693
4689
  randomBattleMoves: ["bugbuzz", "fireblast", "gigadrain", "quiverdance", "roost"],
4694
4690
  randomBattleLevel: 76,
4695
- randomDoubleBattleMoves: ["bugbuzz", "gigadrain", "heatwave", "hurricane", "protect", "quiverdance"],
4691
+ randomDoubleBattleMoves: ["bugbuzz", "gigadrain", "heatwave", "protect", "quiverdance"],
4696
4692
  randomDoubleBattleLevel: 80,
4697
4693
  tier: "OU",
4698
4694
  doublesTier: "(DUU)",
@@ -4738,7 +4734,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4738
4734
  tornadustherian: {
4739
4735
  randomBattleMoves: ["defog", "hurricane", "knockoff", "superpower", "uturn"],
4740
4736
  randomBattleLevel: 78,
4741
- randomDoubleBattleMoves: ["heatwave", "hurricane", "knockoff", "nastyplot", "protect"],
4737
+ randomDoubleBattleMoves: ["heatwave", "hurricane", "knockoff", "nastyplot", "protect", "uturn"],
4742
4738
  randomDoubleBattleLevel: 80,
4743
4739
  tier: "OU",
4744
4740
  doublesTier: "(DUU)",
@@ -4811,7 +4807,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4811
4807
  kyuremblack: {
4812
4808
  randomBattleMoves: ["dragondance", "fusionbolt", "iciclespear", "outrage"],
4813
4809
  randomBattleLevel: 73,
4814
- randomDoubleBattleMoves: ["dragonclaw", "dragondance", "fusionbolt", "iciclespear", "protect", "roost"],
4810
+ randomDoubleBattleMoves: ["dragonclaw", "dragondance", "fusionbolt", "iciclespear", "protect"],
4815
4811
  randomDoubleBattleLevel: 75,
4816
4812
  tier: "Uber",
4817
4813
  doublesTier: "DOU",
@@ -4827,8 +4823,6 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4827
4823
  natDexTier: "Uber",
4828
4824
  },
4829
4825
  keldeo: {
4830
- randomDoubleBattleMoves: ["airslash", "calmmind", "icywind", "muddywater", "protect", "secretsword"],
4831
- randomDoubleBattleLevel: 82,
4832
4826
  tier: "UU",
4833
4827
  doublesTier: "(DUU)",
4834
4828
  natDexTier: "RUBL",
@@ -4836,6 +4830,8 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4836
4830
  keldeoresolute: {
4837
4831
  randomBattleMoves: ["airslash", "calmmind", "hydropump", "icywind", "scald", "secretsword", "substitute"],
4838
4832
  randomBattleLevel: 79,
4833
+ randomDoubleBattleMoves: ["airslash", "calmmind", "icywind", "muddywater", "protect", "secretsword"],
4834
+ randomDoubleBattleLevel: 82,
4839
4835
  },
4840
4836
  meloetta: {
4841
4837
  isNonstandard: "Past",
@@ -4914,7 +4910,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4914
4910
  diggersby: {
4915
4911
  randomBattleMoves: ["bodyslam", "earthquake", "knockoff", "quickattack", "swordsdance", "uturn"],
4916
4912
  randomBattleLevel: 80,
4917
- randomDoubleBattleMoves: ["bodyslam", "highhorsepower", "knockoff", "protect", "quickattack", "swordsdance", "uturn"],
4913
+ randomDoubleBattleMoves: ["bodyslam", "highhorsepower", "knockoff", "quickattack", "swordsdance", "uturn"],
4918
4914
  randomDoubleBattleLevel: 86,
4919
4915
  tier: "RUBL",
4920
4916
  doublesTier: "(DUU)",
@@ -4929,7 +4925,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4929
4925
  talonflame: {
4930
4926
  randomBattleMoves: ["bravebird", "defog", "flareblitz", "roost", "swordsdance", "uturn"],
4931
4927
  randomBattleLevel: 81,
4932
- randomDoubleBattleMoves: ["bravebird", "defog", "incinerate", "overheat", "roost", "tailwind", "u-turn", "willowisp"],
4928
+ randomDoubleBattleMoves: ["bravebird", "defog", "incinerate", "overheat", "tailwind", "u-turn", "willowisp"],
4933
4929
  randomDoubleBattleLevel: 86,
4934
4930
  tier: "NU",
4935
4931
  doublesTier: "(DUU)",
@@ -5001,7 +4997,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5001
4997
  pangoro: {
5002
4998
  randomBattleMoves: ["closecombat", "gunkshot", "icepunch", "knockoff", "partingshot"],
5003
4999
  randomBattleLevel: 84,
5004
- randomDoubleBattleMoves: ["bulletpunch", "closecombat", "drainpunch", "gunkshot", "icepunch", "knockoff", "protect"],
5000
+ randomDoubleBattleMoves: ["closecombat", "drainpunch", "gunkshot", "icepunch", "knockoff", "protect"],
5005
5001
  randomDoubleBattleLevel: 88,
5006
5002
  tier: "NUBL",
5007
5003
  doublesTier: "(DUU)",
@@ -5064,7 +5060,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5064
5060
  aromatisse: {
5065
5061
  randomBattleMoves: ["calmmind", "moonblast", "protect", "toxic", "wish"],
5066
5062
  randomBattleLevel: 88,
5067
- randomDoubleBattleMoves: ["healpulse", "moonblast", "protect", "thunderbolt", "trickroom", "wish"],
5063
+ randomDoubleBattleMoves: ["healpulse", "moonblast", "protect", "trickroom", "wish"],
5068
5064
  randomDoubleBattleLevel: 86,
5069
5065
  tier: "PU",
5070
5066
  doublesTier: "(DUU)",
@@ -5170,7 +5166,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5170
5166
  hawlucha: {
5171
5167
  randomBattleMoves: ["bravebird", "closecombat", "roost", "stoneedge", "swordsdance", "throatchop"],
5172
5168
  randomBattleLevel: 80,
5173
- randomDoubleBattleMoves: ["bravebird", "closecombat", "protect", "swordsdance", "throatchop"],
5169
+ randomDoubleBattleMoves: ["bravebird", "closecombat", "protect", "swordsdance"],
5174
5170
  randomDoubleBattleLevel: 80,
5175
5171
  tier: "UUBL",
5176
5172
  doublesTier: "(DUU)",
@@ -5232,7 +5228,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5232
5228
  trevenant: {
5233
5229
  randomBattleMoves: ["earthquake", "hornleech", "poltergeist", "rockslide", "trickroom", "woodhammer"],
5234
5230
  randomBattleLevel: 86,
5235
- randomDoubleBattleMoves: ["allyswitch", "poltergeist", "rockslide", "trickroom", "willowisp", "woodhammer"],
5231
+ randomDoubleBattleMoves: ["poltergeist", "protect", "trickroom", "willowisp", "woodhammer"],
5236
5232
  randomDoubleBattleLevel: 88,
5237
5233
  tier: "(PU)",
5238
5234
  doublesTier: "(DUU)",
@@ -5330,7 +5326,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5330
5326
  yveltal: {
5331
5327
  randomBattleMoves: ["defog", "heatwave", "knockoff", "oblivionwing", "roost", "suckerpunch", "taunt"],
5332
5328
  randomBattleLevel: 69,
5333
- randomDoubleBattleMoves: ["darkpulse", "heatwave", "knockoff", "oblivionwing", "roost", "suckerpunch", "tailwind", "uturn"],
5329
+ randomDoubleBattleMoves: ["darkpulse", "heatwave", "knockoff", "oblivionwing", "roost", "suckerpunch", "tailwind"],
5334
5330
  randomDoubleBattleLevel: 71,
5335
5331
  tier: "Uber",
5336
5332
  doublesTier: "DUber",
@@ -5348,7 +5344,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5348
5344
  zygarde10: {
5349
5345
  randomBattleMoves: ["coil", "extremespeed", "irontail", "outrage", "thousandarrows"],
5350
5346
  randomBattleLevel: 82,
5351
- randomDoubleBattleMoves: ["dragondance", "extremespeed", "irontail", "protect", "rockslide", "thousandarrows"],
5347
+ randomDoubleBattleMoves: ["dragondance", "extremespeed", "irontail", "protect", "stoneedge", "thousandarrows"],
5352
5348
  randomDoubleBattleLevel: 77,
5353
5349
  tier: "UU",
5354
5350
  doublesTier: "(DUU)",
@@ -5421,7 +5417,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5421
5417
  incineroar: {
5422
5418
  randomBattleMoves: ["earthquake", "flareblitz", "knockoff", "partingshot", "uturn", "willowisp"],
5423
5419
  randomBattleLevel: 80,
5424
- randomDoubleBattleMoves: ["fakeout", "flareblitz", "knockoff", "partingshot", "snarl"],
5420
+ randomDoubleBattleMoves: ["fakeout", "flareblitz", "knockoff", "partingshot", "uturn"],
5425
5421
  randomDoubleBattleLevel: 80,
5426
5422
  tier: "RU",
5427
5423
  doublesTier: "DOU",
@@ -5677,7 +5673,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5677
5673
  bewear: {
5678
5674
  randomBattleMoves: ["closecombat", "darkestlariat", "doubleedge", "icepunch", "swordsdance"],
5679
5675
  randomBattleLevel: 82,
5680
- randomDoubleBattleMoves: ["closecombat", "darkestlariat", "doubleedge", "drainpunch", "highhorsepower", "icepunch", "protect", "wideguard"],
5676
+ randomDoubleBattleMoves: ["closecombat", "darkestlariat", "doubleedge", "drainpunch", "icepunch", "protect", "wideguard"],
5681
5677
  randomDoubleBattleLevel: 88,
5682
5678
  tier: "NUBL",
5683
5679
  doublesTier: "(DUU)",
@@ -5701,7 +5697,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5701
5697
  comfey: {
5702
5698
  randomBattleMoves: ["calmmind", "drainingkiss", "gigadrain", "storedpower", "trick", "uturn"],
5703
5699
  randomBattleLevel: 86,
5704
- randomDoubleBattleMoves: ["defog", "drainingkiss", "floralhealing", "gigadrain", "helpinghand", "protect"],
5700
+ randomDoubleBattleMoves: ["drainingkiss", "floralhealing", "gigadrain", "helpinghand", "protect"],
5705
5701
  randomDoubleBattleLevel: 89,
5706
5702
  tier: "PU",
5707
5703
  doublesTier: "DUU",
@@ -5710,7 +5706,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5710
5706
  oranguru: {
5711
5707
  randomBattleMoves: ["focusblast", "nastyplot", "psychic", "thunderbolt", "trickroom"],
5712
5708
  randomBattleLevel: 86,
5713
- randomDoubleBattleMoves: ["allyswitch", "focusblast", "instruct", "protect", "psychic", "trickroom"],
5709
+ randomDoubleBattleMoves: ["allyswitch", "focusblast", "instruct", "psychic", "trickroom"],
5714
5710
  randomDoubleBattleLevel: 88,
5715
5711
  tier: "(PU)",
5716
5712
  doublesTier: "(DUU)",
@@ -5731,7 +5727,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5731
5727
  golisopod: {
5732
5728
  randomBattleMoves: ["firstimpression", "knockoff", "leechlife", "liquidation", "spikes"],
5733
5729
  randomBattleLevel: 84,
5734
- randomDoubleBattleMoves: ["aquajet", "closecombat", "firstimpression", "knockoff", "leechlife", "liquidation", "protect", "wideguard"],
5730
+ randomDoubleBattleMoves: ["aquajet", "firstimpression", "knockoff", "leechlife", "liquidation", "protect", "wideguard"],
5735
5731
  randomDoubleBattleLevel: 88,
5736
5732
  tier: "RU",
5737
5733
  doublesTier: "(DUU)",
@@ -5964,7 +5960,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5964
5960
  mimikyu: {
5965
5961
  randomBattleMoves: ["drainpunch", "playrough", "shadowclaw", "shadowsneak", "swordsdance"],
5966
5962
  randomBattleLevel: 76,
5967
- randomDoubleBattleMoves: ["playrough", "protect", "shadowclaw", "shadowsneak", "swordsdance"],
5963
+ randomDoubleBattleMoves: ["playrough", "shadowclaw", "shadowsneak", "swordsdance"],
5968
5964
  randomDoubleBattleLevel: 84,
5969
5965
  tier: "RU",
5970
5966
  doublesTier: "(DUU)",
@@ -5988,7 +5984,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5988
5984
  drampa: {
5989
5985
  randomBattleMoves: ["dracometeor", "fireblast", "glare", "hypervoice", "roost", "thunderbolt"],
5990
5986
  randomBattleLevel: 86,
5991
- randomDoubleBattleMoves: ["dracometeor", "dragonpulse", "glare", "heatwave", "hurricane", "hypervoice", "protect", "roost"],
5987
+ randomDoubleBattleMoves: ["dracometeor", "dragonpulse", "heatwave", "hypervoice"],
5992
5988
  randomDoubleBattleLevel: 88,
5993
5989
  tier: "PUBL",
5994
5990
  doublesTier: "(DUU)",
@@ -5997,7 +5993,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5997
5993
  dhelmise: {
5998
5994
  randomBattleMoves: ["anchorshot", "earthquake", "poltergeist", "powerwhip", "rapidspin", "swordsdance"],
5999
5995
  randomBattleLevel: 86,
6000
- randomDoubleBattleMoves: ["anchorshot", "knockoff", "poltergeist", "powerwhip", "protect"],
5996
+ randomDoubleBattleMoves: ["anchorshot", "knockoff", "powerwhip", "protect"],
6001
5997
  randomDoubleBattleLevel: 88,
6002
5998
  tier: "NU",
6003
5999
  doublesTier: "(DUU)",
@@ -6044,7 +6040,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
6044
6040
  tapubulu: {
6045
6041
  randomBattleMoves: ["closecombat", "hornleech", "megahorn", "stoneedge", "swordsdance", "woodhammer"],
6046
6042
  randomBattleLevel: 82,
6047
- randomDoubleBattleMoves: ["closecombat", "highhorsepower", "hornleech", "protect", "stoneedge", "swordsdance", "woodhammer"],
6043
+ randomDoubleBattleMoves: ["closecombat", "hornleech", "protect", "stoneedge", "swordsdance", "woodhammer"],
6048
6044
  randomDoubleBattleLevel: 83,
6049
6045
  tier: "UU",
6050
6046
  doublesTier: "DUU",
@@ -6238,7 +6234,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
6238
6234
  zeraora: {
6239
6235
  randomBattleMoves: ["blazekick", "bulkup", "closecombat", "grassknot", "knockoff", "plasmafists", "playrough", "voltswitch"],
6240
6236
  randomBattleLevel: 76,
6241
- randomDoubleBattleMoves: ["closecombat", "fakeout", "grassknot", "knockoff", "plasmafists", "playrough", "snarl"],
6237
+ randomDoubleBattleMoves: ["closecombat", "fakeout", "grassknot", "knockoff", "plasmafists", "snarl"],
6242
6238
  randomDoubleBattleLevel: 78,
6243
6239
  tier: "OU",
6244
6240
  doublesTier: "DOU",
@@ -6319,7 +6315,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
6319
6315
  inteleon: {
6320
6316
  randomBattleMoves: ["airslash", "darkpulse", "hydropump", "icebeam", "scald", "uturn"],
6321
6317
  randomBattleLevel: 80,
6322
- randomDoubleBattleMoves: ["airslash", "hydropump", "icebeam", "muddywater", "shadowball", "uturn"],
6318
+ randomDoubleBattleMoves: ["airslash", "hydropump", "icebeam", "muddywater", "uturn"],
6323
6319
  randomDoubleBattleLevel: 84,
6324
6320
  tier: "PUBL",
6325
6321
  doublesTier: "(DUU)",
@@ -6341,7 +6337,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
6341
6337
  greedent: {
6342
6338
  randomBattleMoves: ["bodyslam", "earthquake", "firefang", "payback", "swordsdance"],
6343
6339
  randomBattleLevel: 84,
6344
- randomDoubleBattleMoves: ["bodyslam", "crunch", "gyroball", "protect", "stompingtantrum", "swordsdance"],
6340
+ randomDoubleBattleMoves: ["bodyslam", "gyroball", "protect", "stompingtantrum", "swordsdance"],
6345
6341
  randomDoubleBattleLevel: 88,
6346
6342
  tier: "(PU)",
6347
6343
  doublesTier: "(DUU)",
@@ -6356,7 +6352,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
6356
6352
  corviknight: {
6357
6353
  randomBattleMoves: ["bodypress", "bravebird", "bulkup", "defog", "roost"],
6358
6354
  randomBattleLevel: 78,
6359
- randomDoubleBattleMoves: ["bodypress", "bravebird", "bulkup", "ironhead", "roost", "tailwind"],
6355
+ randomDoubleBattleMoves: ["bodypress", "bravebird", "bulkup", "roost", "tailwind"],
6360
6356
  randomDoubleBattleLevel: 80,
6361
6357
  tier: "OU",
6362
6358
  doublesTier: "(DUU)",
@@ -6419,7 +6415,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
6419
6415
  dubwool: {
6420
6416
  randomBattleMoves: ["bodypress", "cottonguard", "rest", "sleeptalk"],
6421
6417
  randomBattleLevel: 86,
6422
- randomDoubleBattleMoves: ["doubleedge", "protect", "swordsdance", "thunderwave", "wildcharge", "zenheadbutt"],
6418
+ randomDoubleBattleMoves: ["doubleedge", "swordsdance", "thunderwave", "wildcharge", "zenheadbutt"],
6423
6419
  randomDoubleBattleLevel: 90,
6424
6420
  tier: "(PU)",
6425
6421
  doublesTier: "(DUU)",
@@ -6533,7 +6529,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
6533
6529
  cramorant: {
6534
6530
  randomBattleMoves: ["bravebird", "defog", "roost", "superpower", "surf"],
6535
6531
  randomBattleLevel: 84,
6536
- randomDoubleBattleMoves: ["hurricane", "icebeam", "protect", "roost", "surf", "tailwind"],
6532
+ randomDoubleBattleMoves: ["bravebird", "icebeam", "protect", "roost", "surf", "tailwind"],
6537
6533
  randomDoubleBattleLevel: 88,
6538
6534
  tier: "(PU)",
6539
6535
  doublesTier: "(DUU)",
@@ -6545,7 +6541,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
6545
6541
  barraskewda: {
6546
6542
  randomBattleMoves: ["closecombat", "crunch", "liquidation", "poisonjab", "psychicfangs"],
6547
6543
  randomBattleLevel: 80,
6548
- randomDoubleBattleMoves: ["closecombat", "crunch", "drillrun", "flipturn", "liquidation", "poisonjab"],
6544
+ randomDoubleBattleMoves: ["closecombat", "drillrun", "flipturn", "liquidation", "poisonjab"],
6549
6545
  randomDoubleBattleLevel: 84,
6550
6546
  tier: "OU",
6551
6547
  doublesTier: "(DUU)",
@@ -6610,7 +6606,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
6610
6606
  grapploct: {
6611
6607
  randomBattleMoves: ["brutalswing", "bulkup", "drainpunch", "icepunch", "suckerpunch"],
6612
6608
  randomBattleLevel: 86,
6613
- randomDoubleBattleMoves: ["closecombat", "coaching", "drainpunch", "icepunch", "octolock", "payback", "protect"],
6609
+ randomDoubleBattleMoves: ["closecombat", "coaching", "drainpunch", "icepunch", "octolock", "protect"],
6614
6610
  randomDoubleBattleLevel: 88,
6615
6611
  tier: "(PU)",
6616
6612
  doublesTier: "(DUU)",
@@ -6726,7 +6722,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
6726
6722
  stonjourner: {
6727
6723
  randomBattleMoves: ["earthquake", "heatcrash", "rockpolish", "stealthrock", "stoneedge"],
6728
6724
  randomBattleLevel: 88,
6729
- randomDoubleBattleMoves: ["bodypress", "heatcrash", "heavyslam", "protect", "rockpolish", "stoneedge", "wideguard"],
6725
+ randomDoubleBattleMoves: ["bodypress", "heatcrash", "heavyslam", "protect", "rockpolish", "stoneedge"],
6730
6726
  randomDoubleBattleLevel: 88,
6731
6727
  tier: "(PU)",
6732
6728
  doublesTier: "(DUU)",
@@ -6735,7 +6731,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
6735
6731
  eiscue: {
6736
6732
  randomBattleMoves: ["bellydrum", "iciclecrash", "liquidation", "substitute", "zenheadbutt"],
6737
6733
  randomBattleLevel: 82,
6738
- randomDoubleBattleMoves: ["bellydrum", "iciclecrash", "liquidation", "protect", "zenheadbutt"],
6734
+ randomDoubleBattleMoves: ["bellydrum", "iciclecrash", "liquidation", "protect"],
6739
6735
  randomDoubleBattleLevel: 86,
6740
6736
  tier: "(PU)",
6741
6737
  doublesTier: "(DUU)",
@@ -6849,7 +6845,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
6849
6845
  dragapult: {
6850
6846
  randomBattleMoves: ["dracometeor", "fireblast", "shadowball", "thunderbolt", "uturn"],
6851
6847
  randomBattleLevel: 78,
6852
- randomDoubleBattleMoves: ["dragondarts", "fireblast", "protect", "shadowball", "thunderbolt", "willowisp"],
6848
+ randomDoubleBattleMoves: ["dragondarts", "fireblast", "protect", "shadowball", "thunderbolt", "thunderwave"],
6853
6849
  randomDoubleBattleLevel: 80,
6854
6850
  tier: "OU",
6855
6851
  doublesTier: "DOU",
@@ -6885,7 +6881,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
6885
6881
  zamazentacrowned: {
6886
6882
  randomBattleMoves: ["behemothbash", "closecombat", "crunch", "howl", "psychicfangs"],
6887
6883
  randomBattleLevel: 71,
6888
- randomDoubleBattleMoves: ["behemothbash", "closecombat", "crunch", "howl", "protect", "psychicfangs"],
6884
+ randomDoubleBattleMoves: ["behemothbash", "closecombat", "crunch", "howl", "protect"],
6889
6885
  randomDoubleBattleLevel: 72,
6890
6886
  tier: "Uber",
6891
6887
  doublesTier: "DUber",
@@ -6919,7 +6915,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
6919
6915
  urshifurapidstrike: {
6920
6916
  randomBattleMoves: ["bulkup", "drainpunch", "substitute", "surgingstrikes"],
6921
6917
  randomBattleLevel: 78,
6922
- randomDoubleBattleMoves: ["aquajet", "closecombat", "poisonjab", "protect", "surgingstrikes", "uturn"],
6918
+ randomDoubleBattleMoves: ["aquajet", "closecombat", "icepunch", "protect", "surgingstrikes", "uturn"],
6923
6919
  randomDoubleBattleLevel: 80,
6924
6920
  tier: "OU",
6925
6921
  doublesTier: "DOU",
@@ -6944,7 +6940,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
6944
6940
  zarude: {
6945
6941
  randomBattleMoves: ["bulkup", "closecombat", "darkestlariat", "junglehealing", "powerwhip", "uturn"],
6946
6942
  randomBattleLevel: 78,
6947
- randomDoubleBattleMoves: ["closecombat", "darkestlariat", "junglehealing", "powerwhip", "protect", "rockslide"],
6943
+ randomDoubleBattleMoves: ["closecombat", "darkestlariat", "junglehealing", "powerwhip", "protect"],
6948
6944
  randomDoubleBattleLevel: 80,
6949
6945
  tier: "UU",
6950
6946
  doublesTier: "(DUU)",
@@ -6953,7 +6949,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
6953
6949
  zarudedada: {
6954
6950
  randomBattleMoves: ["bulkup", "closecombat", "darkestlariat", "junglehealing", "powerwhip", "uturn"],
6955
6951
  randomBattleLevel: 78,
6956
- randomDoubleBattleMoves: ["closecombat", "darkestlariat", "junglehealing", "powerwhip", "protect", "rockslide"],
6952
+ randomDoubleBattleMoves: ["closecombat", "darkestlariat", "junglehealing", "powerwhip", "protect"],
6957
6953
  randomDoubleBattleLevel: 80,
6958
6954
  },
6959
6955
  regieleki: {