@pkmn/sim 0.6.1 → 0.6.3

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 (51) hide show
  1. package/build/config/formats.js +161 -166
  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 +87 -52
  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/mods/gen2/scripts.js +1 -1
  18. package/build/data/moves.js +44 -25
  19. package/build/data/moves.js.map +1 -1
  20. package/build/data/pokedex.js +1 -1
  21. package/build/data/rulesets.js +58 -0
  22. package/build/data/rulesets.js.map +1 -1
  23. package/build/sim/battle.js +8 -4
  24. package/build/sim/battle.js.map +1 -1
  25. package/build/sim/dex-conditions.d.ts +1 -0
  26. package/build/sim/dex-conditions.js.map +1 -1
  27. package/build/sim/field.js +1 -0
  28. package/build/sim/field.js.map +1 -1
  29. package/build/sim/pokemon.js +2 -10
  30. package/build/sim/pokemon.js.map +1 -1
  31. package/build/sim/team-validator.d.ts +2 -2
  32. package/build/sim/team-validator.js +19 -14
  33. package/build/sim/team-validator.js.map +1 -1
  34. package/config/formats.ts +168 -169
  35. package/data/aliases.ts +2 -2
  36. package/data/formats-data.ts +111 -115
  37. package/data/items.ts +7 -1
  38. package/data/learnsets.ts +3 -2
  39. package/data/mods/gen1/moves.ts +0 -10
  40. package/data/mods/gen1/scripts.ts +85 -51
  41. package/data/mods/gen2/moves.ts +0 -1
  42. package/data/mods/gen2/scripts.ts +1 -1
  43. package/data/moves.ts +43 -23
  44. package/data/pokedex.ts +1 -1
  45. package/data/rulesets.ts +59 -0
  46. package/package.json +1 -1
  47. package/sim/battle.ts +6 -4
  48. package/sim/dex-conditions.ts +1 -0
  49. package/sim/field.ts +1 -0
  50. package/sim/pokemon.ts +1 -8
  51. package/sim/team-validator.ts +27 -15
@@ -85,7 +85,7 @@ exports.FormatsData = {
85
85
  blastoisegmax: {
86
86
  randomBattleMoves: ["icebeam", "protect", "rapidspin", "scald", "toxic"],
87
87
  randomBattleLevel: 82,
88
- randomDoubleBattleMoves: ["fakeout", "flipturn", "followme", "icywind", "lifedew", "muddywater", "protect"],
88
+ randomDoubleBattleMoves: ["fakeout", "flipturn", "followme", "icywind", "lifedew", "muddywater"],
89
89
  randomDoubleBattleLevel: 80,
90
90
  isNonstandard: "Gigantamax",
91
91
  tier: "AG",
@@ -295,7 +295,7 @@ exports.FormatsData = {
295
295
  raichu: {
296
296
  randomBattleMoves: ["focusblast", "grassknot", "nastyplot", "surf", "thunderbolt", "voltswitch"],
297
297
  randomBattleLevel: 86,
298
- randomDoubleBattleMoves: ["encore", "fakeout", "grassknot", "helpinghand", "nuzzle", "protect", "thunderbolt", "voltswitch"],
298
+ randomDoubleBattleMoves: ["encore", "fakeout", "helpinghand", "nuzzle", "thunderbolt", "voltswitch"],
299
299
  randomDoubleBattleLevel: 88,
300
300
  randomBattleNoDynamaxMoves: ["encore", "focusblast", "grassknot", "nastyplot", "surf", "thunderbolt", "voltswitch"],
301
301
  tier: "(PU)",
@@ -492,7 +492,7 @@ exports.FormatsData = {
492
492
  dugtrio: {
493
493
  randomBattleMoves: ["earthquake", "memento", "stoneedge", "suckerpunch"],
494
494
  randomBattleLevel: 82,
495
- randomDoubleBattleMoves: ["highhorsepower", "memento", "protect", "rockslide", "substitute", "suckerpunch"],
495
+ randomDoubleBattleMoves: ["highhorsepower", "memento", "protect", "rockslide", "suckerpunch"],
496
496
  randomDoubleBattleLevel: 88,
497
497
  tier: "(PU)",
498
498
  doublesTier: "(DUU)",
@@ -534,7 +534,7 @@ exports.FormatsData = {
534
534
  persianalola: {
535
535
  randomBattleMoves: ["darkpulse", "hypnosis", "nastyplot", "thunderbolt"],
536
536
  randomBattleLevel: 82,
537
- randomDoubleBattleMoves: ["fakeout", "foulplay", "icywind", "partingshot", "protect", "snarl", "taunt"],
537
+ randomDoubleBattleMoves: ["fakeout", "foulplay", "icywind", "partingshot", "snarl", "taunt"],
538
538
  randomDoubleBattleLevel: 88,
539
539
  tier: "(PU)",
540
540
  doublesTier: "(DUU)",
@@ -600,7 +600,7 @@ exports.FormatsData = {
600
600
  poliwrath: {
601
601
  randomBattleMoves: ["closecombat", "darkestlariat", "liquidation", "raindance"],
602
602
  randomBattleLevel: 84,
603
- randomDoubleBattleMoves: ["closecombat", "coaching", "darkestlariat", "helpinghand", "icywind", "liquidation", "protect"],
603
+ randomDoubleBattleMoves: ["closecombat", "coaching", "helpinghand", "liquidation", "protect"],
604
604
  randomDoubleBattleLevel: 88,
605
605
  tier: "(PU)",
606
606
  doublesTier: "(DUU)",
@@ -609,7 +609,7 @@ exports.FormatsData = {
609
609
  politoed: {
610
610
  randomBattleMoves: ["encore", "icebeam", "protect", "rest", "scald", "toxic"],
611
611
  randomBattleLevel: 86,
612
- randomDoubleBattleMoves: ["earthpower", "helpinghand", "icywind", "muddywater", "protect"],
612
+ randomDoubleBattleMoves: ["haze", "helpinghand", "icywind", "protect", "scald"],
613
613
  randomDoubleBattleLevel: 84,
614
614
  tier: "(PU)",
615
615
  doublesTier: "DUU",
@@ -1033,7 +1033,7 @@ exports.FormatsData = {
1033
1033
  hitmonchan: {
1034
1034
  randomBattleMoves: ["bulkup", "drainpunch", "icepunch", "machpunch", "rapidspin", "throatchop"],
1035
1035
  randomBattleLevel: 86,
1036
- randomDoubleBattleMoves: ["coaching", "drainpunch", "feint", "firepunch", "icepunch", "machpunch", "protect"],
1036
+ randomDoubleBattleMoves: ["coaching", "drainpunch", "feint", "firepunch", "icepunch", "machpunch"],
1037
1037
  randomDoubleBattleLevel: 88,
1038
1038
  tier: "(PU)",
1039
1039
  doublesTier: "(DUU)",
@@ -1054,7 +1054,7 @@ exports.FormatsData = {
1054
1054
  lickilicky: {
1055
1055
  randomBattleMoves: ["bodyslam", "earthquake", "explosion", "healbell", "knockoff", "protect", "swordsdance", "wish"],
1056
1056
  randomBattleLevel: 86,
1057
- randomDoubleBattleMoves: ["bodyslam", "explosion", "helpinghand", "icywind", "knockoff", "protect"],
1057
+ randomDoubleBattleMoves: ["bodyslam", "explosion", "helpinghand", "icywind", "knockoff"],
1058
1058
  randomDoubleBattleLevel: 88,
1059
1059
  tier: "(PU)",
1060
1060
  doublesTier: "(DUU)",
@@ -1111,7 +1111,7 @@ exports.FormatsData = {
1111
1111
  blissey: {
1112
1112
  randomBattleMoves: ["seismictoss", "softboiled", "stealthrock", "teleport", "toxic"],
1113
1113
  randomBattleLevel: 83,
1114
- randomDoubleBattleMoves: ["allyswitch", "protect", "seismictoss", "softboiled", "thunderwave", "toxic"],
1114
+ randomDoubleBattleMoves: ["allyswitch", "healpulse", "helpinghand", "protect", "seismictoss", "softboiled", "thunderwave", "toxic"],
1115
1115
  randomDoubleBattleLevel: 88,
1116
1116
  tier: "OU",
1117
1117
  doublesTier: "(DUU)",
@@ -1178,7 +1178,7 @@ exports.FormatsData = {
1178
1178
  starmie: {
1179
1179
  randomBattleMoves: ["hydropump", "icebeam", "psyshock", "rapidspin", "recover", "scald", "thunderbolt"],
1180
1180
  randomBattleLevel: 84,
1181
- randomDoubleBattleMoves: ["flipturn", "hydropump", "icebeam", "protect", "psyshock", "thunderbolt"],
1181
+ randomDoubleBattleMoves: ["hydropump", "icebeam", "protect", "psyshock", "thunderbolt", "trick"],
1182
1182
  randomDoubleBattleLevel: 84,
1183
1183
  tier: "NU",
1184
1184
  doublesTier: "(DUU)",
@@ -1199,8 +1199,6 @@ exports.FormatsData = {
1199
1199
  mrmimegalar: {
1200
1200
  randomBattleMoves: ["focusblast", "freezedry", "nastyplot", "psychic", "rapidspin"],
1201
1201
  randomBattleLevel: 86,
1202
- randomDoubleBattleMoves: ["fakeout", "focusblast", "freezedry", "nastyplot", "protect", "psychic"],
1203
- randomDoubleBattleLevel: 86,
1204
1202
  tier: "NFE",
1205
1203
  },
1206
1204
  mrrime: {
@@ -1358,7 +1356,7 @@ exports.FormatsData = {
1358
1356
  vaporeon: {
1359
1357
  randomBattleMoves: ["healbell", "icebeam", "protect", "scald", "toxic", "wish"],
1360
1358
  randomBattleLevel: 84,
1361
- randomDoubleBattleMoves: ["healbell", "icywind", "protect", "scald", "toxic", "wish"],
1359
+ randomDoubleBattleMoves: ["helpinghand", "icywind", "protect", "scald", "toxic", "wish"],
1362
1360
  randomDoubleBattleLevel: 88,
1363
1361
  tier: "NU",
1364
1362
  doublesTier: "(DUU)",
@@ -1367,7 +1365,7 @@ exports.FormatsData = {
1367
1365
  jolteon: {
1368
1366
  randomBattleMoves: ["hypervoice", "shadowball", "thunderbolt", "voltswitch"],
1369
1367
  randomBattleLevel: 82,
1370
- randomDoubleBattleMoves: ["faketears", "protect", "shadowball", "thunderbolt", "thunderwave"],
1368
+ randomDoubleBattleMoves: ["faketears", "helpinghand", "shadowball", "thunderbolt", "thunderwave"],
1371
1369
  randomDoubleBattleLevel: 86,
1372
1370
  tier: "PU",
1373
1371
  doublesTier: "(DUU)",
@@ -1433,7 +1431,7 @@ exports.FormatsData = {
1433
1431
  porygon2: {
1434
1432
  randomBattleMoves: ["discharge", "icebeam", "recover", "toxic", "triattack"],
1435
1433
  randomBattleLevel: 82,
1436
- randomDoubleBattleMoves: ["icebeam", "protect", "recover", "thunderbolt", "toxic", "triattack"],
1434
+ randomDoubleBattleMoves: ["icebeam", "recover", "thunderbolt", "toxic", "triattack", "trickroom"],
1437
1435
  randomDoubleBattleLevel: 83,
1438
1436
  tier: "RU",
1439
1437
  doublesTier: "DOU",
@@ -1447,7 +1445,7 @@ exports.FormatsData = {
1447
1445
  randomBattleNoDynamaxMoves: ["icebeam", "nastyplot", "shadowball", "thunderbolt", "triattack", "trick"],
1448
1446
  tier: "NUBL",
1449
1447
  doublesTier: "(DUU)",
1450
- natDexTier: "RUBL",
1448
+ natDexTier: "UUBL",
1451
1449
  },
1452
1450
  omanyte: {
1453
1451
  tier: "LC",
@@ -1467,7 +1465,7 @@ exports.FormatsData = {
1467
1465
  kabutops: {
1468
1466
  randomBattleMoves: ["aquajet", "knockoff", "liquidation", "rapidspin", "stoneedge", "swordsdance"],
1469
1467
  randomBattleLevel: 82,
1470
- randomDoubleBattleMoves: ["knockoff", "protect", "stoneedge", "superpower", "swordsdance", "waterfall"],
1468
+ randomDoubleBattleMoves: ["aquajet", "protect", "stoneedge", "superpower", "swordsdance", "waterfall"],
1471
1469
  randomDoubleBattleLevel: 86,
1472
1470
  tier: "(PU)",
1473
1471
  doublesTier: "(DUU)",
@@ -1510,7 +1508,7 @@ exports.FormatsData = {
1510
1508
  articuno: {
1511
1509
  randomBattleMoves: ["defog", "freezedry", "healbell", "roost", "toxic"],
1512
1510
  randomBattleLevel: 84,
1513
- randomDoubleBattleMoves: ["freezedry", "healbell", "hurricane", "icebeam", "roost", "toxic"],
1511
+ randomDoubleBattleMoves: ["freezedry", "healbell", "hurricane", "icebeam", "roost"],
1514
1512
  randomDoubleBattleLevel: 86,
1515
1513
  tier: "(PU)",
1516
1514
  doublesTier: "(DUU)",
@@ -1722,7 +1720,7 @@ exports.FormatsData = {
1722
1720
  togekiss: {
1723
1721
  randomBattleMoves: ["airslash", "aurasphere", "fireblast", "nastyplot", "roost", "thunderwave", "trick"],
1724
1722
  randomBattleLevel: 80,
1725
- randomDoubleBattleMoves: ["airslash", "dazzlinggleam", "followme", "heatwave", "protect", "tailwind"],
1723
+ randomDoubleBattleMoves: ["airslash", "dazzlinggleam", "followme", "helpinghand", "protect", "tailwind"],
1726
1724
  randomDoubleBattleLevel: 80,
1727
1725
  tier: "RU",
1728
1726
  doublesTier: "DUU",
@@ -1838,7 +1836,7 @@ exports.FormatsData = {
1838
1836
  quagsire: {
1839
1837
  randomBattleMoves: ["earthquake", "icebeam", "recover", "scald", "toxic"],
1840
1838
  randomBattleLevel: 84,
1841
- randomDoubleBattleMoves: ["highhorsepower", "protect", "recover", "scald", "toxic"],
1839
+ randomDoubleBattleMoves: ["highhorsepower", "protect", "recover", "scald", "yawn"],
1842
1840
  randomDoubleBattleLevel: 88,
1843
1841
  tier: "PU",
1844
1842
  doublesTier: "(DUU)",
@@ -1973,7 +1971,7 @@ exports.FormatsData = {
1973
1971
  weavile: {
1974
1972
  randomBattleMoves: ["iceshard", "knockoff", "lowkick", "swordsdance", "tripleaxel"],
1975
1973
  randomBattleLevel: 79,
1976
- randomDoubleBattleMoves: ["fakeout", "iceshard", "knockoff", "swordsdance", "tripleaxel"],
1974
+ randomDoubleBattleMoves: ["fakeout", "iceshard", "knockoff", "lowkick", "tripleaxel"],
1977
1975
  randomDoubleBattleLevel: 84,
1978
1976
  tier: "OU",
1979
1977
  doublesTier: "DUU",
@@ -2145,7 +2143,7 @@ exports.FormatsData = {
2145
2143
  suicune: {
2146
2144
  randomBattleMoves: ["airslash", "calmmind", "icebeam", "rest", "scald", "sleeptalk"],
2147
2145
  randomBattleLevel: 80,
2148
- randomDoubleBattleMoves: ["icebeam", "scald", "snarl", "tailwind", "toxic"],
2146
+ randomDoubleBattleMoves: ["calmmind", "icebeam", "scald", "snarl", "tailwind"],
2149
2147
  randomDoubleBattleLevel: 82,
2150
2148
  randomBattleNoDynamaxMoves: ["calmmind", "icebeam", "rest", "scald", "sleeptalk"],
2151
2149
  tier: "RU",
@@ -2207,7 +2205,7 @@ exports.FormatsData = {
2207
2205
  sceptile: {
2208
2206
  randomBattleMoves: ["earthquake", "focusblast", "gigadrain", "leafstorm", "leechseed", "rockslide", "substitute"],
2209
2207
  randomBattleLevel: 86,
2210
- randomDoubleBattleMoves: ["breakingswipe", "dragonpulse", "focusblast", "leafstorm", "protect"],
2208
+ randomDoubleBattleMoves: ["breakingswipe", "energyball", "focusblast", "leafstorm"],
2211
2209
  randomDoubleBattleLevel: 88,
2212
2210
  tier: "PUBL",
2213
2211
  doublesTier: "(DUU)",
@@ -2247,7 +2245,7 @@ exports.FormatsData = {
2247
2245
  swampert: {
2248
2246
  randomBattleMoves: ["earthquake", "flipturn", "icebeam", "protect", "scald", "stealthrock", "toxic"],
2249
2247
  randomBattleLevel: 80,
2250
- randomDoubleBattleMoves: ["highhorsepower", "icywind", "muddywater", "protect", "stealthrock", "wideguard"],
2248
+ randomDoubleBattleMoves: ["highhorsepower", "icywind", "liquidation", "muddywater", "protect", "stealthrock", "wideguard"],
2251
2249
  randomDoubleBattleLevel: 86,
2252
2250
  tier: "UU",
2253
2251
  doublesTier: "(DUU)",
@@ -2345,7 +2343,7 @@ exports.FormatsData = {
2345
2343
  shiftry: {
2346
2344
  randomBattleMoves: ["darkpulse", "defog", "heatwave", "leafstorm", "nastyplot", "suckerpunch"],
2347
2345
  randomBattleLevel: 86,
2348
- randomDoubleBattleMoves: ["fakeout", "knockoff", "leafblade", "suckerpunch", "swordsdance", "tailwind"],
2346
+ randomDoubleBattleMoves: ["defog", "fakeout", "knockoff", "leafblade", "suckerpunch", "tailwind"],
2349
2347
  randomDoubleBattleLevel: 88,
2350
2348
  randomBattleNoDynamaxMoves: ["defog", "knockoff", "leafblade", "lowkick", "rockslide", "suckerpunch", "swordsdance"],
2351
2349
  tier: "(PU)",
@@ -2458,7 +2456,7 @@ exports.FormatsData = {
2458
2456
  shedinja: {
2459
2457
  randomBattleMoves: ["poltergeist", "shadowsneak", "swordsdance", "willowisp", "xscissor"],
2460
2458
  randomBattleLevel: 88,
2461
- randomDoubleBattleMoves: ["allyswitch", "poltergeist", "protect", "shadowsneak", "swordsdance", "willowisp", "xscissor"],
2459
+ randomDoubleBattleMoves: ["poltergeist", "protect", "shadowsneak", "swordsdance", "willowisp", "xscissor"],
2462
2460
  randomDoubleBattleLevel: 95,
2463
2461
  tier: "(PU)",
2464
2462
  doublesTier: "(DUU)",
@@ -2658,7 +2656,7 @@ exports.FormatsData = {
2658
2656
  wailord: {
2659
2657
  randomBattleMoves: ["hydropump", "hypervoice", "icebeam", "waterspout"],
2660
2658
  randomBattleLevel: 90,
2661
- randomDoubleBattleMoves: ["hydropump", "hypervoice", "icebeam", "waterspout"],
2659
+ randomDoubleBattleMoves: ["hydropump", "heavyslam", "icebeam", "waterspout"],
2662
2660
  randomDoubleBattleLevel: 88,
2663
2661
  tier: "(PU)",
2664
2662
  doublesTier: "(DUU)",
@@ -2767,7 +2765,7 @@ exports.FormatsData = {
2767
2765
  solrock: {
2768
2766
  randomBattleMoves: ["earthquake", "explosion", "morningsun", "rockslide", "stealthrock", "willowisp"],
2769
2767
  randomBattleLevel: 88,
2770
- randomDoubleBattleMoves: ["allyswitch", "flareblitz", "helpinghand", "rockslide", "stoneedge", "willowisp"],
2768
+ randomDoubleBattleMoves: ["flareblitz", "helpinghand", "rockslide", "stoneedge", "willowisp"],
2771
2769
  randomDoubleBattleLevel: 88,
2772
2770
  tier: "(PU)",
2773
2771
  doublesTier: "(DUU)",
@@ -2803,7 +2801,7 @@ exports.FormatsData = {
2803
2801
  claydol: {
2804
2802
  randomBattleMoves: ["earthquake", "icebeam", "psychic", "rapidspin", "stealthrock", "toxic"],
2805
2803
  randomBattleLevel: 86,
2806
- randomDoubleBattleMoves: ["allyswitch", "earthpower", "icebeam", "psychic", "rapidspin", "stealthrock"],
2804
+ randomDoubleBattleMoves: ["allyswitch", "earthpower", "icebeam", "psychic", "rapidspin"],
2807
2805
  randomDoubleBattleLevel: 88,
2808
2806
  tier: "PU",
2809
2807
  doublesTier: "(DUU)",
@@ -2815,7 +2813,7 @@ exports.FormatsData = {
2815
2813
  cradily: {
2816
2814
  randomBattleMoves: ["powerwhip", "recover", "stealthrock", "stoneedge", "swordsdance", "toxic"],
2817
2815
  randomBattleLevel: 86,
2818
- randomDoubleBattleMoves: ["powerwhip", "protect", "recover", "stealthrock", "stoneedge", "stringshot", "toxic"],
2816
+ randomDoubleBattleMoves: ["powerwhip", "protect", "recover", "stealthrock", "stoneedge", "stringshot"],
2819
2817
  randomDoubleBattleLevel: 88,
2820
2818
  tier: "(PU)",
2821
2819
  doublesTier: "(DUU)",
@@ -2884,8 +2882,6 @@ exports.FormatsData = {
2884
2882
  tier: "LC",
2885
2883
  },
2886
2884
  dusclops: {
2887
- randomDoubleBattleMoves: ["allyswitch", "haze", "helpinghand", "nightshade", "painsplit", "trickroom", "willowisp"],
2888
- randomDoubleBattleLevel: 84,
2889
2885
  tier: "NFE",
2890
2886
  },
2891
2887
  dusknoir: {
@@ -3080,7 +3076,7 @@ exports.FormatsData = {
3080
3076
  latios: {
3081
3077
  randomBattleMoves: ["calmmind", "dracometeor", "mysticalfire", "psyshock", "roost", "trick"],
3082
3078
  randomBattleLevel: 78,
3083
- randomDoubleBattleMoves: ["dracometeor", "dragonpulse", "mysticalfire", "psychic", "psyshock", "roost", "tailwind", "trick"],
3079
+ randomDoubleBattleMoves: ["dracometeor", "mysticalfire", "psychic", "psyshock", "roost", "tailwind", "trick"],
3084
3080
  randomDoubleBattleLevel: 80,
3085
3081
  tier: "UUBL",
3086
3082
  doublesTier: "(DUU)",
@@ -3338,7 +3334,7 @@ exports.FormatsData = {
3338
3334
  cherrim: {
3339
3335
  randomBattleMoves: ["dazzlinggleam", "energyball", "healingwish", "petaldance", "pollenpuff"],
3340
3336
  randomBattleLevel: 93,
3341
- randomDoubleBattleMoves: ["aromatherapy", "energyball", "helpinghand", "pollenpuff", "protect"],
3337
+ randomDoubleBattleMoves: ["energyball", "healingwish", "helpinghand", "pollenpuff"],
3342
3338
  randomDoubleBattleLevel: 92,
3343
3339
  tier: "(PU)",
3344
3340
  doublesTier: "(DUU)",
@@ -3354,7 +3350,7 @@ exports.FormatsData = {
3354
3350
  gastrodon: {
3355
3351
  randomBattleMoves: ["clearsmog", "earthquake", "icebeam", "recover", "scald", "toxic"],
3356
3352
  randomBattleLevel: 84,
3357
- randomDoubleBattleMoves: ["clearsmog", "earthpower", "icywind", "protect", "recover", "scald", "yawn"],
3353
+ randomDoubleBattleMoves: ["clearsmog", "earthpower", "icywind", "recover", "scald", "yawn"],
3358
3354
  randomDoubleBattleLevel: 80,
3359
3355
  tier: "NU",
3360
3356
  doublesTier: "DOU",
@@ -3367,7 +3363,7 @@ exports.FormatsData = {
3367
3363
  drifblim: {
3368
3364
  randomBattleMoves: ["calmmind", "shadowball", "strengthsap", "thunderbolt"],
3369
3365
  randomBattleLevel: 84,
3370
- randomDoubleBattleMoves: ["destinybond", "hex", "tailwind", "thunderwave", "willowisp"],
3366
+ randomDoubleBattleMoves: ["calmmind", "icywind", "shadowball", "strengthsap"],
3371
3367
  randomDoubleBattleLevel: 84,
3372
3368
  tier: "(PU)",
3373
3369
  doublesTier: "(DUU)",
@@ -3406,7 +3402,7 @@ exports.FormatsData = {
3406
3402
  skuntank: {
3407
3403
  randomBattleMoves: ["crunch", "defog", "fireblast", "poisonjab", "suckerpunch", "taunt", "toxic"],
3408
3404
  randomBattleLevel: 85,
3409
- randomDoubleBattleMoves: ["crunch", "fireblast", "haze", "poisonjab", "suckerpunch", "taunt"],
3405
+ randomDoubleBattleMoves: ["crunch", "defog", "fireblast", "poisonjab", "suckerpunch", "taunt"],
3410
3406
  randomDoubleBattleLevel: 88,
3411
3407
  tier: "(PU)",
3412
3408
  doublesTier: "(DUU)",
@@ -3418,7 +3414,7 @@ exports.FormatsData = {
3418
3414
  bronzong: {
3419
3415
  randomBattleMoves: ["earthquake", "ironhead", "protect", "stealthrock", "toxic"],
3420
3416
  randomBattleLevel: 83,
3421
- randomDoubleBattleMoves: ["allyswitch", "bodypress", "explosion", "ironhead", "trickroom"],
3417
+ randomDoubleBattleMoves: ["allyswitch", "bodypress", "ironhead", "trickroom"],
3422
3418
  randomDoubleBattleLevel: 88,
3423
3419
  tier: "RU",
3424
3420
  doublesTier: "(DUU)",
@@ -3464,7 +3460,7 @@ exports.FormatsData = {
3464
3460
  lucario: {
3465
3461
  randomBattleMoves: ["closecombat", "extremespeed", "meteormash", "stoneedge", "swordsdance"],
3466
3462
  randomBattleLevel: 82,
3467
- randomDoubleBattleMoves: ["closecombat", "darkpulse", "extremespeed", "icepunch", "meteormash", "protect", "swordsdance"],
3463
+ randomDoubleBattleMoves: ["closecombat", "extremespeed", "icepunch", "meteormash", "protect", "swordsdance"],
3468
3464
  randomDoubleBattleLevel: 84,
3469
3465
  tier: "RU",
3470
3466
  doublesTier: "(DUU)",
@@ -3481,7 +3477,7 @@ exports.FormatsData = {
3481
3477
  hippowdon: {
3482
3478
  randomBattleMoves: ["earthquake", "slackoff", "stealthrock", "stoneedge", "toxic", "whirlwind"],
3483
3479
  randomBattleLevel: 80,
3484
- randomDoubleBattleMoves: ["highhorsepower", "protect", "rockslide", "slackoff", "stealthrock", "whirlwind", "yawn"],
3480
+ randomDoubleBattleMoves: ["highhorsepower", "slackoff", "stealthrock", "whirlwind", "yawn"],
3485
3481
  randomDoubleBattleLevel: 88,
3486
3482
  tier: "UU",
3487
3483
  doublesTier: "(DUU)",
@@ -3493,7 +3489,7 @@ exports.FormatsData = {
3493
3489
  drapion: {
3494
3490
  randomBattleMoves: ["aquatail", "earthquake", "knockoff", "poisonjab", "swordsdance", "taunt", "toxicspikes"],
3495
3491
  randomBattleLevel: 82,
3496
- randomDoubleBattleMoves: ["knockoff", "poisonjab", "protect", "rockslide", "taunt"],
3492
+ randomDoubleBattleMoves: ["knockoff", "poisonjab", "protect", "swordsdance", "taunt"],
3497
3493
  randomDoubleBattleLevel: 88,
3498
3494
  tier: "NU",
3499
3495
  doublesTier: "(DUU)",
@@ -3505,7 +3501,7 @@ exports.FormatsData = {
3505
3501
  toxicroak: {
3506
3502
  randomBattleMoves: ["drainpunch", "gunkshot", "icepunch", "knockoff", "substitute", "suckerpunch", "swordsdance"],
3507
3503
  randomBattleLevel: 84,
3508
- randomDoubleBattleMoves: ["drainpunch", "fakeout", "gunkshot", "icepunch", "protect", "suckerpunch", "swordsdance", "taunt"],
3504
+ randomDoubleBattleMoves: ["drainpunch", "fakeout", "gunkshot", "protect", "suckerpunch", "swordsdance", "taunt"],
3509
3505
  randomDoubleBattleLevel: 86,
3510
3506
  tier: "NU",
3511
3507
  doublesTier: "(DUU)",
@@ -3532,7 +3528,7 @@ exports.FormatsData = {
3532
3528
  abomasnow: {
3533
3529
  randomBattleMoves: ["auroraveil", "blizzard", "earthquake", "iceshard", "woodhammer"],
3534
3530
  randomBattleLevel: 82,
3535
- randomDoubleBattleMoves: ["auroraveil", "blizzard", "focusblast", "iceshard", "protect", "woodhammer"],
3531
+ randomDoubleBattleMoves: ["auroraveil", "blizzard", "iceshard", "protect", "woodhammer"],
3536
3532
  randomDoubleBattleLevel: 88,
3537
3533
  tier: "(PU)",
3538
3534
  doublesTier: "(DUU)",
@@ -3582,7 +3578,7 @@ exports.FormatsData = {
3582
3578
  rotomfan: {
3583
3579
  randomBattleMoves: ["airslash", "nastyplot", "thunderbolt", "voltswitch", "willowisp"],
3584
3580
  randomBattleLevel: 84,
3585
- randomDoubleBattleMoves: ["airslash", "darkpulse", "nastyplot", "protect", "thunderbolt"],
3581
+ randomDoubleBattleMoves: ["airslash", "nastyplot", "protect", "thunderbolt"],
3586
3582
  randomDoubleBattleLevel: 84,
3587
3583
  tier: "(PU)",
3588
3584
  doublesTier: "(DUU)",
@@ -3600,7 +3596,7 @@ exports.FormatsData = {
3600
3596
  uxie: {
3601
3597
  randomBattleMoves: ["healbell", "knockoff", "psychic", "stealthrock", "uturn", "yawn"],
3602
3598
  randomBattleLevel: 82,
3603
- randomDoubleBattleMoves: ["helpinghand", "knockoff", "psychic", "stealthrock", "thunderwave", "yawn"],
3599
+ randomDoubleBattleMoves: ["helpinghand", "knockoff", "psychic", "stealthrock", "thunderwave", "u-turn", "yawn"],
3604
3600
  randomDoubleBattleLevel: 86,
3605
3601
  tier: "(PU)",
3606
3602
  doublesTier: "(DUU)",
@@ -3618,7 +3614,7 @@ exports.FormatsData = {
3618
3614
  azelf: {
3619
3615
  randomBattleMoves: ["dazzlinggleam", "fireblast", "nastyplot", "psychic", "psyshock", "stealthrock", "taunt", "uturn"],
3620
3616
  randomBattleLevel: 82,
3621
- randomDoubleBattleMoves: ["energyball", "fireblast", "nastyplot", "protect", "psychic", "shadowball", "uturn"],
3617
+ randomDoubleBattleMoves: ["energyball", "fireblast", "nastyplot", "psychic", "shadowball", "uturn"],
3622
3618
  randomDoubleBattleLevel: 84,
3623
3619
  tier: "UU",
3624
3620
  doublesTier: "(DUU)",
@@ -3627,7 +3623,7 @@ exports.FormatsData = {
3627
3623
  dialga: {
3628
3624
  randomBattleMoves: ["dracometeor", "fireblast", "flashcannon", "stealthrock", "thunderbolt", "toxic"],
3629
3625
  randomBattleLevel: 74,
3630
- randomDoubleBattleMoves: ["dracometeor", "earthpower", "flashcannon", "protect", "thunderbolt", "thunderwave"],
3626
+ randomDoubleBattleMoves: ["dracometeor", "earthpower", "fireblast", "flashcannon", "protect", "thunderbolt", "thunderwave"],
3631
3627
  randomDoubleBattleLevel: 74,
3632
3628
  tier: "Uber",
3633
3629
  doublesTier: "DUber",
@@ -3680,7 +3676,7 @@ exports.FormatsData = {
3680
3676
  giratinaorigin: {
3681
3677
  randomBattleMoves: ["dualwingbeat", "honeclaws", "outrage", "poltergeist", "shadowsneak"],
3682
3678
  randomBattleLevel: 74,
3683
- randomDoubleBattleMoves: ["breakingswipe", "dracometeor", "protect", "shadowball", "shadowsneak", "tailwind", "willowisp"],
3679
+ randomDoubleBattleMoves: ["dracometeor", "protect", "shadowball", "shadowsneak", "tailwind", "willowisp"],
3684
3680
  randomDoubleBattleLevel: 74,
3685
3681
  randomBattleNoDynamaxMoves: ["defog", "dracometeor", "earthquake", "poltergeist", "shadowsneak", "willowisp"],
3686
3682
  tier: "Uber",
@@ -3690,7 +3686,7 @@ exports.FormatsData = {
3690
3686
  cresselia: {
3691
3687
  randomBattleMoves: ["calmmind", "moonblast", "moonlight", "psyshock", "thunderwave", "toxic"],
3692
3688
  randomBattleLevel: 80,
3693
- randomDoubleBattleMoves: ["allyswitch", "helpinghand", "icywind", "moonlight", "psychic"],
3689
+ randomDoubleBattleMoves: ["helpinghand", "icywind", "moonblast", "moonlight", "psychic", "thunderwave"],
3694
3690
  randomDoubleBattleLevel: 83,
3695
3691
  tier: "NUBL",
3696
3692
  doublesTier: "DUU",
@@ -3854,7 +3850,7 @@ exports.FormatsData = {
3854
3850
  stoutland: {
3855
3851
  randomBattleMoves: ["crunch", "facade", "playrough", "superpower", "wildcharge"],
3856
3852
  randomBattleLevel: 86,
3857
- randomDoubleBattleMoves: ["crunch", "facade", "helpinghand", "protect", "superpower", "thunderwave"],
3853
+ randomDoubleBattleMoves: ["facade", "helpinghand", "superpower", "thunderwave"],
3858
3854
  randomDoubleBattleLevel: 90,
3859
3855
  tier: "(PU)",
3860
3856
  doublesTier: "(DUU)",
@@ -3908,7 +3904,7 @@ exports.FormatsData = {
3908
3904
  musharna: {
3909
3905
  randomBattleMoves: ["calmmind", "moonblast", "moonlight", "psychic", "thunderwave"],
3910
3906
  randomBattleLevel: 86,
3911
- randomDoubleBattleMoves: ["helpinghand", "hypnosis", "moonblast", "protect", "psychic", "trickroom"],
3907
+ randomDoubleBattleMoves: ["helpinghand", "hypnosis", "moonblast", "psychic", "trickroom"],
3912
3908
  randomDoubleBattleLevel: 88,
3913
3909
  tier: "(PU)",
3914
3910
  doublesTier: "(DUU)",
@@ -3923,7 +3919,7 @@ exports.FormatsData = {
3923
3919
  unfezant: {
3924
3920
  randomBattleMoves: ["bravebird", "defog", "nightslash", "roost", "uturn"],
3925
3921
  randomBattleLevel: 84,
3926
- randomDoubleBattleMoves: ["bravebird", "nightslash", "quickattack", "roost", "tailwind", "uturn"],
3922
+ randomDoubleBattleMoves: ["bravebird", "nightslash", "quickattack", "tailwind", "uturn"],
3927
3923
  randomDoubleBattleLevel: 86,
3928
3924
  tier: "(PU)",
3929
3925
  doublesTier: "(DUU)",
@@ -3948,7 +3944,7 @@ exports.FormatsData = {
3948
3944
  gigalith: {
3949
3945
  randomBattleMoves: ["earthquake", "explosion", "stealthrock", "stoneedge", "superpower"],
3950
3946
  randomBattleLevel: 82,
3951
- randomDoubleBattleMoves: ["bodypress", "explosion", "heavyslam", "protect", "rockslide", "stealthrock", "stompingtantrum", "stoneedge", "wideguard"],
3947
+ randomDoubleBattleMoves: ["bodypress", "explosion", "protect", "rockslide", "stealthrock", "stompingtantrum", "stoneedge", "wideguard"],
3952
3948
  randomDoubleBattleLevel: 88,
3953
3949
  tier: "PU",
3954
3950
  doublesTier: "DUU",
@@ -4004,7 +4000,7 @@ exports.FormatsData = {
4004
4000
  conkeldurr: {
4005
4001
  randomBattleMoves: ["closecombat", "drainpunch", "facade", "knockoff", "machpunch"],
4006
4002
  randomBattleLevel: 80,
4007
- randomDoubleBattleMoves: ["closecombat", "drainpunch", "highhorsepower", "icepunch", "knockoff", "machpunch", "protect", "stoneedge"],
4003
+ randomDoubleBattleMoves: ["closecombat", "drainpunch", "icepunch", "knockoff", "machpunch", "protect"],
4008
4004
  randomDoubleBattleLevel: 84,
4009
4005
  tier: "UU",
4010
4006
  doublesTier: "(DUU)",
@@ -4028,7 +4024,7 @@ exports.FormatsData = {
4028
4024
  throh: {
4029
4025
  randomBattleMoves: ["bulkup", "circlethrow", "icepunch", "knockoff", "rest", "sleeptalk", "stormthrow"],
4030
4026
  randomBattleLevel: 86,
4031
- randomDoubleBattleMoves: ["facade", "knockoff", "poisonjab", "protect", "stoneedge", "stormthrow", "wideguard"],
4027
+ randomDoubleBattleMoves: ["facade", "knockoff", "protect", "stoneedge", "stormthrow", "wideguard"],
4032
4028
  randomDoubleBattleLevel: 86,
4033
4029
  tier: "(PU)",
4034
4030
  doublesTier: "(DUU)",
@@ -4105,7 +4101,7 @@ exports.FormatsData = {
4105
4101
  basculin: {
4106
4102
  randomBattleMoves: ["aquajet", "crunch", "flipturn", "liquidation", "psychicfangs", "superpower"],
4107
4103
  randomBattleLevel: 86,
4108
- randomDoubleBattleMoves: ["flipturn", "headsmash", "icebeam", "liquidation", "muddywater", "protect", "psychicfangs", "superpower"],
4104
+ randomDoubleBattleMoves: ["flipturn", "liquidation", "muddywater", "protect", "superpower"],
4109
4105
  randomDoubleBattleLevel: 86,
4110
4106
  tier: "(PU)",
4111
4107
  doublesTier: "(DUU)",
@@ -4114,7 +4110,7 @@ exports.FormatsData = {
4114
4110
  basculinbluestriped: {
4115
4111
  randomBattleMoves: ["aquajet", "crunch", "flipturn", "liquidation", "psychicfangs", "superpower"],
4116
4112
  randomBattleLevel: 86,
4117
- randomDoubleBattleMoves: ["aquajet", "flipturn", "headsmash", "icebeam", "liquidation", "protect", "psychicfangs", "superpower"],
4113
+ randomDoubleBattleMoves: ["flipturn", "liquidation", "muddywater", "protect", "superpower"],
4118
4114
  randomDoubleBattleLevel: 86,
4119
4115
  tier: "(PU)",
4120
4116
  doublesTier: "(DUU)",
@@ -4148,7 +4144,7 @@ exports.FormatsData = {
4148
4144
  darmanitan: {
4149
4145
  randomBattleMoves: ["earthquake", "flareblitz", "rockslide", "superpower", "uturn"],
4150
4146
  randomBattleLevel: 80,
4151
- randomDoubleBattleMoves: ["earthquake", "flareblitz", "rockslide", "superpower", "uturn"],
4147
+ randomDoubleBattleMoves: ["earthquake", "flareblitz", "protect", "rockslide", "superpower", "uturn"],
4152
4148
  randomDoubleBattleLevel: 82,
4153
4149
  tier: "UU",
4154
4150
  doublesTier: "(DUU)",
@@ -4157,7 +4153,7 @@ exports.FormatsData = {
4157
4153
  darmanitangalar: {
4158
4154
  randomBattleMoves: ["earthquake", "flareblitz", "iciclecrash", "superpower", "uturn"],
4159
4155
  randomBattleLevel: 78,
4160
- randomDoubleBattleMoves: ["earthquake", "flareblitz", "iciclecrash", "rockslide", "superpower", "uturn"],
4156
+ randomDoubleBattleMoves: ["flareblitz", "iciclecrash", "rockslide", "superpower", "uturn"],
4161
4157
  randomDoubleBattleLevel: 80,
4162
4158
  tier: "Uber",
4163
4159
  doublesTier: "(DUU)",
@@ -4170,7 +4166,7 @@ exports.FormatsData = {
4170
4166
  maractus: {
4171
4167
  randomBattleMoves: ["energyball", "knockoff", "leechseed", "spikes", "spikyshield", "toxic"],
4172
4168
  randomBattleLevel: 95,
4173
- randomDoubleBattleMoves: ["acupressure", "drainpunch", "helpinghand", "leafstorm", "spikyshield", "suckerpunch"],
4169
+ randomDoubleBattleMoves: ["acupressure", "helpinghand", "leafstorm", "leechseed", "spikyshield"],
4174
4170
  randomDoubleBattleLevel: 96,
4175
4171
  tier: "(PU)",
4176
4172
  doublesTier: "(DUU)",
@@ -4182,7 +4178,7 @@ exports.FormatsData = {
4182
4178
  crustle: {
4183
4179
  randomBattleMoves: ["earthquake", "shellsmash", "spikes", "stealthrock", "stoneedge", "xscissor"],
4184
4180
  randomBattleLevel: 82,
4185
- randomDoubleBattleMoves: ["knockoff", "protect", "rockslide", "shellsmash", "stompingtantrum", "xscissor"],
4181
+ randomDoubleBattleMoves: ["knockoff", "protect", "rockslide", "shellsmash", "xscissor"],
4186
4182
  randomDoubleBattleLevel: 84,
4187
4183
  tier: "(PU)",
4188
4184
  doublesTier: "(DUU)",
@@ -4228,7 +4224,7 @@ exports.FormatsData = {
4228
4224
  runerigus: {
4229
4225
  randomBattleMoves: ["earthquake", "haze", "poltergeist", "stealthrock", "toxicspikes", "willowisp"],
4230
4226
  randomBattleLevel: 84,
4231
- randomDoubleBattleMoves: ["earthquake", "poltergeist", "protect", "trickroom", "willowisp"],
4227
+ randomDoubleBattleMoves: ["earthquake", "poltergeist", "protect", "toxicspikes", "trickroom", "willowisp"],
4232
4228
  randomDoubleBattleLevel: 88,
4233
4229
  tier: "(PU)",
4234
4230
  doublesTier: "(DUU)",
@@ -4252,7 +4248,7 @@ exports.FormatsData = {
4252
4248
  archeops: {
4253
4249
  randomBattleMoves: ["dualwingbeat", "earthquake", "roost", "stoneedge", "uturn"],
4254
4250
  randomBattleLevel: 82,
4255
- randomDoubleBattleMoves: ["aquatail", "dualwingbeat", "earthquake", "heatwave", "protect", "rockslide", "uturn"],
4251
+ randomDoubleBattleMoves: ["aquatail", "dualwingbeat", "earthquake", "protect", "rockslide", "uturn"],
4256
4252
  randomDoubleBattleLevel: 86,
4257
4253
  tier: "PU",
4258
4254
  doublesTier: "(DUU)",
@@ -4316,7 +4312,7 @@ exports.FormatsData = {
4316
4312
  gothitelle: {
4317
4313
  randomBattleMoves: ["nastyplot", "psychic", "shadowball", "thunderbolt", "trick"],
4318
4314
  randomBattleLevel: 86,
4319
- randomDoubleBattleMoves: ["allyswitch", "fakeout", "healpulse", "helpinghand", "hypnosis", "protect", "psychic", "shadowball", "trickroom"],
4315
+ randomDoubleBattleMoves: ["fakeout", "healpulse", "helpinghand", "hypnosis", "protect", "psychic", "trickroom"],
4320
4316
  randomDoubleBattleLevel: 83,
4321
4317
  tier: "(PU)",
4322
4318
  doublesTier: "(DUU)",
@@ -4356,7 +4352,7 @@ exports.FormatsData = {
4356
4352
  vanilluxe: {
4357
4353
  randomBattleMoves: ["auroraveil", "blizzard", "explosion", "flashcannon", "freezedry"],
4358
4354
  randomBattleLevel: 82,
4359
- randomDoubleBattleMoves: ["auroraveil", "blizzard", "freezedry", "iceshard", "protect"],
4355
+ randomDoubleBattleMoves: ["auroraveil", "blizzard", "explosion", "freezedry", "protect"],
4360
4356
  randomDoubleBattleLevel: 82,
4361
4357
  tier: "PUBL",
4362
4358
  doublesTier: "(DUU)",
@@ -4375,7 +4371,7 @@ exports.FormatsData = {
4375
4371
  emolga: {
4376
4372
  randomBattleMoves: ["airslash", "defog", "energyball", "roost", "thunderbolt", "toxic", "uturn"],
4377
4373
  randomBattleLevel: 88,
4378
- randomDoubleBattleMoves: ["acrobatics", "helpinghand", "nuzzle", "tailwind", "taunt"],
4374
+ randomDoubleBattleMoves: ["acrobatics", "helpinghand", "nuzzle", "tailwind", "taunt", "voltswitch"],
4379
4375
  randomDoubleBattleLevel: 88,
4380
4376
  tier: "(PU)",
4381
4377
  doublesTier: "(DUU)",
@@ -4411,7 +4407,7 @@ exports.FormatsData = {
4411
4407
  jellicent: {
4412
4408
  randomBattleMoves: ["icebeam", "recover", "scald", "shadowball", "toxic", "willowisp"],
4413
4409
  randomBattleLevel: 84,
4414
- randomDoubleBattleMoves: ["protect", "scald", "shadowball", "strengthsap", "trickroom", "willowisp"],
4410
+ randomDoubleBattleMoves: ["scald", "shadowball", "strengthsap", "trickroom", "willowisp"],
4415
4411
  randomDoubleBattleLevel: 84,
4416
4412
  tier: "PU",
4417
4413
  doublesTier: "(DUU)",
@@ -4442,7 +4438,7 @@ exports.FormatsData = {
4442
4438
  ferrothorn: {
4443
4439
  randomBattleMoves: ["gyroball", "knockoff", "leechseed", "powerwhip", "protect", "spikes", "stealthrock"],
4444
4440
  randomBattleLevel: 78,
4445
- randomDoubleBattleMoves: ["bodypress", "gyroball", "knockoff", "leechseed", "powerwhip", "protect", "toxic"],
4441
+ randomDoubleBattleMoves: ["bodypress", "gyroball", "leechseed", "powerwhip", "protect", "toxic"],
4446
4442
  randomDoubleBattleLevel: 83,
4447
4443
  tier: "OU",
4448
4444
  doublesTier: "DUU",
@@ -4457,7 +4453,7 @@ exports.FormatsData = {
4457
4453
  klinklang: {
4458
4454
  randomBattleMoves: ["geargrind", "shiftgear", "substitute", "wildcharge"],
4459
4455
  randomBattleLevel: 84,
4460
- randomDoubleBattleMoves: ["geargrind", "protect", "shiftgear", "thunderwave", "wildcharge"],
4456
+ randomDoubleBattleMoves: ["geargrind", "protect", "shiftgear", "wildcharge"],
4461
4457
  randomDoubleBattleLevel: 88,
4462
4458
  tier: "(PU)",
4463
4459
  doublesTier: "(DUU)",
@@ -4526,7 +4522,7 @@ exports.FormatsData = {
4526
4522
  beartic: {
4527
4523
  randomBattleMoves: ["aquajet", "iciclecrash", "stoneedge", "superpower", "swordsdance"],
4528
4524
  randomBattleLevel: 86,
4529
- randomDoubleBattleMoves: ["aquajet", "iciclecrash", "protect", "rockslide", "superpower", "swordsdance", "throatchop"],
4525
+ randomDoubleBattleMoves: ["aquajet", "iciclecrash", "protect", "superpower", "swordsdance"],
4530
4526
  randomDoubleBattleLevel: 86,
4531
4527
  tier: "(PU)",
4532
4528
  doublesTier: "(DUU)",
@@ -4557,7 +4553,7 @@ exports.FormatsData = {
4557
4553
  stunfisk: {
4558
4554
  randomBattleMoves: ["discharge", "earthpower", "foulplay", "sludgebomb", "stealthrock"],
4559
4555
  randomBattleLevel: 84,
4560
- randomDoubleBattleMoves: ["earthpower", "electroweb", "foulplay", "muddywater", "stealthrock", "thunderbolt"],
4556
+ randomDoubleBattleMoves: ["earthpower", "electroweb", "foulplay", "stealthrock", "thunderbolt"],
4561
4557
  randomDoubleBattleLevel: 88,
4562
4558
  tier: "(PU)",
4563
4559
  doublesTier: "(DUU)",
@@ -4566,7 +4562,7 @@ exports.FormatsData = {
4566
4562
  stunfiskgalar: {
4567
4563
  randomBattleMoves: ["earthquake", "painsplit", "stealthrock", "stoneedge", "thunderwave"],
4568
4564
  randomBattleLevel: 84,
4569
- randomDoubleBattleMoves: ["earthquake", "foulplay", "protect", "stealthrock", "stoneedge", "thunderwave"],
4565
+ randomDoubleBattleMoves: ["earthquake", "stealthrock", "stoneedge", "thunderwave", "yawn"],
4570
4566
  randomDoubleBattleLevel: 88,
4571
4567
  tier: "(PU)",
4572
4568
  doublesTier: "(DUU)",
@@ -4587,7 +4583,7 @@ exports.FormatsData = {
4587
4583
  druddigon: {
4588
4584
  randomBattleMoves: ["earthquake", "glare", "gunkshot", "outrage", "stealthrock", "suckerpunch", "superpower"],
4589
4585
  randomBattleLevel: 84,
4590
- randomDoubleBattleMoves: ["firepunch", "glare", "gunkshot", "protect", "scaleshot", "suckerpunch"],
4586
+ randomDoubleBattleMoves: ["dragonclaw", "firepunch", "glare", "gunkshot", "protect", "suckerpunch"],
4591
4587
  randomDoubleBattleLevel: 87,
4592
4588
  tier: "PU",
4593
4589
  doublesTier: "(DUU)",
@@ -4599,7 +4595,7 @@ exports.FormatsData = {
4599
4595
  golurk: {
4600
4596
  randomBattleMoves: ["dynamicpunch", "earthquake", "poltergeist", "rockpolish", "stoneedge"],
4601
4597
  randomBattleLevel: 82,
4602
- randomDoubleBattleMoves: ["dynamicpunch", "earthquake", "highhorsepower", "icepunch", "poltergeist", "protect"],
4598
+ randomDoubleBattleMoves: ["dynamicpunch", "highhorsepower", "icepunch", "poltergeist", "protect"],
4603
4599
  randomDoubleBattleLevel: 86,
4604
4600
  tier: "NU",
4605
4601
  doublesTier: "(DUU)",
@@ -4611,7 +4607,7 @@ exports.FormatsData = {
4611
4607
  bisharp: {
4612
4608
  randomBattleMoves: ["ironhead", "knockoff", "stealthrock", "suckerpunch", "swordsdance"],
4613
4609
  randomBattleLevel: 80,
4614
- randomDoubleBattleMoves: ["brickbreak", "ironhead", "knockoff", "protect", "suckerpunch", "swordsdance"],
4610
+ randomDoubleBattleMoves: ["ironhead", "knockoff", "protect", "suckerpunch", "swordsdance"],
4615
4611
  randomDoubleBattleLevel: 84,
4616
4612
  tier: "OU",
4617
4613
  doublesTier: "(DUU)",
@@ -4633,7 +4629,7 @@ exports.FormatsData = {
4633
4629
  braviary: {
4634
4630
  randomBattleMoves: ["bravebird", "bulkup", "closecombat", "roost"],
4635
4631
  randomBattleLevel: 82,
4636
- randomDoubleBattleMoves: ["bravebird", "closecombat", "protect", "roost", "tailwind"],
4632
+ randomDoubleBattleMoves: ["bravebird", "bulkup", "closecombat", "roost", "tailwind"],
4637
4633
  randomDoubleBattleLevel: 82,
4638
4634
  tier: "NU",
4639
4635
  doublesTier: "(DUU)",
@@ -4659,7 +4655,7 @@ exports.FormatsData = {
4659
4655
  heatmor: {
4660
4656
  randomBattleMoves: ["firelash", "gigadrain", "knockoff", "substitute", "suckerpunch", "superpower"],
4661
4657
  randomBattleLevel: 90,
4662
- randomDoubleBattleMoves: ["firelash", "gigadrain", "incinerate", "protect", "rocktomb", "suckerpunch", "superpower", "willowisp"],
4658
+ randomDoubleBattleMoves: ["firelash", "gigadrain", "incinerate", "protect", "suckerpunch", "superpower"],
4663
4659
  randomDoubleBattleLevel: 88,
4664
4660
  tier: "(PU)",
4665
4661
  doublesTier: "(DUU)",
@@ -4668,7 +4664,7 @@ exports.FormatsData = {
4668
4664
  durant: {
4669
4665
  randomBattleMoves: ["firstimpression", "honeclaws", "ironhead", "rockslide", "superpower"],
4670
4666
  randomBattleLevel: 78,
4671
- randomDoubleBattleMoves: ["firstimpression", "ironhead", "protect", "rockslide", "superpower", "xscissor"],
4667
+ randomDoubleBattleMoves: ["firstimpression", "ironhead", "protect", "stompingtantrum", "superpower", "xscissor"],
4672
4668
  randomDoubleBattleLevel: 82,
4673
4669
  tier: "RUBL",
4674
4670
  doublesTier: "(DUU)",
@@ -4695,7 +4691,7 @@ exports.FormatsData = {
4695
4691
  volcarona: {
4696
4692
  randomBattleMoves: ["bugbuzz", "fireblast", "gigadrain", "quiverdance", "roost"],
4697
4693
  randomBattleLevel: 76,
4698
- randomDoubleBattleMoves: ["bugbuzz", "gigadrain", "heatwave", "hurricane", "protect", "quiverdance"],
4694
+ randomDoubleBattleMoves: ["bugbuzz", "gigadrain", "heatwave", "protect", "quiverdance"],
4699
4695
  randomDoubleBattleLevel: 80,
4700
4696
  tier: "OU",
4701
4697
  doublesTier: "(DUU)",
@@ -4741,7 +4737,7 @@ exports.FormatsData = {
4741
4737
  tornadustherian: {
4742
4738
  randomBattleMoves: ["defog", "hurricane", "knockoff", "superpower", "uturn"],
4743
4739
  randomBattleLevel: 78,
4744
- randomDoubleBattleMoves: ["heatwave", "hurricane", "knockoff", "nastyplot", "protect"],
4740
+ randomDoubleBattleMoves: ["heatwave", "hurricane", "knockoff", "nastyplot", "protect", "uturn"],
4745
4741
  randomDoubleBattleLevel: 80,
4746
4742
  tier: "OU",
4747
4743
  doublesTier: "(DUU)",
@@ -4814,7 +4810,7 @@ exports.FormatsData = {
4814
4810
  kyuremblack: {
4815
4811
  randomBattleMoves: ["dragondance", "fusionbolt", "iciclespear", "outrage"],
4816
4812
  randomBattleLevel: 73,
4817
- randomDoubleBattleMoves: ["dragonclaw", "dragondance", "fusionbolt", "iciclespear", "protect", "roost"],
4813
+ randomDoubleBattleMoves: ["dragonclaw", "dragondance", "fusionbolt", "iciclespear", "protect"],
4818
4814
  randomDoubleBattleLevel: 75,
4819
4815
  tier: "Uber",
4820
4816
  doublesTier: "DOU",
@@ -4830,8 +4826,6 @@ exports.FormatsData = {
4830
4826
  natDexTier: "Uber",
4831
4827
  },
4832
4828
  keldeo: {
4833
- randomDoubleBattleMoves: ["airslash", "calmmind", "icywind", "muddywater", "protect", "secretsword"],
4834
- randomDoubleBattleLevel: 82,
4835
4829
  tier: "UU",
4836
4830
  doublesTier: "(DUU)",
4837
4831
  natDexTier: "RUBL",
@@ -4839,6 +4833,8 @@ exports.FormatsData = {
4839
4833
  keldeoresolute: {
4840
4834
  randomBattleMoves: ["airslash", "calmmind", "hydropump", "icywind", "scald", "secretsword", "substitute"],
4841
4835
  randomBattleLevel: 79,
4836
+ randomDoubleBattleMoves: ["airslash", "calmmind", "icywind", "muddywater", "protect", "secretsword"],
4837
+ randomDoubleBattleLevel: 82,
4842
4838
  },
4843
4839
  meloetta: {
4844
4840
  isNonstandard: "Past",
@@ -4917,7 +4913,7 @@ exports.FormatsData = {
4917
4913
  diggersby: {
4918
4914
  randomBattleMoves: ["bodyslam", "earthquake", "knockoff", "quickattack", "swordsdance", "uturn"],
4919
4915
  randomBattleLevel: 80,
4920
- randomDoubleBattleMoves: ["bodyslam", "highhorsepower", "knockoff", "protect", "quickattack", "swordsdance", "uturn"],
4916
+ randomDoubleBattleMoves: ["bodyslam", "highhorsepower", "knockoff", "quickattack", "swordsdance", "uturn"],
4921
4917
  randomDoubleBattleLevel: 86,
4922
4918
  tier: "RUBL",
4923
4919
  doublesTier: "(DUU)",
@@ -4932,7 +4928,7 @@ exports.FormatsData = {
4932
4928
  talonflame: {
4933
4929
  randomBattleMoves: ["bravebird", "defog", "flareblitz", "roost", "swordsdance", "uturn"],
4934
4930
  randomBattleLevel: 81,
4935
- randomDoubleBattleMoves: ["bravebird", "defog", "incinerate", "overheat", "roost", "tailwind", "u-turn", "willowisp"],
4931
+ randomDoubleBattleMoves: ["bravebird", "defog", "incinerate", "overheat", "tailwind", "u-turn", "willowisp"],
4936
4932
  randomDoubleBattleLevel: 86,
4937
4933
  tier: "NU",
4938
4934
  doublesTier: "(DUU)",
@@ -5004,7 +5000,7 @@ exports.FormatsData = {
5004
5000
  pangoro: {
5005
5001
  randomBattleMoves: ["closecombat", "gunkshot", "icepunch", "knockoff", "partingshot"],
5006
5002
  randomBattleLevel: 84,
5007
- randomDoubleBattleMoves: ["bulletpunch", "closecombat", "drainpunch", "gunkshot", "icepunch", "knockoff", "protect"],
5003
+ randomDoubleBattleMoves: ["closecombat", "drainpunch", "gunkshot", "icepunch", "knockoff", "protect"],
5008
5004
  randomDoubleBattleLevel: 88,
5009
5005
  tier: "NUBL",
5010
5006
  doublesTier: "(DUU)",
@@ -5067,7 +5063,7 @@ exports.FormatsData = {
5067
5063
  aromatisse: {
5068
5064
  randomBattleMoves: ["calmmind", "moonblast", "protect", "toxic", "wish"],
5069
5065
  randomBattleLevel: 88,
5070
- randomDoubleBattleMoves: ["healpulse", "moonblast", "protect", "thunderbolt", "trickroom", "wish"],
5066
+ randomDoubleBattleMoves: ["healpulse", "moonblast", "protect", "trickroom", "wish"],
5071
5067
  randomDoubleBattleLevel: 86,
5072
5068
  tier: "PU",
5073
5069
  doublesTier: "(DUU)",
@@ -5173,7 +5169,7 @@ exports.FormatsData = {
5173
5169
  hawlucha: {
5174
5170
  randomBattleMoves: ["bravebird", "closecombat", "roost", "stoneedge", "swordsdance", "throatchop"],
5175
5171
  randomBattleLevel: 80,
5176
- randomDoubleBattleMoves: ["bravebird", "closecombat", "protect", "swordsdance", "throatchop"],
5172
+ randomDoubleBattleMoves: ["bravebird", "closecombat", "protect", "swordsdance"],
5177
5173
  randomDoubleBattleLevel: 80,
5178
5174
  tier: "UUBL",
5179
5175
  doublesTier: "(DUU)",
@@ -5235,7 +5231,7 @@ exports.FormatsData = {
5235
5231
  trevenant: {
5236
5232
  randomBattleMoves: ["earthquake", "hornleech", "poltergeist", "rockslide", "trickroom", "woodhammer"],
5237
5233
  randomBattleLevel: 86,
5238
- randomDoubleBattleMoves: ["allyswitch", "poltergeist", "rockslide", "trickroom", "willowisp", "woodhammer"],
5234
+ randomDoubleBattleMoves: ["poltergeist", "protect", "trickroom", "willowisp", "woodhammer"],
5239
5235
  randomDoubleBattleLevel: 88,
5240
5236
  tier: "(PU)",
5241
5237
  doublesTier: "(DUU)",
@@ -5333,7 +5329,7 @@ exports.FormatsData = {
5333
5329
  yveltal: {
5334
5330
  randomBattleMoves: ["defog", "heatwave", "knockoff", "oblivionwing", "roost", "suckerpunch", "taunt"],
5335
5331
  randomBattleLevel: 69,
5336
- randomDoubleBattleMoves: ["darkpulse", "heatwave", "knockoff", "oblivionwing", "roost", "suckerpunch", "tailwind", "uturn"],
5332
+ randomDoubleBattleMoves: ["darkpulse", "heatwave", "knockoff", "oblivionwing", "roost", "suckerpunch", "tailwind"],
5337
5333
  randomDoubleBattleLevel: 71,
5338
5334
  tier: "Uber",
5339
5335
  doublesTier: "DUber",
@@ -5351,7 +5347,7 @@ exports.FormatsData = {
5351
5347
  zygarde10: {
5352
5348
  randomBattleMoves: ["coil", "extremespeed", "irontail", "outrage", "thousandarrows"],
5353
5349
  randomBattleLevel: 82,
5354
- randomDoubleBattleMoves: ["dragondance", "extremespeed", "irontail", "protect", "rockslide", "thousandarrows"],
5350
+ randomDoubleBattleMoves: ["dragondance", "extremespeed", "irontail", "protect", "stoneedge", "thousandarrows"],
5355
5351
  randomDoubleBattleLevel: 77,
5356
5352
  tier: "UU",
5357
5353
  doublesTier: "(DUU)",
@@ -5424,7 +5420,7 @@ exports.FormatsData = {
5424
5420
  incineroar: {
5425
5421
  randomBattleMoves: ["earthquake", "flareblitz", "knockoff", "partingshot", "uturn", "willowisp"],
5426
5422
  randomBattleLevel: 80,
5427
- randomDoubleBattleMoves: ["fakeout", "flareblitz", "knockoff", "partingshot", "snarl"],
5423
+ randomDoubleBattleMoves: ["fakeout", "flareblitz", "knockoff", "partingshot", "uturn"],
5428
5424
  randomDoubleBattleLevel: 80,
5429
5425
  tier: "RU",
5430
5426
  doublesTier: "DOU",
@@ -5680,7 +5676,7 @@ exports.FormatsData = {
5680
5676
  bewear: {
5681
5677
  randomBattleMoves: ["closecombat", "darkestlariat", "doubleedge", "icepunch", "swordsdance"],
5682
5678
  randomBattleLevel: 82,
5683
- randomDoubleBattleMoves: ["closecombat", "darkestlariat", "doubleedge", "drainpunch", "highhorsepower", "icepunch", "protect", "wideguard"],
5679
+ randomDoubleBattleMoves: ["closecombat", "darkestlariat", "doubleedge", "drainpunch", "icepunch", "protect", "wideguard"],
5684
5680
  randomDoubleBattleLevel: 88,
5685
5681
  tier: "NUBL",
5686
5682
  doublesTier: "(DUU)",
@@ -5704,7 +5700,7 @@ exports.FormatsData = {
5704
5700
  comfey: {
5705
5701
  randomBattleMoves: ["calmmind", "drainingkiss", "gigadrain", "storedpower", "trick", "uturn"],
5706
5702
  randomBattleLevel: 86,
5707
- randomDoubleBattleMoves: ["defog", "drainingkiss", "floralhealing", "gigadrain", "helpinghand", "protect"],
5703
+ randomDoubleBattleMoves: ["drainingkiss", "floralhealing", "gigadrain", "helpinghand", "protect"],
5708
5704
  randomDoubleBattleLevel: 89,
5709
5705
  tier: "PU",
5710
5706
  doublesTier: "DUU",
@@ -5713,7 +5709,7 @@ exports.FormatsData = {
5713
5709
  oranguru: {
5714
5710
  randomBattleMoves: ["focusblast", "nastyplot", "psychic", "thunderbolt", "trickroom"],
5715
5711
  randomBattleLevel: 86,
5716
- randomDoubleBattleMoves: ["allyswitch", "focusblast", "instruct", "protect", "psychic", "trickroom"],
5712
+ randomDoubleBattleMoves: ["allyswitch", "focusblast", "instruct", "psychic", "trickroom"],
5717
5713
  randomDoubleBattleLevel: 88,
5718
5714
  tier: "(PU)",
5719
5715
  doublesTier: "(DUU)",
@@ -5734,7 +5730,7 @@ exports.FormatsData = {
5734
5730
  golisopod: {
5735
5731
  randomBattleMoves: ["firstimpression", "knockoff", "leechlife", "liquidation", "spikes"],
5736
5732
  randomBattleLevel: 84,
5737
- randomDoubleBattleMoves: ["aquajet", "closecombat", "firstimpression", "knockoff", "leechlife", "liquidation", "protect", "wideguard"],
5733
+ randomDoubleBattleMoves: ["aquajet", "firstimpression", "knockoff", "leechlife", "liquidation", "protect", "wideguard"],
5738
5734
  randomDoubleBattleLevel: 88,
5739
5735
  tier: "RU",
5740
5736
  doublesTier: "(DUU)",
@@ -5967,7 +5963,7 @@ exports.FormatsData = {
5967
5963
  mimikyu: {
5968
5964
  randomBattleMoves: ["drainpunch", "playrough", "shadowclaw", "shadowsneak", "swordsdance"],
5969
5965
  randomBattleLevel: 76,
5970
- randomDoubleBattleMoves: ["playrough", "protect", "shadowclaw", "shadowsneak", "swordsdance"],
5966
+ randomDoubleBattleMoves: ["playrough", "shadowclaw", "shadowsneak", "swordsdance"],
5971
5967
  randomDoubleBattleLevel: 84,
5972
5968
  tier: "RU",
5973
5969
  doublesTier: "(DUU)",
@@ -5991,7 +5987,7 @@ exports.FormatsData = {
5991
5987
  drampa: {
5992
5988
  randomBattleMoves: ["dracometeor", "fireblast", "glare", "hypervoice", "roost", "thunderbolt"],
5993
5989
  randomBattleLevel: 86,
5994
- randomDoubleBattleMoves: ["dracometeor", "dragonpulse", "glare", "heatwave", "hurricane", "hypervoice", "protect", "roost"],
5990
+ randomDoubleBattleMoves: ["dracometeor", "dragonpulse", "heatwave", "hypervoice"],
5995
5991
  randomDoubleBattleLevel: 88,
5996
5992
  tier: "PUBL",
5997
5993
  doublesTier: "(DUU)",
@@ -6000,7 +5996,7 @@ exports.FormatsData = {
6000
5996
  dhelmise: {
6001
5997
  randomBattleMoves: ["anchorshot", "earthquake", "poltergeist", "powerwhip", "rapidspin", "swordsdance"],
6002
5998
  randomBattleLevel: 86,
6003
- randomDoubleBattleMoves: ["anchorshot", "knockoff", "poltergeist", "powerwhip", "protect"],
5999
+ randomDoubleBattleMoves: ["anchorshot", "knockoff", "powerwhip", "protect"],
6004
6000
  randomDoubleBattleLevel: 88,
6005
6001
  tier: "NU",
6006
6002
  doublesTier: "(DUU)",
@@ -6047,7 +6043,7 @@ exports.FormatsData = {
6047
6043
  tapubulu: {
6048
6044
  randomBattleMoves: ["closecombat", "hornleech", "megahorn", "stoneedge", "swordsdance", "woodhammer"],
6049
6045
  randomBattleLevel: 82,
6050
- randomDoubleBattleMoves: ["closecombat", "highhorsepower", "hornleech", "protect", "stoneedge", "swordsdance", "woodhammer"],
6046
+ randomDoubleBattleMoves: ["closecombat", "hornleech", "protect", "stoneedge", "swordsdance", "woodhammer"],
6051
6047
  randomDoubleBattleLevel: 83,
6052
6048
  tier: "UU",
6053
6049
  doublesTier: "DUU",
@@ -6241,7 +6237,7 @@ exports.FormatsData = {
6241
6237
  zeraora: {
6242
6238
  randomBattleMoves: ["blazekick", "bulkup", "closecombat", "grassknot", "knockoff", "plasmafists", "playrough", "voltswitch"],
6243
6239
  randomBattleLevel: 76,
6244
- randomDoubleBattleMoves: ["closecombat", "fakeout", "grassknot", "knockoff", "plasmafists", "playrough", "snarl"],
6240
+ randomDoubleBattleMoves: ["closecombat", "fakeout", "grassknot", "knockoff", "plasmafists", "snarl"],
6245
6241
  randomDoubleBattleLevel: 78,
6246
6242
  tier: "OU",
6247
6243
  doublesTier: "DOU",
@@ -6322,7 +6318,7 @@ exports.FormatsData = {
6322
6318
  inteleon: {
6323
6319
  randomBattleMoves: ["airslash", "darkpulse", "hydropump", "icebeam", "scald", "uturn"],
6324
6320
  randomBattleLevel: 80,
6325
- randomDoubleBattleMoves: ["airslash", "hydropump", "icebeam", "muddywater", "shadowball", "uturn"],
6321
+ randomDoubleBattleMoves: ["airslash", "hydropump", "icebeam", "muddywater", "uturn"],
6326
6322
  randomDoubleBattleLevel: 84,
6327
6323
  tier: "PUBL",
6328
6324
  doublesTier: "(DUU)",
@@ -6344,7 +6340,7 @@ exports.FormatsData = {
6344
6340
  greedent: {
6345
6341
  randomBattleMoves: ["bodyslam", "earthquake", "firefang", "payback", "swordsdance"],
6346
6342
  randomBattleLevel: 84,
6347
- randomDoubleBattleMoves: ["bodyslam", "crunch", "gyroball", "protect", "stompingtantrum", "swordsdance"],
6343
+ randomDoubleBattleMoves: ["bodyslam", "gyroball", "protect", "stompingtantrum", "swordsdance"],
6348
6344
  randomDoubleBattleLevel: 88,
6349
6345
  tier: "(PU)",
6350
6346
  doublesTier: "(DUU)",
@@ -6359,7 +6355,7 @@ exports.FormatsData = {
6359
6355
  corviknight: {
6360
6356
  randomBattleMoves: ["bodypress", "bravebird", "bulkup", "defog", "roost"],
6361
6357
  randomBattleLevel: 78,
6362
- randomDoubleBattleMoves: ["bodypress", "bravebird", "bulkup", "ironhead", "roost", "tailwind"],
6358
+ randomDoubleBattleMoves: ["bodypress", "bravebird", "bulkup", "roost", "tailwind"],
6363
6359
  randomDoubleBattleLevel: 80,
6364
6360
  tier: "OU",
6365
6361
  doublesTier: "(DUU)",
@@ -6422,7 +6418,7 @@ exports.FormatsData = {
6422
6418
  dubwool: {
6423
6419
  randomBattleMoves: ["bodypress", "cottonguard", "rest", "sleeptalk"],
6424
6420
  randomBattleLevel: 86,
6425
- randomDoubleBattleMoves: ["doubleedge", "protect", "swordsdance", "thunderwave", "wildcharge", "zenheadbutt"],
6421
+ randomDoubleBattleMoves: ["doubleedge", "swordsdance", "thunderwave", "wildcharge", "zenheadbutt"],
6426
6422
  randomDoubleBattleLevel: 90,
6427
6423
  tier: "(PU)",
6428
6424
  doublesTier: "(DUU)",
@@ -6536,7 +6532,7 @@ exports.FormatsData = {
6536
6532
  cramorant: {
6537
6533
  randomBattleMoves: ["bravebird", "defog", "roost", "superpower", "surf"],
6538
6534
  randomBattleLevel: 84,
6539
- randomDoubleBattleMoves: ["hurricane", "icebeam", "protect", "roost", "surf", "tailwind"],
6535
+ randomDoubleBattleMoves: ["bravebird", "icebeam", "protect", "roost", "surf", "tailwind"],
6540
6536
  randomDoubleBattleLevel: 88,
6541
6537
  tier: "(PU)",
6542
6538
  doublesTier: "(DUU)",
@@ -6548,7 +6544,7 @@ exports.FormatsData = {
6548
6544
  barraskewda: {
6549
6545
  randomBattleMoves: ["closecombat", "crunch", "liquidation", "poisonjab", "psychicfangs"],
6550
6546
  randomBattleLevel: 80,
6551
- randomDoubleBattleMoves: ["closecombat", "crunch", "drillrun", "flipturn", "liquidation", "poisonjab"],
6547
+ randomDoubleBattleMoves: ["closecombat", "drillrun", "flipturn", "liquidation", "poisonjab"],
6552
6548
  randomDoubleBattleLevel: 84,
6553
6549
  tier: "OU",
6554
6550
  doublesTier: "(DUU)",
@@ -6613,7 +6609,7 @@ exports.FormatsData = {
6613
6609
  grapploct: {
6614
6610
  randomBattleMoves: ["brutalswing", "bulkup", "drainpunch", "icepunch", "suckerpunch"],
6615
6611
  randomBattleLevel: 86,
6616
- randomDoubleBattleMoves: ["closecombat", "coaching", "drainpunch", "icepunch", "octolock", "payback", "protect"],
6612
+ randomDoubleBattleMoves: ["closecombat", "coaching", "drainpunch", "icepunch", "octolock", "protect"],
6617
6613
  randomDoubleBattleLevel: 88,
6618
6614
  tier: "(PU)",
6619
6615
  doublesTier: "(DUU)",
@@ -6729,7 +6725,7 @@ exports.FormatsData = {
6729
6725
  stonjourner: {
6730
6726
  randomBattleMoves: ["earthquake", "heatcrash", "rockpolish", "stealthrock", "stoneedge"],
6731
6727
  randomBattleLevel: 88,
6732
- randomDoubleBattleMoves: ["bodypress", "heatcrash", "heavyslam", "protect", "rockpolish", "stoneedge", "wideguard"],
6728
+ randomDoubleBattleMoves: ["bodypress", "heatcrash", "heavyslam", "protect", "rockpolish", "stoneedge"],
6733
6729
  randomDoubleBattleLevel: 88,
6734
6730
  tier: "(PU)",
6735
6731
  doublesTier: "(DUU)",
@@ -6738,7 +6734,7 @@ exports.FormatsData = {
6738
6734
  eiscue: {
6739
6735
  randomBattleMoves: ["bellydrum", "iciclecrash", "liquidation", "substitute", "zenheadbutt"],
6740
6736
  randomBattleLevel: 82,
6741
- randomDoubleBattleMoves: ["bellydrum", "iciclecrash", "liquidation", "protect", "zenheadbutt"],
6737
+ randomDoubleBattleMoves: ["bellydrum", "iciclecrash", "liquidation", "protect"],
6742
6738
  randomDoubleBattleLevel: 86,
6743
6739
  tier: "(PU)",
6744
6740
  doublesTier: "(DUU)",
@@ -6852,7 +6848,7 @@ exports.FormatsData = {
6852
6848
  dragapult: {
6853
6849
  randomBattleMoves: ["dracometeor", "fireblast", "shadowball", "thunderbolt", "uturn"],
6854
6850
  randomBattleLevel: 78,
6855
- randomDoubleBattleMoves: ["dragondarts", "fireblast", "protect", "shadowball", "thunderbolt", "willowisp"],
6851
+ randomDoubleBattleMoves: ["dragondarts", "fireblast", "protect", "shadowball", "thunderbolt", "thunderwave"],
6856
6852
  randomDoubleBattleLevel: 80,
6857
6853
  tier: "OU",
6858
6854
  doublesTier: "DOU",
@@ -6888,7 +6884,7 @@ exports.FormatsData = {
6888
6884
  zamazentacrowned: {
6889
6885
  randomBattleMoves: ["behemothbash", "closecombat", "crunch", "howl", "psychicfangs"],
6890
6886
  randomBattleLevel: 71,
6891
- randomDoubleBattleMoves: ["behemothbash", "closecombat", "crunch", "howl", "protect", "psychicfangs"],
6887
+ randomDoubleBattleMoves: ["behemothbash", "closecombat", "crunch", "howl", "protect"],
6892
6888
  randomDoubleBattleLevel: 72,
6893
6889
  tier: "Uber",
6894
6890
  doublesTier: "DUber",
@@ -6922,7 +6918,7 @@ exports.FormatsData = {
6922
6918
  urshifurapidstrike: {
6923
6919
  randomBattleMoves: ["bulkup", "drainpunch", "substitute", "surgingstrikes"],
6924
6920
  randomBattleLevel: 78,
6925
- randomDoubleBattleMoves: ["aquajet", "closecombat", "poisonjab", "protect", "surgingstrikes", "uturn"],
6921
+ randomDoubleBattleMoves: ["aquajet", "closecombat", "icepunch", "protect", "surgingstrikes", "uturn"],
6926
6922
  randomDoubleBattleLevel: 80,
6927
6923
  tier: "OU",
6928
6924
  doublesTier: "DOU",
@@ -6947,7 +6943,7 @@ exports.FormatsData = {
6947
6943
  zarude: {
6948
6944
  randomBattleMoves: ["bulkup", "closecombat", "darkestlariat", "junglehealing", "powerwhip", "uturn"],
6949
6945
  randomBattleLevel: 78,
6950
- randomDoubleBattleMoves: ["closecombat", "darkestlariat", "junglehealing", "powerwhip", "protect", "rockslide"],
6946
+ randomDoubleBattleMoves: ["closecombat", "darkestlariat", "junglehealing", "powerwhip", "protect"],
6951
6947
  randomDoubleBattleLevel: 80,
6952
6948
  tier: "UU",
6953
6949
  doublesTier: "(DUU)",
@@ -6956,7 +6952,7 @@ exports.FormatsData = {
6956
6952
  zarudedada: {
6957
6953
  randomBattleMoves: ["bulkup", "closecombat", "darkestlariat", "junglehealing", "powerwhip", "uturn"],
6958
6954
  randomBattleLevel: 78,
6959
- randomDoubleBattleMoves: ["closecombat", "darkestlariat", "junglehealing", "powerwhip", "protect", "rockslide"],
6955
+ randomDoubleBattleMoves: ["closecombat", "darkestlariat", "junglehealing", "powerwhip", "protect"],
6960
6956
  randomDoubleBattleLevel: 80,
6961
6957
  },
6962
6958
  regieleki: {