@pkmn/randoms 0.7.20 → 0.7.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/index.mjs CHANGED
@@ -949,11 +949,11 @@ var RandomGen8Teams = class {
949
949
  counter.setupType = pool.Physical > pool.Special ? "Physical" : "Special";
950
950
  }
951
951
  } else if (counter.setupType === "Physical") {
952
- if (categories["Physical"] < 2 && (!counter.get("stab") || !counter.get("physicalpool")) && !(moves.has("rest") && moves.has("sleeptalk"))) {
952
+ if (categories["Physical"] < 2 && (!counter.get("stab") || !counter.get("physicalpool")) && !(moves.has("rest") && moves.has("sleeptalk")) && !moves.has("batonpass")) {
953
953
  counter.setupType = "";
954
954
  }
955
955
  } else if (counter.setupType === "Special") {
956
- if (categories["Special"] < 2 && (!counter.get("stab") || !counter.get("specialpool")) && !(moves.has("rest") && moves.has("sleeptalk")) && !(moves.has("wish") && moves.has("protect"))) {
956
+ if (categories["Special"] < 2 && (!counter.get("stab") || !counter.get("specialpool")) && !moves.has("quiverdance") && !(moves.has("rest") && moves.has("sleeptalk")) && !(moves.has("wish") && moves.has("protect")) && !moves.has("batonpass")) {
957
957
  counter.setupType = "";
958
958
  }
959
959
  }
@@ -1721,7 +1721,14 @@ var RandomGen8Teams = class {
1721
1721
  "(PU)": 88,
1722
1722
  NFE: 88
1723
1723
  };
1724
- const customScale = { delibird: 100, glalie: 76, luvdisc: 100, spinda: 100, unown: 100 };
1724
+ const customScale = {
1725
+ delibird: 100,
1726
+ dugtrio: 76,
1727
+ glalie: 76,
1728
+ luvdisc: 100,
1729
+ spinda: 100,
1730
+ unown: 100
1731
+ };
1725
1732
  return customScale[species.id] || tierScale[species.tier] || 80;
1726
1733
  }
1727
1734
  if (species.randomBattleLevel)
@@ -1907,7 +1914,7 @@ var RandomGen8Teams = class {
1907
1914
  } while (rejectAbility);
1908
1915
  if (forme === "Copperajah" && gmax) {
1909
1916
  ability = "Heavy Metal";
1910
- } else if (abilities.has("Guts") && (species.id === "gurdurr" || species.id === "throh" || moves.has("facade") || moves.has("rest") && moves.has("sleeptalk"))) {
1917
+ } else if (abilities.has("Guts") && !abilities.has("Quick Feet") && (species.id === "gurdurr" || species.id === "throh" || moves.has("facade") || moves.has("rest") && moves.has("sleeptalk"))) {
1911
1918
  ability = "Guts";
1912
1919
  } else if (abilities.has("Moxie") && (counter.get("Physical") > 3 || moves.has("bounce")) && !isDoubles) {
1913
1920
  ability = "Moxie";
@@ -2740,7 +2747,7 @@ var RandomGen7Teams = class extends RandomGen8Teams {
2740
2747
  Electric: (movePool, moves, abilities, types, counter) => !counter.get("Electric") || movePool.includes("thunder"),
2741
2748
  Fairy: (movePool, moves, abilities, types, counter) => !counter.get("Fairy") && !types.has("Flying") && !abilities.has("Pixilate"),
2742
2749
  Fighting: (movePool, moves, abilities, types, counter) => !counter.get("Fighting") || !counter.get("stab"),
2743
- Fire: (movePool, moves, abilities, types, counter) => !counter.get("Fire") || ["eruption", "quiverdance"].some((m) => movePool.includes(m)) || moves.has("flamecharge") && movePool.includes("flareblitz"),
2750
+ Fire: (movePool, moves, abilities, types, counter) => !counter.get("Fire") || ["eruption", "quiverdance"].some((m) => movePool.includes(m)) || moves.has("flamecharge") && (movePool.includes("flareblitz") || movePool.includes("blueflare")),
2744
2751
  Flying: (movePool, moves, abilities, types, counter, species) => !counter.get("Flying") && (species.id === "rotomfan" || abilities.has("Gale Wings") || abilities.has("Serene Grace") || types.has("Normal") && (movePool.includes("beakblast") || movePool.includes("bravebird"))),
2745
2752
  Ghost: (movePool, moves, abilities, types, counter) => (!counter.get("Ghost") || movePool.includes("spectralthief")) && !types.has("Dark") && !abilities.has("Steelworker"),
2746
2753
  Grass: (movePool, moves, abilities, types, counter, species) => !counter.get("Grass") && (species.baseStats.atk >= 100 || movePool.includes("leafstorm")),
@@ -2869,7 +2876,7 @@ var RandomGen7Teams = class extends RandomGen8Teams {
2869
2876
  return { cull: !!counter.setupType || !!counter.get("speedsetup") || moves.has("dragontail") || isDoubles && (movePool.includes("protect") || movePool.includes("spikyshield")) };
2870
2877
  case "protect":
2871
2878
  const doublesCondition = moves.has("fakeout") || moves.has("tailwind") && moves.has("roost") || movePool.includes("bellydrum") || movePool.includes("shellsmash");
2872
- const singlesCondition = counter.setupType && !moves.has("wish");
2879
+ const singlesCondition = counter.setupType && !moves.has("wish") || !["Guts", "Harvest", "Poison Heal", "Quick Feet", "Speed Boost"].some((abil) => abilities.has(abil)) && !["leechseed", "perishsong", "toxic", "wish"].some((m) => moves.has(m)) && species.id !== "sharpedomega";
2873
2880
  return { cull: (isDoubles ? doublesCondition : singlesCondition) || !!counter.get("speedsetup") || moves.has("rest") || moves.has("roar") || moves.has("whirlwind") || moves.has("lightscreen") && moves.has("reflect") };
2874
2881
  case "pursuit":
2875
2882
  return { cull: !!counter.setupType || counter.get("Status") > 1 || counter.get("Dark") > 2 || moves.has("knockoff") && !types.has("Dark") };
@@ -2891,6 +2898,12 @@ var RandomGen7Teams = class extends RandomGen8Teams {
2891
2898
  return { cull: abilities.has("Speed Boost") && moves.has("protect") || abilities.has("Protean") && counter.get("Status") > 2 || !!counter.setupType || !!counter.get("speedsetup") };
2892
2899
  case "voltswitch":
2893
2900
  return { cull: !!counter.setupType || !!counter.get("speedsetup") || ["electricterrain", "raindance", "uturn"].some((m) => moves.has(m)) };
2901
+ case "wish":
2902
+ if (species.baseStats.hp >= 130)
2903
+ return { cull: false };
2904
+ if (abilities.has("Regenerator"))
2905
+ return { cull: false };
2906
+ return { cull: !["ironhead", "protect", "spikyshield", "uturn"].some((m) => moves.has(m)) };
2894
2907
  case "bugbite":
2895
2908
  case "bugbuzz":
2896
2909
  case "infestation":
@@ -2973,9 +2986,9 @@ var RandomGen7Teams = class extends RandomGen8Teams {
2973
2986
  case "earthpower":
2974
2987
  return { cull: moves.has("earthquake") && counter.setupType !== "Special" };
2975
2988
  case "earthquake":
2976
- return { cull: isDoubles && moves.has("highhorsepower") };
2989
+ return { cull: isDoubles && moves.has("highhorsepower") || moves.has("closecombat") && abilities.has("Aerilate") };
2977
2990
  case "freezedry":
2978
- return { cull: moves.has("icebeam") || moves.has("icywind") || counter.get("stab") < species.types.length };
2991
+ return { cull: moves.has("icebeam") || moves.has("icywind") || counter.get("stab") < species.types.length || moves.has("blizzard") && !!counter.setupType };
2979
2992
  case "bodyslam":
2980
2993
  case "return":
2981
2994
  return { cull: moves.has("doubleedge") || moves.has("glare") && moves.has("headbutt") || move.id === "return" && moves.has("bodyslam") };
@@ -3062,7 +3075,7 @@ var RandomGen7Teams = class extends RandomGen8Teams {
3062
3075
  case "recover":
3063
3076
  case "roost":
3064
3077
  case "synthesis":
3065
- return { cull: moves.has("leechseed") || moves.has("rest") };
3078
+ return { cull: moves.has("leechseed") || moves.has("rest") || moves.has("wish") && moves.has("protect") };
3066
3079
  case "substitute":
3067
3080
  return { cull: moves.has("dracometeor") || moves.has("leafstorm") && !abilities.has("Contrary") || ["encore", "pursuit", "rest", "taunt", "uturn", "voltswitch", "whirlwind"].some((m) => moves.has(m)) || movePool.includes("copycat") };
3068
3081
  case "powersplit":
@@ -3124,7 +3137,7 @@ var RandomGen7Teams = class extends RandomGen8Teams {
3124
3137
  case "Hydration":
3125
3138
  case "Rain Dish":
3126
3139
  case "Swift Swim":
3127
- return species.baseStats.spe > 100 || !moves.has("raindance") && !teamDetails.rain;
3140
+ return species.baseStats.spe > 100 || !moves.has("raindance") && !teamDetails.rain || !moves.has("raindance") && ["Rock Head", "Water Absorb"].some((abil) => abilities.has(abil));
3128
3141
  case "Slush Rush":
3129
3142
  case "Snow Cloak":
3130
3143
  return !teamDetails.hail;
@@ -3430,7 +3443,7 @@ var RandomGen7Teams = class extends RandomGen8Teams {
3430
3443
  return "Custap Berry";
3431
3444
  if (ability === "Super Luck")
3432
3445
  return "Scope Lens";
3433
- if (!isDoubles && counter.damagingMoves.size >= 3 && ability !== "Sturdy" && ["acidspray", "dragontail", "foulplay", "rapidspin", "superfang", "uturn"].every((m) => !moves.has(m)) && (counter.get("speedsetup") || moves.has("trickroom") || species.baseStats.spe > 40 && species.baseStats.hp + species.baseStats.def + species.baseStats.spd < 275)) {
3446
+ if (!isDoubles && counter.damagingMoves.size >= 3 && ability !== "Sturdy" && (species.baseStats.spe >= 90 || !moves.has("voltswitch")) && ["acidspray", "dragontail", "foulplay", "rapidspin", "superfang", "uturn"].every((m) => !moves.has(m)) && (counter.get("speedsetup") || moves.has("trickroom") || species.baseStats.spe > 40 && species.baseStats.hp + species.baseStats.def + species.baseStats.spd < 275)) {
3434
3447
  return "Life Orb";
3435
3448
  }
3436
3449
  }
@@ -3837,7 +3850,6 @@ var RandomGen7Teams = class extends RandomGen8Teams {
3837
3850
  break;
3838
3851
  case "Aegislash":
3839
3852
  case "Basculin":
3840
- case "Cherrim":
3841
3853
  case "Gourgeist":
3842
3854
  case "Groudon":
3843
3855
  case "Kyogre":
@@ -3845,6 +3857,7 @@ var RandomGen7Teams = class extends RandomGen8Teams {
3845
3857
  if (this.randomChance(1, 2))
3846
3858
  continue;
3847
3859
  break;
3860
+ case "Cherrim":
3848
3861
  case "Greninja":
3849
3862
  if (this.gen >= 7 && this.randomChance(1, 2))
3850
3863
  continue;
@@ -4536,7 +4549,7 @@ var RandomGen6Teams = class extends RandomGen7Teams {
4536
4549
  if (screen >= 0)
4537
4550
  this.fastPop(movePool, screen);
4538
4551
  }
4539
- return { cull: !moves.has("calmmind") && !moves.has("lightscreen") };
4552
+ return { cull: !moves.has("lightscreen") };
4540
4553
  case "rest":
4541
4554
  return { cull: movePool.includes("sleeptalk") };
4542
4555
  case "sleeptalk":
@@ -4600,16 +4613,18 @@ var RandomGen6Teams = class extends RandomGen7Teams {
4600
4613
  case "healingwish":
4601
4614
  case "memento":
4602
4615
  return { cull: !!counter.setupType || !!counter.get("recovery") || moves.has("substitute") };
4616
+ case "iceshard":
4617
+ return { cull: moves.has("shellsmash") };
4603
4618
  case "leechseed":
4604
4619
  case "roar":
4605
4620
  case "whirlwind":
4606
4621
  return { cull: !!counter.setupType || !!counter.get("speedsetup") || moves.has("dragontail") };
4607
4622
  case "nightshade":
4608
4623
  case "seismictoss":
4609
- return { cull: !abilities.has("Parental Bond") && (counter.damagingMoves.size > 1 || !!counter.setupType) };
4624
+ return { cull: !abilities.has("Parental Bond") && (counter.damagingMoves.size > 1 || !!counter.setupType) || moves.has("poweruppunch") };
4610
4625
  case "protect":
4611
4626
  const screens = moves.has("lightscreen") && moves.has("reflect");
4612
- return { cull: moves.has("rest") || screens || !!counter.setupType && !moves.has("wish") };
4627
+ return { cull: moves.has("rest") || screens || !!counter.setupType && !moves.has("wish") || !["Guts", "Harvest", "Poison Heal", "Quick Feet", "Speed Boost"].some((abil) => abilities.has(abil)) && !["leechseed", "perishsong", "toxic", "wish"].some((m) => moves.has(m)) && species.id !== "sharpedomega" };
4613
4628
  case "pursuit":
4614
4629
  return { cull: moves.has("nightslash") || !!counter.setupType || counter.get("Status") > 1 || counter.get("Dark") > 2 || moves.has("knockoff") && !types.has("Dark") };
4615
4630
  case "rapidspin":
@@ -4628,6 +4643,12 @@ var RandomGen6Teams = class extends RandomGen7Teams {
4628
4643
  return { cull: !!counter.setupType || !!counter.get("speedsetup") || abilities.has("Speed Boost") && moves.has("protect") || abilities.has("Protean") && counter.get("Status") > 2 };
4629
4644
  case "voltswitch":
4630
4645
  return { cull: !!counter.setupType || !!counter.get("speedsetup") || moves.has("raindance") || moves.has("uturn") };
4646
+ case "wish":
4647
+ if (species.baseStats.hp >= 130)
4648
+ return { cull: false };
4649
+ if (abilities.has("Regenerator"))
4650
+ return { cull: false };
4651
+ return { cull: !["ironhead", "protect", "spikyshield", "uturn"].some((m) => moves.has(m)) };
4631
4652
  case "bugbite":
4632
4653
  case "bugbuzz":
4633
4654
  case "signalbeam":
@@ -4699,6 +4720,8 @@ var RandomGen6Teams = class extends RandomGen7Teams {
4699
4720
  case "earthpower":
4700
4721
  case "precipiceblades":
4701
4722
  return { cull: moves.has("earthquake") };
4723
+ case "earthquake":
4724
+ return { cull: moves.has("closecombat") && abilities.has("Aerilate") };
4702
4725
  case "freezedry":
4703
4726
  return { cull: moves.has("icebeam") || moves.has("icywind") || counter.get("stab") < species.types.length };
4704
4727
  case "bodyslam":
@@ -4779,7 +4802,7 @@ var RandomGen6Teams = class extends RandomGen7Teams {
4779
4802
  case "recover":
4780
4803
  case "roost":
4781
4804
  case "synthesis":
4782
- return { cull: ["leechseed", "rest", "wish"].some((m) => moves.has(m)) };
4805
+ return { cull: ["leechseed", "rest"].some((m) => moves.has(m) || moves.has("wish") && moves.has("protect")) };
4783
4806
  case "safeguard":
4784
4807
  return { cull: moves.has("destinybond") };
4785
4808
  case "substitute":
@@ -4831,7 +4854,7 @@ var RandomGen6Teams = class extends RandomGen7Teams {
4831
4854
  case "Hydration":
4832
4855
  case "Rain Dish":
4833
4856
  case "Swift Swim":
4834
- return species.baseStats.spe > 100 || !moves.has("raindance") && !teamDetails.rain;
4857
+ return species.baseStats.spe > 100 || !moves.has("raindance") && !teamDetails.rain || !moves.has("raindance") && ["Rock Head", "Water Absorb"].some((abil) => abilities.has(abil));
4835
4858
  case "Ice Body":
4836
4859
  return !teamDetails.hail;
4837
4860
  case "Immunity":
@@ -5025,7 +5048,7 @@ var RandomGen6Teams = class extends RandomGen7Teams {
5025
5048
  }
5026
5049
  if (counter.damagingMoves.size >= 3 && counter.get("speedsetup") && defensiveStatTotal >= 300)
5027
5050
  return "Weakness Policy";
5028
- if (isLead && ability !== "Regenerator" && ability !== "Sturdy" && !counter.get("recoil") && !counter.get("recovery") && defensiveStatTotal <= 275) {
5051
+ if (isLead && ability !== "Regenerator" && ability !== "Sturdy" && !counter.get("recoil") && !counter.get("recovery") && defensiveStatTotal < 255) {
5029
5052
  return "Focus Sash";
5030
5053
  }
5031
5054
  }
@@ -5041,7 +5064,7 @@ var RandomGen6Teams = class extends RandomGen7Teams {
5041
5064
  return "Custap Berry";
5042
5065
  if (ability === "Super Luck")
5043
5066
  return "Scope Lens";
5044
- if (counter.damagingMoves.size >= 3 && ability !== "Sturdy" && ["acidspray", "dragontail", "foulplay", "rapidspin", "superfang", "uturn"].every((m) => !moves.has(m))) {
5067
+ if (counter.damagingMoves.size >= 3 && ability !== "Sturdy" && (species.baseStats.spe >= 90 || !moves.has("voltswitch")) && ["acidspray", "dragontail", "foulplay", "rapidspin", "superfang", "uturn"].every((m) => !moves.has(m))) {
5045
5068
  return counter.get("speedsetup") || moves.has("trickroom") || species.baseStats.spe > 40 && defensiveStatTotal <= 275 ? "Life Orb" : "Leftovers";
5046
5069
  }
5047
5070
  }
@@ -5261,7 +5284,9 @@ var RandomGen6Teams = class extends RandomGen7Teams {
5261
5284
  Ninetales: 84,
5262
5285
  Politoed: 84,
5263
5286
  Wobbuffet: 82,
5264
- Castform: 100,
5287
+ "Castform-Rainy": 100,
5288
+ "Castform-Snowy": 100,
5289
+ "Castform-Sunny": 100,
5265
5290
  Delibird: 100,
5266
5291
  "Genesect-Douse": 80,
5267
5292
  Luvdisc: 100,
@@ -5569,8 +5594,6 @@ var RandomGen5Teams = class extends RandomGen6Teams {
5569
5594
  shouldCullMove(move, types, moves, abilities, counter, movePool, teamDetails, species, isLead) {
5570
5595
  const hasRestTalk = moves.has("rest") && moves.has("sleeptalk");
5571
5596
  switch (move.id) {
5572
- case "batonpass":
5573
- return { cull: !counter.setupType && !counter.get("speedsetup") && !moves.has("substitute") && !moves.has("wish") };
5574
5597
  case "endeavor":
5575
5598
  return { cull: !isLead };
5576
5599
  case "focuspunch":
@@ -5609,11 +5632,11 @@ var RandomGen5Teams = class extends RandomGen6Teams {
5609
5632
  case "dragondance":
5610
5633
  case "honeclaws":
5611
5634
  case "swordsdance":
5612
- return { cull: counter.setupType !== "Physical" || counter.get("physicalsetup") > 1 || counter.get("Physical") + counter.get("physicalpool") < 2 && !moves.has("batonpass") && !hasRestTalk, isSetup: true };
5635
+ return { cull: counter.setupType !== "Physical" || counter.get("physicalsetup") > 1 || counter.get("Physical") + counter.get("physicalpool") < 2 && !hasRestTalk, isSetup: true };
5613
5636
  case "calmmind":
5614
5637
  case "nastyplot":
5615
5638
  case "tailglow":
5616
- return { cull: counter.setupType !== "Special" || counter.get("specialsetup") > 1 || counter.get("Special") + counter.get("specialpool") < 2 && !moves.has("batonpass") && !hasRestTalk, isSetup: true };
5639
+ return { cull: counter.setupType !== "Special" || counter.get("specialsetup") > 1 || counter.get("Special") + counter.get("specialpool") < 2 && !hasRestTalk, isSetup: true };
5617
5640
  case "growth":
5618
5641
  case "shellsmash":
5619
5642
  case "workup":
@@ -5626,7 +5649,7 @@ var RandomGen5Teams = class extends RandomGen6Teams {
5626
5649
  case "autotomize":
5627
5650
  case "rockpolish":
5628
5651
  return {
5629
- cull: counter.damagingMoves.size < 2 && !counter.setupType && !moves.has("batonpass") || hasRestTalk,
5652
+ cull: counter.damagingMoves.size < 2 && !counter.setupType || hasRestTalk,
5630
5653
  isSetup: !counter.setupType
5631
5654
  };
5632
5655
  case "bulletpunch":
@@ -5669,9 +5692,9 @@ var RandomGen5Teams = class extends RandomGen6Teams {
5669
5692
  return { cull: !!counter.setupType || !!counter.get("speedsetup") || counter.damagingMoves.size < 2 || moves.has("lightscreen") || moves.has("reflect") };
5670
5693
  case "uturn":
5671
5694
  const infernapeCase = species.id === "infernape" && !!counter.get("Special");
5672
- return { cull: !!counter.setupType || !!counter.get("speedsetup") || moves.has("batonpass") || infernapeCase };
5695
+ return { cull: !!counter.setupType || !!counter.get("speedsetup") || infernapeCase };
5673
5696
  case "voltswitch":
5674
- return { cull: !!counter.setupType || !!counter.get("speedsetup") || ["batonpass", "magnetrise", "uturn"].some((m) => moves.has(m)) };
5697
+ return { cull: !!counter.setupType || !!counter.get("speedsetup") || ["magnetrise", "uturn"].some((m) => moves.has(m)) };
5675
5698
  case "bugbite":
5676
5699
  return { cull: moves.has("uturn") };
5677
5700
  case "crunch":
@@ -5698,7 +5721,7 @@ var RandomGen5Teams = class extends RandomGen6Teams {
5698
5721
  case "hurricane":
5699
5722
  return { cull: !!counter.setupType && moves.has("acrobatics") };
5700
5723
  case "gigadrain":
5701
- return { cull: !counter.setupType && moves.has("leafstorm") || ["leafblade", "petaldance", "powerwhip"].some((m) => moves.has(m)) };
5724
+ return { cull: !counter.setupType && moves.has("leafstorm") || ["petaldance", "powerwhip"].some((m) => moves.has(m)) };
5702
5725
  case "solarbeam":
5703
5726
  return { cull: !abilities.has("Drought") && !moves.has("sunnyday") || moves.has("gigadrain") };
5704
5727
  case "leafstorm":
@@ -5753,7 +5776,7 @@ var RandomGen5Teams = class extends RandomGen6Teams {
5753
5776
  const gliscorCase = species.id === "gliscor" && moves.has("protect");
5754
5777
  return { cull: ["leechseed", "rest", "wish"].some((m) => moves.has(m)) || gliscorCase };
5755
5778
  case "substitute":
5756
- return { cull: moves.has("doubleedge") && !abilities.has("rockhead") || ["pursuit", "rest", "superpower", "uturn", "voltswitch"].some((m) => moves.has(m)) };
5779
+ return { cull: moves.has("doubleedge") && !abilities.has("rockhead") || ["pursuit", "rest", "superpower", "uturn", "voltswitch"].some((m) => moves.has(m)) || moves.has("acrobatics") && moves.has("earthquake") };
5757
5780
  case "thunderwave":
5758
5781
  return { cull: !!counter.setupType || !!counter.get("speedsetup") || hasRestTalk || moves.has("discharge") || moves.has("trickroom") };
5759
5782
  case "willowisp":
@@ -5788,7 +5811,7 @@ var RandomGen5Teams = class extends RandomGen6Teams {
5788
5811
  return !counter.get(toID4(ability));
5789
5812
  case "Defiant":
5790
5813
  case "Moxie":
5791
- return !counter.get("Physical") && !moves.has("batonpass");
5814
+ return !counter.get("Physical");
5792
5815
  case "Flash Fire":
5793
5816
  return abilities.has("Drought");
5794
5817
  case "Guts":
@@ -5919,6 +5942,8 @@ var RandomGen5Teams = class extends RandomGen6Teams {
5919
5942
  return "Lum Berry";
5920
5943
  if (this.dex.getEffectiveness("Ground", species) >= 2 && ability !== "Levitate")
5921
5944
  return "Air Balloon";
5945
+ if (counter.get("Dark") >= 3)
5946
+ return "Black Glasses";
5922
5947
  if (types.has("Poison") || ["bodyslam", "dragontail", "protect", "scald", "sleeptalk", "substitute"].some((m) => moves.has(m))) {
5923
5948
  return "Leftovers";
5924
5949
  }
@@ -6004,7 +6029,7 @@ var RandomGen5Teams = class extends RandomGen6Teams {
6004
6029
  if (!types.has(move.type) || stabs > 1 || counter.get(move.category) < 2)
6005
6030
  cull = true;
6006
6031
  }
6007
- if (!isSetup && counter.setupType && counter.setupType !== "Mixed" && move.category !== counter.setupType && counter.get(counter.setupType) < 2 && !moves.has("batonpass") && (move.category !== "Status" || !move.flags.heal) && moveid !== "sleeptalk" && (move.category !== "Status" || counter.get(counter.setupType) + counter.get("Status") > 3 && counter.get("physicalsetup") + counter.get("specialsetup") < 2)) {
6032
+ if (!isSetup && counter.setupType && counter.setupType !== "Mixed" && move.category !== counter.setupType && counter.get(counter.setupType) < 2 && (move.category !== "Status" || !move.flags.heal) && moveid !== "sleeptalk" && (move.category !== "Status" || counter.get(counter.setupType) + counter.get("Status") > 3 && counter.get("physicalsetup") + counter.get("specialsetup") < 2)) {
6008
6033
  cull = true;
6009
6034
  }
6010
6035
  if (counter.setupType === "Special" && moveid === "hiddenpower" && species.types.length > 1 && counter.get("Special") <= 2 && !types.has(move.type) && !counter.get("Physical") && counter.get("specialpool")) {
@@ -6143,6 +6168,8 @@ var RandomGen5Teams = class extends RandomGen6Teams {
6143
6168
  "(PU)": 90
6144
6169
  };
6145
6170
  const customScale = {
6171
+ "Castform-Rainy": 100,
6172
+ "Castform-Sunny": 100,
6146
6173
  Delibird: 100,
6147
6174
  "Farfetch\u2019d": 100,
6148
6175
  Luvdisc: 100,
@@ -6219,7 +6246,11 @@ var RandomGen5Teams = class extends RandomGen6Teams {
6219
6246
  case "Basculin":
6220
6247
  case "Castform":
6221
6248
  case "Meloetta":
6222
- if (this.randomChance(1, 2))
6249
+ if (this.randomChance(1, 2) && this.gen === 5)
6250
+ continue;
6251
+ break;
6252
+ case "Cherrim":
6253
+ if (this.randomChance(1, 2) && this.gen === 4)
6223
6254
  continue;
6224
6255
  break;
6225
6256
  }
@@ -6339,8 +6370,8 @@ var RandomGen4Teams = class extends RandomGen5Teams {
6339
6370
  constructor(dex, format, prng) {
6340
6371
  super(dex, format, prng);
6341
6372
  this.moveEnforcementCheckers = {
6342
- Bug: (movePool, moves, abilities, types, counter) => !counter.get("Bug") && (movePool.includes("bugbuzz") || movePool.includes("megahorn")),
6343
- Dark: (movePool, moves, abilities, types, counter) => !counter.get("Dark") || counter.get("Dark") < 2 && moves.has("pursuit") && movePool.includes("suckerpunch"),
6373
+ Bug: (movePool, moves, abilities, types, counter) => movePool.includes("bugbuzz") || movePool.includes("megahorn"),
6374
+ Dark: (movePool, moves, abilities, types, counter) => !counter.get("damage") && (!counter.get("Dark") || counter.get("Dark") < 2 && moves.has("pursuit") && movePool.includes("suckerpunch")),
6344
6375
  Dragon: (movePool, moves, abilities, types, counter) => !counter.get("Dragon"),
6345
6376
  Electric: (movePool, moves, abilities, types, counter) => !counter.get("Electric"),
6346
6377
  Fighting: (movePool, moves, abilities, types, counter) => !counter.get("Fighting") && (!!counter.setupType || !counter.get("Status") || movePool.includes("closecombat") || movePool.includes("highjumpkick")),
@@ -6390,7 +6421,7 @@ var RandomGen4Teams = class extends RandomGen5Teams {
6390
6421
  case "refresh":
6391
6422
  return { cull: !(moves.has("calmmind") && (moves.has("recover") || moves.has("roost"))) };
6392
6423
  case "rest":
6393
- return { cull: movePool.includes("sleeptalk") || abilities.has("Hydration") && !moves.has("raindance") };
6424
+ return { cull: movePool.includes("sleeptalk") || abilities.has("Hydration") && !moves.has("raindance") || moves.has("reflect") && moves.has("lightscreen") };
6394
6425
  case "sleeptalk":
6395
6426
  if (movePool.length > 1) {
6396
6427
  const rest = movePool.indexOf("rest");
@@ -6434,7 +6465,9 @@ var RandomGen4Teams = class extends RandomGen5Teams {
6434
6465
  case "protect":
6435
6466
  return { cull: ["rest", "softboiled"].some((m) => moves.has(m)) || !["Guts", "Quick Feet", "Speed Boost"].some((abil) => abilities.has(abil)) && !["toxic", "wish"].some((m) => moves.has(m)) };
6436
6467
  case "wish":
6437
- return { cull: !["batonpass", "protect", "uturn"].some((m) => moves.has(m)) || moves.has("rest") || !!counter.get("speedsetup") };
6468
+ return { cull: !["batonpass", "ironhead", "moonlight", "protect", "softboiled", "uturn"].some((m) => moves.has(m)) || moves.has("rest") || !!counter.get("speedsetup") };
6469
+ case "moonlight":
6470
+ return { cull: moves.has("wish") && moves.has("protect") };
6438
6471
  case "rapidspin":
6439
6472
  return { cull: !!teamDetails.rapidSpin || !!counter.setupType && counter.get("Physical") + counter.get("Special") < 2 };
6440
6473
  case "fakeout":
@@ -6452,14 +6485,18 @@ var RandomGen4Teams = class extends RandomGen5Teams {
6452
6485
  case "trickroom":
6453
6486
  return { cull: !!counter.setupType || !!counter.get("speedsetup") || counter.damagingMoves.size < 2 || moves.has("lightscreen") || moves.has("reflect") || restTalk };
6454
6487
  case "uturn":
6455
- return { cull: types.has("Bug") && counter.get("stab") < 2 && counter.damagingMoves.size > 1 || abilities.has("Speed Boost") && moves.has("protect") || !!counter.setupType || !!counter.get("speedsetup") || moves.has("batonpass") || moves.has("substitute") };
6488
+ return { cull: abilities.has("Speed Boost") && moves.has("protect") || !!counter.setupType || !!counter.get("speedsetup") || moves.has("batonpass") || moves.has("substitute") };
6456
6489
  case "bodyslam":
6457
6490
  case "slash":
6458
6491
  return { cull: moves.has("facade") || moves.has("return") };
6492
+ case "bugbite":
6493
+ return { cull: moves.has("uturn") };
6459
6494
  case "doubleedge":
6460
6495
  return { cull: ["bodyslam", "facade", "return"].some((m) => moves.has(m)) };
6461
6496
  case "endeavor":
6462
6497
  return { cull: !isLead };
6498
+ case "facade":
6499
+ return { cull: moves.has("substitute") };
6463
6500
  case "headbutt":
6464
6501
  return { cull: !moves.has("bodyslam") && !moves.has("thunderwave") };
6465
6502
  case "judgment":
@@ -6470,13 +6507,15 @@ var RandomGen4Teams = class extends RandomGen5Teams {
6470
6507
  case "firepunch":
6471
6508
  case "flamethrower":
6472
6509
  return { cull: moves.has("fireblast") || moves.has("overheat") && !counter.setupType };
6510
+ case "flareblitz":
6511
+ return { cull: moves.has("superpower") && !!counter.get("speedsetup") };
6473
6512
  case "lavaplume":
6474
6513
  case "fireblast":
6475
6514
  if (move.id === "fireblast" && moves.has("lavaplume") && !counter.get("speedsetup"))
6476
6515
  return { cull: true };
6477
6516
  if (move.id === "lavaplume" && moves.has("fireblast") && counter.get("speedsetup"))
6478
6517
  return { cull: true };
6479
- if (moves.has("flareblitz") && counter.setupType !== "Special")
6518
+ if (moves.has("flareblitz") && counter.setupType !== "Special" && (!moves.has("superpower") || !counter.get("speedsetup")))
6480
6519
  return { cull: true };
6481
6520
  break;
6482
6521
  case "overheat":
@@ -6490,15 +6529,15 @@ var RandomGen4Teams = class extends RandomGen5Teams {
6490
6529
  case "chargebeam":
6491
6530
  return { cull: moves.has("thunderbolt") && counter.get("Special") < 3 };
6492
6531
  case "discharge":
6493
- return { cull: moves.has("thunderbolt") };
6532
+ return { cull: moves.has("thunderbolt") || moves.has("shadowball") };
6494
6533
  case "energyball":
6495
- return { cull: moves.has("leafblade") || moves.has("woodhammer") || moves.has("sunnyday") && moves.has("solarbeam") || moves.has("leafstorm") && counter.get("Physical") + counter.get("Special") < 4 };
6534
+ return { cull: moves.has("woodhammer") || moves.has("sunnyday") && moves.has("solarbeam") || moves.has("leafstorm") && counter.get("Physical") + counter.get("Special") < 4 };
6496
6535
  case "grassknot":
6497
6536
  case "leafblade":
6498
6537
  case "seedbomb":
6499
6538
  return { cull: moves.has("woodhammer") || moves.has("sunnyday") && moves.has("solarbeam") };
6500
6539
  case "leafstorm":
6501
- return { cull: !!counter.setupType || moves.has("batonpass") || moves.has("powerwhip") || moves.has("sunnyday") && moves.has("solarbeam") };
6540
+ return { cull: !!counter.setupType || moves.has("batonpass") || moves.has("powerwhip") || moves.has("leafblade") || moves.has("sunnyday") && moves.has("solarbeam") };
6502
6541
  case "solarbeam":
6503
6542
  return { cull: counter.setupType === "Physical" || !moves.has("sunnyday") };
6504
6543
  case "icepunch":
@@ -6517,7 +6556,7 @@ var RandomGen4Teams = class extends RandomGen5Teams {
6517
6556
  case "seismictoss":
6518
6557
  return { cull: moves.has("nightshade") || counter.get("Physical") + counter.get("Special") >= 1 };
6519
6558
  case "superpower":
6520
- return { cull: moves.has("dragondance") || !!counter.get("speedsetup") };
6559
+ return { cull: moves.has("dragondance") || !!counter.get("speedsetup") && !types.has("Fighting") };
6521
6560
  case "gunkshot":
6522
6561
  return { cull: moves.has("poisonjab") };
6523
6562
  case "earthpower":
@@ -6550,6 +6589,8 @@ var RandomGen4Teams = class extends RandomGen5Teams {
6550
6589
  case "haze":
6551
6590
  case "taunt":
6552
6591
  return { cull: restTalk };
6592
+ case "healbell":
6593
+ return { cull: moves.has("reflect") && moves.has("lightscreen") };
6553
6594
  case "leechseed":
6554
6595
  case "painsplit":
6555
6596
  return { cull: !!counter.setupType || !!counter.get("speedsetup") || moves.has("rest") };
@@ -6559,7 +6600,7 @@ var RandomGen4Teams = class extends RandomGen5Teams {
6559
6600
  case "stunspore":
6560
6601
  return { cull: !!counter.setupType || moves.has("toxic") || movePool.includes("sleeppowder") || movePool.includes("spore") };
6561
6602
  case "substitute":
6562
- return { cull: ["pursuit", "rapidspin", "rest", "taunt"].some((m) => moves.has(m)) };
6603
+ return { cull: ["lightscreen", "pursuit", "rapidspin", "reflect", "rest", "taunt"].some((m) => moves.has(m)) };
6563
6604
  case "thunderwave":
6564
6605
  return { cull: !!counter.setupType || moves.has("toxic") || moves.has("trickroom") || moves.has("bodyslam") && abilities.has("Serene Grace") };
6565
6606
  case "yawn":
@@ -6616,6 +6657,8 @@ var RandomGen4Teams = class extends RandomGen5Teams {
6616
6657
  return counter.get("Status") < 2;
6617
6658
  case "Technician":
6618
6659
  return !counter.get("technician") || moves.has("toxic");
6660
+ case "Thick Fat":
6661
+ return (moves.has("facade") || moves.has("fakeout")) && abilities.has("Guts");
6619
6662
  case "Tinted Lens":
6620
6663
  return moves.has("protect");
6621
6664
  case "Torrent":
@@ -6628,7 +6671,9 @@ var RandomGen4Teams = class extends RandomGen5Teams {
6628
6671
  return species.requiredItem;
6629
6672
  if (species.requiredItems)
6630
6673
  return this.sample(species.requiredItems);
6631
- if (species.name === "Farfetch\u2019d" && moves.has("swordsdance"))
6674
+ if (species.name === "Ditto")
6675
+ return this.sample(["Salac Berry", "Sitrus Berry"]);
6676
+ if (species.name === "Farfetch\u2019d" && counter.get("Physical") < 4)
6632
6677
  return "Stick";
6633
6678
  if (species.name === "Marowak")
6634
6679
  return "Thick Club";
@@ -6693,6 +6738,8 @@ var RandomGen4Teams = class extends RandomGen5Teams {
6693
6738
  if (isLead && !counter.get("recoil") && !Array.from(moves).some((id) => !!recoveryMoves.includes(id)) && species.baseStats.hp + species.baseStats.def + species.baseStats.spd < 225) {
6694
6739
  return "Focus Sash";
6695
6740
  }
6741
+ if (counter.get("Dark") >= 3)
6742
+ return "Black Glasses";
6696
6743
  if (counter.damagingMoves.size >= 4) {
6697
6744
  return counter.get("Normal") || counter.get("Dragon") > 1 || moves.has("chargebeam") || moves.has("suckerpunch") ? "Life Orb" : "Expert Belt";
6698
6745
  }
@@ -7182,7 +7229,7 @@ var RandomGen3Teams = class extends RandomGen4Teams {
7182
7229
  return "Petaya Berry";
7183
7230
  if (counter.get("Physical") >= 4 && !moves.has("fakeout"))
7184
7231
  return "Choice Band";
7185
- if (counter.get("Physical") >= 3 && !moves.has("rapidspin") && (["firepunch", "icebeam", "overheat"].some((m) => moves.has(m)) || Array.from(moves).some((m) => {
7232
+ if (counter.get("Physical") >= 3 && !moves.has("rapidspin") && (["fireblast", "icebeam", "overheat"].some((m) => moves.has(m)) || Array.from(moves).some((m) => {
7186
7233
  const moveData = this.dex.moves.get(m);
7187
7234
  return moveData.category === "Special" && types.has(moveData.type);
7188
7235
  }))) {
@@ -7271,7 +7318,7 @@ var RandomGen3Teams = class extends RandomGen4Teams {
7271
7318
  cull = true;
7272
7319
  }
7273
7320
  const moveIsRejectable = !move.weather && (move.category !== "Status" || !move.flags.heal) && (counter.setupType || !move.stallingMove) && !["batonpass", "sleeptalk", "solarbeam", "substitute", "sunnyday"].includes(moveid) && (move.category === "Status" || !types.has(move.type) || move.basePower && move.basePower < 40 && !move.multihit);
7274
- const requiresStab = !counter.get("stab") && !moves.has("seismictoss") && !moves.has("nightshade") && species.id !== "castform" && !(moves.has("psychic") && types.has("Flying")) && !(types.has("Ghost") && species.baseStats.spa > species.baseStats.atk) && !(counter.setupType === "Special" && (species.id === "lugia" || types.has("Normal") && species.types.length < 2)) && !(counter.setupType === "Physical" && (types.has("Water") && species.types.length < 2 || types.has("Dark"))) && counter.get("physicalpool") + counter.get("specialpool") > 0;
7321
+ const requiresStab = !counter.get("stab") && !moves.has("seismictoss") && !moves.has("nightshade") && species.id !== "castform" && species.id !== "umbreon" && !(moves.has("psychic") && types.has("Flying")) && !(types.has("Ghost") && species.baseStats.spa > species.baseStats.atk) && !(counter.setupType === "Special" && (species.id === "lugia" || types.has("Normal") && species.types.length < 2)) && !(counter.setupType === "Physical" && (types.has("Water") && species.types.length < 2 || types.has("Dark"))) && counter.get("physicalpool") + counter.get("specialpool") > 0;
7275
7322
  const runEnforcementChecker = (checkerName) => {
7276
7323
  if (!this.moveEnforcementCheckers[checkerName])
7277
7324
  return false;
@@ -7610,7 +7657,7 @@ var RandomGen2Teams = class extends RandomGen3Teams {
7610
7657
  }
7611
7658
  getItem(ability, types, moves, counter, species) {
7612
7659
  if (species.name === "Ditto")
7613
- return this.sample(["Metal Powder", "Quick Claw"]);
7660
+ return "Metal Powder";
7614
7661
  if (species.name === "Farfetch\u2019d")
7615
7662
  return "Stick";
7616
7663
  if (species.name === "Marowak")
@@ -8159,7 +8206,7 @@ import {
8159
8206
  Tags as Tags2,
8160
8207
  toID as toID6
8161
8208
  } from "@pkmn/sim";
8162
- var randomSetsJSON = { "charizard": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Earthquake", "Flamethrower", "Focus Blast", "Hurricane", "Will-O-Wisp"], "teraTypes": ["Fire", "Ground", "Water"] }, { "role": "Setup Sweeper", "movepool": ["Dragon Dance", "Earthquake", "Flare Blitz", "Swords Dance", "Thunder Punch"], "teraTypes": ["Fire", "Ground"] }] }, "pikachu": { "level": 90, "sets": [{ "role": "Fast Attacker", "movepool": ["Fake Out", "Play Rough", "Surf", "Volt Switch", "Volt Tackle"], "teraTypes": ["Water"] }] }, "raichu": { "level": 88, "sets": [{ "role": "Fast Support", "movepool": ["Encore", "Focus Blast", "Grass Knot", "Nasty Plot", "Nuzzle", "Surf", "Thunderbolt", "Volt Switch"], "teraTypes": ["Water", "Grass"] }] }, "raichualola": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Focus Blast", "Grass Knot", "Nasty Plot", "Psychic", "Psyshock", "Surf", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric"] }] }, "wigglytuff": { "level": 89, "sets": [{ "role": "Bulky Support", "movepool": ["Dazzling Gleam", "Fire Blast", "Light Screen", "Protect", "Reflect", "Stealth Rock", "Thunder Wave", "Wish"], "teraTypes": ["Steel"] }] }, "venomoth": { "level": 84, "sets": [{ "role": "Setup Sweeper", "movepool": ["Bug Buzz", "Quiver Dance", "Sleep Powder", "Sludge Bomb", "Substitute"], "teraTypes": ["Bug", "Poison"] }] }, "dugtrio": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Earthquake", "Memento", "Stealth Rock", "Stone Edge", "Sucker Punch", "Swords Dance"], "teraTypes": ["Ground", "Ghost", "Fairy", "Flying", "Dark"] }] }, "dugtrioalola": { "level": 87, "sets": [{ "role": "Fast Attacker", "movepool": ["Earthquake", "Iron Head", "Stealth Rock", "Stone Edge", "Sucker Punch", "Swords Dance"], "teraTypes": ["Ground", "Steel"] }] }, "persian": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Aerial Ace", "Body Slam", "Fake Out", "Foul Play", "Gunk Shot", "Switcheroo", "U-turn"], "teraTypes": ["Normal", "Poison", "Flying"] }] }, "persianalola": { "level": 87, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Dark Pulse", "Hypnosis", "Nasty Plot", "Power Gem", "Thunderbolt"], "teraTypes": ["Dark", "Electric"] }] }, "golduck": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Encore", "Grass Knot", "Hydro Pump", "Ice Beam", "Nasty Plot", "Psyshock", "Taunt"], "teraTypes": ["Water"] }] }, "annihilape": { "level": 78, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Bulk Up", "Drain Punch", "Rage Fist", "Rest"], "teraTypes": ["Ghost", "Water", "Fairy", "Steel"] }, { "role": "Bulky Attacker", "movepool": ["Bulk Up", "Close Combat", "Rage Fist", "Stone Edge", "U-turn"], "teraTypes": ["Ghost", "Fighting"] }] }, "arcanine": { "level": 84, "sets": [{ "role": "Bulky Attacker", "movepool": ["Close Combat", "Extreme Speed", "Flare Blitz", "Morning Sun", "Roar", "Wild Charge", "Will-O-Wisp"], "teraTypes": ["Fighting", "Normal"] }, { "role": "Fast Attacker", "movepool": ["Close Combat", "Extreme Speed", "Flare Blitz", "Morning Sun", "Wild Charge"], "teraTypes": ["Fighting", "Normal"] }] }, "arcaninehisui": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Extreme Speed", "Flare Blitz", "Head Smash", "Morning Sun", "Wild Charge"], "teraTypes": ["Rock"] }] }, "slowbro": { "level": 84, "sets": [{ "role": "Bulky Attacker", "movepool": ["Calm Mind", "Psyshock", "Slack Off", "Surf", "Thunder Wave"], "teraTypes": ["Water", "Fairy"] }, { "role": "AV Pivot", "movepool": ["Body Press", "Fire Blast", "Future Sight", "Ice Beam", "Psychic", "Surf"], "teraTypes": ["Fighting", "Water"] }] }, "slowbrogalar": { "level": 84, "sets": [{ "role": "AV Pivot", "movepool": ["Earthquake", "Fire Blast", "Foul Play", "Psychic", "Shell Side Arm", "Surf"], "teraTypes": ["Ground", "Water", "Poison", "Dark"] }, { "role": "Wallbreaker", "movepool": ["Fire Blast", "Psyshock", "Sludge Bomb", "Trick", "Trick Room"], "teraTypes": ["Psychic", "Poison"] }] }, "muk": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Fire Punch", "Gunk Shot", "Haze", "Ice Punch", "Shadow Sneak", "Toxic", "Toxic Spikes"], "teraTypes": ["Poison", "Dark"] }] }, "mukalola": { "level": 86, "sets": [{ "role": "AV Pivot", "movepool": ["Fire Punch", "Gunk Shot", "Ice Punch", "Knock Off", "Poison Jab"], "teraTypes": ["Dark"] }] }, "cloyster": { "level": 78, "sets": [{ "role": "Tera Blast user", "movepool": ["Icicle Spear", "Rock Blast", "Shell Smash", "Tera Blast"], "teraTypes": ["Fire", "Ground"] }, { "role": "Setup Sweeper", "movepool": ["Hydro Pump", "Icicle Spear", "Rock Blast", "Shell Smash"], "teraTypes": ["Ice", "Rock"] }] }, "gengar": { "level": 80, "sets": [{ "role": "Wallbreaker", "movepool": ["Focus Blast", "Nasty Plot", "Shadow Ball", "Sludge Bomb", "Trick"], "teraTypes": ["Ghost"] }, { "role": "Fast Attacker", "movepool": ["Encore", "Focus Blast", "Shadow Ball", "Sludge Bomb", "Toxic Spikes", "Will-O-Wisp"], "teraTypes": ["Ghost"] }] }, "hypno": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Encore", "Focus Blast", "Foul Play", "Light Screen", "Psychic", "Reflect", "Thunder Wave"], "teraTypes": ["Dark", "Steel"] }] }, "electrode": { "level": 88, "sets": [{ "role": "Fast Support", "movepool": ["Explosion", "Foul Play", "Light Screen", "Taunt", "Thunder Wave", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric"] }] }, "electrodehisui": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Chloroblast", "Energy Ball", "Taunt", "Thunder Wave", "Thunderbolt", "Volt Switch"], "teraTypes": ["Grass"] }, { "role": "Fast Support", "movepool": ["Giga Drain", "Leech Seed", "Substitute", "Thunderbolt"], "teraTypes": ["Poison"] }] }, "scyther": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Aerial Ace", "Close Combat", "Pounce", "Swords Dance", "U-turn"], "teraTypes": ["Fighting"] }] }, "tauros": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Body Slam", "Close Combat", "Earthquake", "Rock Slide", "Zen Headbutt"], "teraTypes": ["Normal", "Fighting", "Ground"] }, { "role": "Wallbreaker", "movepool": ["Close Combat", "Double-Edge", "Earthquake", "Stone Edge"], "teraTypes": ["Normal", "Fighting", "Ground"] }] }, "taurospaldeacombat": { "level": 84, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Bulk Up", "Raging Bull", "Stone Edge", "Substitute"], "teraTypes": ["Fighting"] }, { "role": "Wallbreaker", "movepool": ["Bulk Up", "Close Combat", "Earthquake", "Iron Head", "Stone Edge"], "teraTypes": ["Fighting"] }] }, "taurospaldeablaze": { "level": 84, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Bulk Up", "Close Combat", "Raging Bull", "Substitute"], "teraTypes": ["Fire"] }, { "role": "Wallbreaker", "movepool": ["Close Combat", "Flare Blitz", "Stone Edge", "Wild Charge"], "teraTypes": ["Fighting"] }] }, "taurospaldeaaqua": { "level": 84, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Bulk Up", "Close Combat", "Liquidation", "Substitute"], "teraTypes": ["Water"] }, { "role": "Wallbreaker", "movepool": ["Aqua Jet", "Bulk Up", "Close Combat", "Liquidation", "Stone Edge", "Wave Crash"], "teraTypes": ["Water"] }] }, "gyarados": { "level": 80, "sets": [{ "role": "Setup Sweeper", "movepool": ["Dragon Dance", "Earthquake", "Stone Edge", "Waterfall"], "teraTypes": ["Ground"] }, { "role": "Tera Blast user", "movepool": ["Dragon Dance", "Earthquake", "Tera Blast", "Waterfall"], "teraTypes": ["Flying"] }] }, "ditto": { "level": 88, "sets": [{ "role": "Fast Support", "movepool": ["Transform"], "teraTypes": ["Flying", "Dark", "Fire", "Bug", "Water", "Ice", "Fighting", "Electric", "Psychic", "Poison", "Grass", "Ghost", "Ground", "Rock", "Fairy", "Steel", "Normal", "Dragon"] }] }, "vaporeon": { "level": 85, "sets": [{ "role": "Bulky Support", "movepool": ["Calm Mind", "Ice Beam", "Protect", "Surf", "Wish"], "teraTypes": ["Ghost", "Ground"] }] }, "jolteon": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Calm Mind", "Hyper Voice", "Shadow Ball", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric", "Ghost"] }, { "role": "Tera Blast user", "movepool": ["Calm Mind", "Substitute", "Tera Blast", "Thunderbolt"], "teraTypes": ["Ice"] }] }, "flareon": { "level": 86, "sets": [{ "role": "Wallbreaker", "movepool": ["Facade", "Flare Blitz", "Quick Attack", "Trailblaze", "Will-O-Wisp"], "teraTypes": ["Normal"] }] }, "articuno": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Air Slash", "Freeze-Dry", "Haze", "Hurricane", "Roost", "Substitute", "U-turn"], "teraTypes": ["Flying", "Steel"] }] }, "articunogalar": { "level": 85, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Air Slash", "Calm Mind", "Freezing Glare", "Hurricane", "Recover"], "teraTypes": ["Psychic", "Steel"] }] }, "zapdos": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Discharge", "Heat Wave", "Hurricane", "Roost", "U-turn"], "teraTypes": ["Electric"] }] }, "zapdosgalar": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Brave Bird", "Bulk Up", "Close Combat", "Stomping Tantrum", "U-turn"], "teraTypes": ["Fighting"] }] }, "moltres": { "level": 84, "sets": [{ "role": "Bulky Attacker", "movepool": ["Brave Bird", "Fire Blast", "Roost", "U-turn", "Will-O-Wisp"], "teraTypes": ["Fire", "Ground"] }] }, "moltresgalar": { "level": 82, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Agility", "Fiery Wrath", "Hurricane", "Nasty Plot", "Rest"], "teraTypes": ["Dark"] }] }, "dragonite": { "level": 80, "sets": [{ "role": "Bulky Attacker", "movepool": ["Dragon Dance", "Earthquake", "Extreme Speed", "Fire Punch", "Outrage"], "teraTypes": ["Normal"] }, { "role": "Tera Blast user", "movepool": ["Dragon Dance", "Earthquake", "Outrage", "Tera Blast"], "teraTypes": ["Flying"] }] }, "mewtwo": { "level": 72, "sets": [{ "role": "Fast Attacker", "movepool": ["Aura Sphere", "Fire Blast", "Nasty Plot", "Psystrike", "Recover", "Shadow Ball"], "teraTypes": ["Psychic", "Fighting", "Fire", "Ghost"] }] }, "mew": { "level": 81, "sets": [{ "role": "Bulky Support", "movepool": ["Psychic", "Spikes", "Stealth Rock", "Taunt", "Thunder Wave", "Toxic Spikes", "Will-O-Wisp"], "teraTypes": ["Steel", "Fairy"] }, { "role": "Fast Attacker", "movepool": ["Brave Bird", "Close Combat", "Dragon Dance", "Flare Blitz", "Psychic Fangs", "Swords Dance", "U-turn"], "teraTypes": ["Fighting", "Fire"] }, { "role": "Setup Sweeper", "movepool": ["Aura Sphere", "Dazzling Gleam", "Earth Power", "Fire Blast", "Nasty Plot", "Psyshock", "Shadow Ball"], "teraTypes": ["Psychic", "Fighting", "Fire", "Ghost", "Ground", "Fairy"] }] }, "typhlosion": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Eruption", "Fire Blast", "Focus Blast", "Shadow Ball"], "teraTypes": ["Fire", "Ghost"] }] }, "typhlosionhisui": { "level": 86, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Calm Mind", "Flamethrower", "Shadow Ball", "Substitute", "Will-O-Wisp"], "teraTypes": ["Ghost"] }, { "role": "Fast Attacker", "movepool": ["Eruption", "Fire Blast", "Focus Blast", "Shadow Ball"], "teraTypes": ["Fire", "Ghost"] }] }, "ampharos": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Agility", "Dazzling Gleam", "Focus Blast", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric", "Fairy"] }] }, "azumarill": { "level": 82, "sets": [{ "role": "Bulky Setup", "movepool": ["Aqua Jet", "Belly Drum", "Liquidation", "Play Rough"], "teraTypes": ["Water"] }, { "role": "Bulky Attacker", "movepool": ["Aqua Jet", "Ice Spinner", "Liquidation", "Play Rough", "Superpower"], "teraTypes": ["Water"] }] }, "sudowoodo": { "level": 86, "sets": [{ "role": "Bulky Attacker", "movepool": ["Earthquake", "Head Smash", "Spikes", "Stealth Rock", "Sucker Punch", "Wood Hammer"], "teraTypes": ["Rock", "Grass"] }] }, "jumpluff": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Acrobatics", "Leech Seed", "Strength Sap", "Substitute"], "teraTypes": ["Steel"] }, { "role": "Fast Support", "movepool": ["Acrobatics", "Encore", "Sleep Powder", "Strength Sap", "U-turn"], "teraTypes": ["Steel"] }] }, "sunflora": { "level": 90, "sets": [{ "role": "Wallbreaker", "movepool": ["Dazzling Gleam", "Earth Power", "Leaf Storm", "Sludge Bomb"], "teraTypes": ["Grass", "Ground", "Fairy", "Poison"] }] }, "quagsire": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Ice Beam", "Liquidation", "Recover", "Spikes", "Toxic"], "teraTypes": ["Poison", "Steel", "Fairy"] }] }, "clodsire": { "level": 81, "sets": [{ "role": "Bulky Setup", "movepool": ["Curse", "Earthquake", "Gunk Shot", "Recover"], "teraTypes": ["Ground", "Flying"] }, { "role": "Bulky Support", "movepool": ["Earthquake", "Haze", "Poison Jab", "Recover", "Spikes", "Toxic", "Toxic Spikes"], "teraTypes": ["Ground", "Flying", "Steel"] }] }, "espeon": { "level": 85, "sets": [{ "role": "Fast Attacker", "movepool": ["Calm Mind", "Dazzling Gleam", "Morning Sun", "Psychic", "Shadow Ball", "Trick"], "teraTypes": ["Fairy", "Psychic"] }] }, "umbreon": { "level": 85, "sets": [{ "role": "Bulky Support", "movepool": ["Foul Play", "Protect", "Thunder Wave", "Wish", "Yawn"], "teraTypes": ["Poison"] }] }, "slowking": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Chilly Reception", "Psyshock", "Slack Off", "Surf", "Thunder Wave"], "teraTypes": ["Water", "Fairy", "Dragon"] }, { "role": "Wallbreaker", "movepool": ["Fire Blast", "Hydro Pump", "Ice Beam", "Psychic", "Psyshock", "Trick", "Trick Room"], "teraTypes": ["Water", "Psychic"] }] }, "slowkinggalar": { "level": 82, "sets": [{ "role": "Bulky Support", "movepool": ["Chilly Reception", "Fire Blast", "Psyshock", "Slack Off", "Sludge Bomb", "Thunder Wave"], "teraTypes": ["Poison", "Dark"] }, { "role": "AV Pivot", "movepool": ["Fire Blast", "Future Sight", "Ice Beam", "Psyshock", "Sludge Bomb"], "teraTypes": ["Poison", "Psychic"] }] }, "girafarig": { "level": 88, "sets": [{ "role": "Bulky Setup", "movepool": ["Dazzling Gleam", "Nasty Plot", "Psychic", "Psyshock", "Shadow Ball", "Thunderbolt"], "teraTypes": ["Psychic", "Fairy", "Electric"] }] }, "forretress": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Body Press", "Iron Head", "Rapid Spin", "Spikes", "Stealth Rock", "Volt Switch"], "teraTypes": ["Water"] }] }, "dunsparce": { "level": 87, "sets": [{ "role": "Bulky Setup", "movepool": ["Body Slam", "Coil", "Earthquake", "Roost"], "teraTypes": ["Ground"] }] }, "qwilfish": { "level": 86, "sets": [{ "role": "Fast Support", "movepool": ["Destiny Bond", "Gunk Shot", "Spikes", "Taunt", "Thunder Wave", "Toxic Spikes", "Waterfall"], "teraTypes": ["Water", "Dark"] }] }, "qwilfishhisui": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Crunch", "Gunk Shot", "Spikes", "Taunt", "Toxic Spikes"], "teraTypes": ["Poison", "Flying"] }] }, "overqwil": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Aqua Jet", "Crunch", "Gunk Shot", "Liquidation", "Swords Dance"], "teraTypes": ["Water"] }] }, "scizor": { "level": 83, "sets": [{ "role": "Bulky Support", "movepool": ["Bullet Punch", "Close Combat", "Defog", "U-turn"], "teraTypes": ["Steel"] }, { "role": "Setup Sweeper", "movepool": ["Bullet Punch", "Close Combat", "Pounce", "Swords Dance"], "teraTypes": ["Steel"] }] }, "heracross": { "level": 82, "sets": [{ "role": "Setup Sweeper", "movepool": ["Close Combat", "Facade", "Swords Dance", "Throat Chop"], "teraTypes": ["Normal"] }, { "role": "Fast Attacker", "movepool": ["Close Combat", "Earthquake", "Megahorn", "Stone Edge", "Throat Chop"], "teraTypes": ["Rock", "Bug", "Fighting"] }] }, "ursaring": { "level": 87, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Slam", "Crunch", "Earthquake", "Rest", "Sleep Talk"], "teraTypes": ["Ground", "Normal"] }] }, "delibird": { "level": 100, "sets": [{ "role": "Fast Attacker", "movepool": ["Brave Bird", "Drill Run", "Ice Shard", "Ice Spinner"], "teraTypes": ["Ice", "Flying", "Ground"] }, { "role": "Fast Support", "movepool": ["Freeze-Dry", "Memento", "Rapid Spin", "Spikes"], "teraTypes": ["Ghost"] }] }, "houndoom": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Dark Pulse", "Fire Blast", "Nasty Plot", "Sludge Bomb", "Sucker Punch"], "teraTypes": ["Dark", "Poison", "Fire"] }] }, "donphan": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Ice Spinner", "Knock Off", "Rapid Spin", "Stealth Rock"], "teraTypes": ["Grass", "Ghost"] }, { "role": "Bulky Attacker", "movepool": ["Earthquake", "Gunk Shot", "Ice Shard", "Ice Spinner", "Knock Off", "Rapid Spin", "Stone Edge"], "teraTypes": ["Ice", "Poison", "Dark"] }] }, "blissey": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Seismic Toss", "Soft-Boiled", "Stealth Rock", "Thunder Wave"], "teraTypes": ["Steel", "Fairy", "Ghost", "Poison"] }] }, "tyranitar": { "level": 81, "sets": [{ "role": "Bulky Setup", "movepool": ["Crunch", "Dragon Dance", "Earthquake", "Fire Punch", "Stone Edge"], "teraTypes": ["Rock", "Ghost"] }, { "role": "Bulky Support", "movepool": ["Crunch", "Earthquake", "Fire Blast", "Ice Beam", "Stealth Rock", "Stone Edge", "Thunder Wave"], "teraTypes": ["Rock", "Poison"] }] }, "pelipper": { "level": 82, "sets": [{ "role": "Bulky Attacker", "movepool": ["Hurricane", "Hydro Pump", "Ice Beam", "Knock Off", "Roost", "Surf", "U-turn"], "teraTypes": ["Water", "Ground"] }, { "role": "Wallbreaker", "movepool": ["Hurricane", "Hydro Pump", "Ice Beam", "Surf", "U-turn"], "teraTypes": ["Water", "Flying"] }] }, "gardevoir": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Calm Mind", "Focus Blast", "Healing Wish", "Moonblast", "Mystical Fire", "Psychic", "Psyshock", "Trick"], "teraTypes": ["Fairy", "Fire", "Fighting"] }] }, "masquerain": { "level": 88, "sets": [{ "role": "Setup Sweeper", "movepool": ["Bug Buzz", "Hurricane", "Hydro Pump", "Quiver Dance"], "teraTypes": ["Water"] }, { "role": "Fast Support", "movepool": ["Bug Buzz", "Hurricane", "Hydro Pump", "Ice Beam", "Sticky Web", "Stun Spore", "U-turn"], "teraTypes": ["Ground", "Steel"] }] }, "breloom": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Bullet Seed", "Close Combat", "Mach Punch", "Rock Tomb", "Spore", "Swords Dance"], "teraTypes": ["Fighting"] }] }, "slaking": { "level": 85, "sets": [{ "role": "Fast Attacker", "movepool": ["Body Slam", "Earthquake", "Fire Punch", "Giga Impact", "Hammer Arm", "Throat Chop"], "teraTypes": ["Normal", "Ground"] }] }, "hariyama": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Bulk Up", "Bullet Punch", "Close Combat", "Facade", "Headlong Rush", "Knock Off"], "teraTypes": ["Normal"] }, { "role": "AV Pivot", "movepool": ["Bullet Punch", "Close Combat", "Headlong Rush", "Heavy Slam", "Knock Off"], "teraTypes": ["Steel"] }] }, "sableye": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Encore", "Foul Play", "Knock Off", "Recover", "Taunt", "Thunder Wave", "Will-O-Wisp"], "teraTypes": ["Steel"] }] }, "medicham": { "level": 85, "sets": [{ "role": "Fast Attacker", "movepool": ["Bullet Punch", "Close Combat", "Ice Punch", "Poison Jab", "Zen Headbutt"], "teraTypes": ["Fighting"] }] }, "swalot": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Encore", "Ice Beam", "Pain Split", "Protect", "Sludge Bomb", "Toxic", "Toxic Spikes"], "teraTypes": ["Dark"] }, { "role": "Bulky Setup", "movepool": ["Earthquake", "Gunk Shot", "Seed Bomb", "Swords Dance"], "teraTypes": ["Poison", "Ground"] }] }, "camerupt": { "level": 90, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Lava Plume", "Stealth Rock", "Yawn"], "teraTypes": ["Water"] }] }, "torkoal": { "level": 85, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Lava Plume", "Rapid Spin", "Solar Beam", "Stealth Rock", "Yawn"], "teraTypes": ["Dragon", "Fire"] }] }, "grumpig": { "level": 88, "sets": [{ "role": "Bulky Attacker", "movepool": ["Dazzling Gleam", "Earth Power", "Focus Blast", "Nasty Plot", "Psychic", "Psyshock", "Shadow Ball", "Trick"], "teraTypes": ["Psychic", "Fairy", "Ground", "Ghost", "Fighting"] }] }, "cacturne": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Dark Pulse", "Focus Blast", "Leaf Storm", "Sucker Punch", "Toxic Spikes"], "teraTypes": ["Dark", "Poison", "Grass"] }, { "role": "Setup Sweeper", "movepool": ["Drain Punch", "Seed Bomb", "Sucker Punch", "Swords Dance"], "teraTypes": ["Dark", "Fighting"] }] }, "altaria": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Brave Bird", "Defog", "Earthquake", "Haze", "Roost", "Will-O-Wisp"], "teraTypes": ["Steel"] }, { "role": "Bulky Setup", "movepool": ["Brave Bird", "Dragon Dance", "Earthquake", "Roost"], "teraTypes": ["Flying", "Ground"] }] }, "zangoose": { "level": 85, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Facade", "Night Slash", "Quick Attack", "Swords Dance"], "teraTypes": ["Normal"] }] }, "seviper": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Earthquake", "Flamethrower", "Giga Drain", "Glare", "Gunk Shot", "Switcheroo"], "teraTypes": ["Ground", "Fire", "Poison", "Grass"] }] }, "whiscash": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Liquidation", "Spikes", "Stealth Rock", "Stone Edge"], "teraTypes": ["Ground", "Steel"] }, { "role": "Setup Sweeper", "movepool": ["Dragon Dance", "Earthquake", "Liquidation", "Stone Edge"], "teraTypes": ["Ground", "Water"] }] }, "banette": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Gunk Shot", "Knock Off", "Shadow Claw", "Shadow Sneak", "Swords Dance", "Thunder Wave", "Will-O-Wisp"], "teraTypes": ["Poison", "Dark"] }] }, "tropius": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Air Slash", "Leech Seed", "Protect", "Substitute"], "teraTypes": ["Steel"] }] }, "glalie": { "level": 78, "sets": [{ "role": "Fast Support", "movepool": ["Disable", "Earthquake", "Freeze-Dry", "Protect", "Substitute"], "teraTypes": ["Poison", "Steel", "Water"] }] }, "luvdisc": { "level": 100, "sets": [{ "role": "Bulky Support", "movepool": ["Charm", "Ice Beam", "Protect", "Surf", "Wish"], "teraTypes": ["Dragon", "Ghost"] }] }, "salamence": { "level": 82, "sets": [{ "role": "Setup Sweeper", "movepool": ["Dragon Dance", "Dual Wingbeat", "Earthquake", "Outrage", "Roost"], "teraTypes": ["Flying", "Ground", "Dragon"] }] }, "kyogre": { "level": 72, "sets": [{ "role": "Bulky Attacker", "movepool": ["Calm Mind", "Ice Beam", "Origin Pulse", "Thunder", "Water Spout"], "teraTypes": ["Water"] }] }, "groudon": { "level": 74, "sets": [{ "role": "Bulky Attacker", "movepool": ["Lava Plume", "Precipice Blades", "Spikes", "Stealth Rock", "Stone Edge", "Thunder Wave"], "teraTypes": ["Fire", "Dragon", "Water", "Ghost"] }, { "role": "Bulky Setup", "movepool": ["Fire Punch", "Precipice Blades", "Stone Edge", "Swords Dance", "Thunder Wave"], "teraTypes": ["Ground", "Fire"] }] }, "rayquaza": { "level": 72, "sets": [{ "role": "Fast Attacker", "movepool": ["Dragon Ascent", "Dragon Dance", "Earthquake", "Extreme Speed", "Swords Dance", "U-turn"], "teraTypes": ["Flying", "Normal"] }] }, "staraptor": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Brave Bird", "Close Combat", "Double-Edge", "Quick Attack", "U-turn"], "teraTypes": ["Fighting", "Flying"] }] }, "kricketune": { "level": 90, "sets": [{ "role": "Fast Support", "movepool": ["Brick Break", "Pounce", "Sticky Web", "Taunt"], "teraTypes": ["Ghost"] }] }, "luxray": { "level": 86, "sets": [{ "role": "Wallbreaker", "movepool": ["Crunch", "Facade", "Play Rough", "Trailblaze", "Wild Charge"], "teraTypes": ["Normal"] }, { "role": "AV Pivot", "movepool": ["Crunch", "Ice Fang", "Play Rough", "Volt Switch", "Wild Charge"], "teraTypes": ["Electric", "Fairy"] }] }, "vespiquen": { "level": 90, "sets": [{ "role": "Bulky Support", "movepool": ["Air Slash", "Roost", "Spikes", "Toxic", "Toxic Spikes", "U-turn"], "teraTypes": ["Steel"] }] }, "pachirisu": { "level": 94, "sets": [{ "role": "AV Pivot", "movepool": ["Nuzzle", "Super Fang", "Thunderbolt", "U-turn"], "teraTypes": ["Flying"] }] }, "floatzel": { "level": 85, "sets": [{ "role": "Fast Attacker", "movepool": ["Aqua Jet", "Crunch", "Ice Spinner", "Low Kick", "Wave Crash"], "teraTypes": ["Water"] }, { "role": "Tera Blast user", "movepool": ["Bulk Up", "Ice Spinner", "Liquidation", "Tera Blast"], "teraTypes": ["Electric", "Grass"] }] }, "gastrodon": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Clear Smog", "Earthquake", "Ice Beam", "Recover", "Stealth Rock", "Surf"], "teraTypes": ["Steel", "Poison"] }] }, "drifblim": { "level": 86, "sets": [{ "role": "Fast Support", "movepool": ["Air Slash", "Defog", "Shadow Ball", "Strength Sap", "Will-O-Wisp"], "teraTypes": ["Ghost", "Fairy"] }, { "role": "Fast Bulky Setup", "movepool": ["Air Slash", "Calm Mind", "Shadow Ball", "Strength Sap"], "teraTypes": ["Ghost", "Fairy"] }] }, "mismagius": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Dazzling Gleam", "Energy Ball", "Mystical Fire", "Nasty Plot", "Shadow Ball", "Thunderbolt", "Trick"], "teraTypes": ["Ghost", "Fire", "Fairy", "Electric"] }] }, "honchkrow": { "level": 86, "sets": [{ "role": "Wallbreaker", "movepool": ["Brave Bird", "Heat Wave", "Sucker Punch", "U-turn"], "teraTypes": ["Dark", "Flying"] }] }, "skuntank": { "level": 88, "sets": [{ "role": "Fast Support", "movepool": ["Crunch", "Fire Blast", "Gunk Shot", "Sucker Punch", "Taunt", "Toxic Spikes"], "teraTypes": ["Dark", "Poison"] }] }, "bronzong": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Hypnosis", "Iron Head", "Light Screen", "Psychic", "Reflect", "Stealth Rock"], "teraTypes": ["Water", "Electric"] }] }, "spiritomb": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Foul Play", "Pain Split", "Shadow Sneak", "Sucker Punch", "Will-O-Wisp"], "teraTypes": ["Dark"] }, { "role": "Bulky Setup", "movepool": ["Calm Mind", "Dark Pulse", "Rest", "Sleep Talk"], "teraTypes": ["Dark", "Steel"] }] }, "garchomp": { "level": 80, "sets": [{ "role": "Fast Support", "movepool": ["Draco Meteor", "Earthquake", "Fire Blast", "Stealth Rock", "Stone Edge"], "teraTypes": ["Ground", "Steel"] }, { "role": "Fast Attacker", "movepool": ["Earthquake", "Fire Fang", "Outrage", "Stone Edge", "Swords Dance"], "teraTypes": ["Ground", "Dragon"] }] }, "lucario": { "level": 83, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Extreme Speed", "Meteor Mash", "Stone Edge", "Swords Dance"], "teraTypes": ["Normal", "Fighting", "Steel"] }, { "role": "Setup Sweeper", "movepool": ["Aura Sphere", "Dark Pulse", "Flash Cannon", "Focus Blast", "Nasty Plot", "Vacuum Wave"], "teraTypes": ["Fighting"] }] }, "hippowdon": { "level": 82, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Slack Off", "Stealth Rock", "Stone Edge", "Whirlwind", "Yawn"], "teraTypes": ["Fairy", "Rock", "Steel"] }] }, "toxicroak": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Gunk Shot", "Ice Punch", "Sucker Punch", "Swords Dance"], "teraTypes": ["Dark", "Fighting"] }, { "role": "Setup Sweeper", "movepool": ["Dark Pulse", "Focus Blast", "Nasty Plot", "Sludge Bomb", "Vacuum Wave"], "teraTypes": ["Dark", "Fighting", "Poison"] }] }, "lumineon": { "level": 90, "sets": [{ "role": "Fast Attacker", "movepool": ["Dazzling Gleam", "Encore", "Hydro Pump", "Ice Beam", "U-turn"], "teraTypes": ["Water", "Fairy"] }] }, "abomasnow": { "level": 87, "sets": [{ "role": "Bulky Support", "movepool": ["Aurora Veil", "Blizzard", "Earthquake", "Ice Shard", "Wood Hammer"], "teraTypes": ["Ice"] }] }, "weavile": { "level": 83, "sets": [{ "role": "Fast Attacker", "movepool": ["Ice Shard", "Ice Spinner", "Low Kick", "Night Slash", "Swords Dance"], "teraTypes": ["Ice", "Fighting"] }] }, "sneasler": { "level": 78, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Dire Claw", "Gunk Shot", "Night Slash", "U-turn"], "teraTypes": ["Dark", "Fighting"] }, { "role": "Setup Sweeper", "movepool": ["Acrobatics", "Close Combat", "Gunk Shot", "Swords Dance"], "teraTypes": ["Flying"] }] }, "magnezone": { "level": 84, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Press", "Flash Cannon", "Mirror Coat", "Steel Beam", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric", "Water", "Flying"] }, { "role": "Tera Blast user", "movepool": ["Flash Cannon", "Tera Blast", "Thunderbolt", "Volt Switch"], "teraTypes": ["Fire"] }] }, "leafeon": { "level": 86, "sets": [{ "role": "Setup Sweeper", "movepool": ["Double-Edge", "Leaf Blade", "Substitute", "Swords Dance", "Synthesis", "X-Scissor"], "teraTypes": ["Normal"] }] }, "glaceon": { "level": 89, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Freeze-Dry", "Protect", "Wish"], "teraTypes": ["Water"] }] }, "gallade": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Leaf Blade", "Night Slash", "Psycho Cut", "Sacred Sword", "Swords Dance"], "teraTypes": ["Fighting", "Grass", "Dark"] }] }, "froslass": { "level": 86, "sets": [{ "role": "Fast Support", "movepool": ["Destiny Bond", "Ice Beam", "Shadow Ball", "Spikes", "Taunt", "Will-O-Wisp"], "teraTypes": ["Ghost"] }] }, "rotom": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Nasty Plot", "Shadow Ball", "Thunderbolt", "Trick", "Volt Switch", "Will-O-Wisp"], "teraTypes": ["Ghost", "Electric"] }] }, "rotomwash": { "level": 82, "sets": [{ "role": "Bulky Attacker", "movepool": ["Discharge", "Hydro Pump", "Nasty Plot", "Trick", "Volt Switch", "Will-O-Wisp"], "teraTypes": ["Water", "Electric"] }] }, "rotomheat": { "level": 82, "sets": [{ "role": "Bulky Attacker", "movepool": ["Nasty Plot", "Overheat", "Thunderbolt", "Trick", "Volt Switch", "Will-O-Wisp"], "teraTypes": ["Fire", "Electric"] }] }, "rotomfrost": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Blizzard", "Nasty Plot", "Thunderbolt", "Volt Switch", "Will-O-Wisp"], "teraTypes": ["Electric"] }] }, "rotomfan": { "level": 86, "sets": [{ "role": "Bulky Attacker", "movepool": ["Air Slash", "Nasty Plot", "Thunderbolt", "Volt Switch", "Will-O-Wisp"], "teraTypes": ["Electric"] }] }, "rotommow": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Leaf Storm", "Nasty Plot", "Thunderbolt", "Trick", "Volt Switch", "Will-O-Wisp"], "teraTypes": ["Grass", "Electric"] }] }, "uxie": { "level": 88, "sets": [{ "role": "Fast Support", "movepool": ["Encore", "Light Screen", "Psychic", "Reflect", "Stealth Rock", "Thunder Wave", "U-turn", "Yawn"], "teraTypes": ["Steel", "Electric"] }] }, "mesprit": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Dazzling Gleam", "Energy Ball", "Healing Wish", "Ice Beam", "Nasty Plot", "Psychic", "Thunderbolt", "Trick", "U-turn"], "teraTypes": ["Psychic", "Fairy", "Electric"] }] }, "azelf": { "level": 82, "sets": [{ "role": "Fast Support", "movepool": ["Explosion", "Fire Blast", "Psychic", "Stealth Rock", "Taunt", "U-turn"], "teraTypes": ["Psychic", "Fire"] }, { "role": "Fast Attacker", "movepool": ["Dazzling Gleam", "Energy Ball", "Fire Blast", "Nasty Plot", "Psychic", "Psyshock", "Trick", "U-turn"], "teraTypes": ["Psychic", "Fairy", "Fire"] }] }, "dialga": { "level": 76, "sets": [{ "role": "Bulky Attacker", "movepool": ["Draco Meteor", "Fire Blast", "Flash Cannon", "Stealth Rock", "Thunder Wave", "Thunderbolt", "Trick"], "teraTypes": ["Dragon", "Steel", "Fire"] }] }, "dialgaorigin": { "level": 76, "sets": [{ "role": "Bulky Attacker", "movepool": ["Draco Meteor", "Fire Blast", "Flash Cannon", "Stealth Rock", "Thunder Wave"], "teraTypes": ["Dragon", "Steel", "Fire"] }] }, "palkia": { "level": 76, "sets": [{ "role": "Fast Attacker", "movepool": ["Draco Meteor", "Fire Blast", "Hydro Pump", "Spacial Rend"], "teraTypes": ["Dragon", "Water"] }, { "role": "Bulky Attacker", "movepool": ["Draco Meteor", "Fire Blast", "Hydro Pump", "Spacial Rend", "Thunder Wave"], "teraTypes": ["Dragon", "Water"] }] }, "palkiaorigin": { "level": 76, "sets": [{ "role": "Bulky Attacker", "movepool": ["Draco Meteor", "Fire Blast", "Hydro Pump", "Spacial Rend", "Thunder Wave"], "teraTypes": ["Dragon", "Water"] }] }, "heatran": { "level": 80, "sets": [{ "role": "Bulky Support", "movepool": ["Earth Power", "Flash Cannon", "Lava Plume", "Magma Storm", "Stealth Rock"], "teraTypes": ["Flying", "Grass", "Steel"] }] }, "giratina": { "level": 76, "sets": [{ "role": "Bulky Support", "movepool": ["Dragon Tail", "Rest", "Shadow Ball", "Sleep Talk", "Will-O-Wisp"], "teraTypes": ["Ghost"] }, { "role": "Bulky Setup", "movepool": ["Calm Mind", "Dragon Pulse", "Rest", "Sleep Talk"], "teraTypes": ["Dragon"] }] }, "giratinaorigin": { "level": 76, "sets": [{ "role": "Bulky Support", "movepool": ["Defog", "Draco Meteor", "Dragon Tail", "Earthquake", "Outrage", "Shadow Ball", "Shadow Sneak", "Will-O-Wisp"], "teraTypes": ["Dragon", "Ghost"] }] }, "cresselia": { "level": 82, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Moonblast", "Moonlight", "Psychic", "Psyshock", "Thunderbolt"], "teraTypes": ["Fairy", "Electric", "Poison", "Steel"] }] }, "arceus": { "level": 70, "sets": [{ "role": "Setup Sweeper", "movepool": ["Earthquake", "Extreme Speed", "Recover", "Shadow Claw", "Swords Dance"], "teraTypes": ["Normal"] }] }, "arceusbug": { "level": 72, "sets": [{ "role": "Setup Sweeper", "movepool": ["Calm Mind", "Earth Power", "Ice Beam", "Judgment"], "teraTypes": ["Ground"] }, { "role": "Bulky Setup", "movepool": ["Calm Mind", "Fire Blast", "Judgment", "Recover"], "teraTypes": ["Fire"] }] }, "arceusdark": { "level": 70, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Fire Blast", "Judgment", "Recover", "Sludge Bomb"], "teraTypes": ["Dark", "Poison", "Fire"] }] }, "arceusdragon": { "level": 70, "sets": [{ "role": "Setup Sweeper", "movepool": ["Earthquake", "Extreme Speed", "Gunk Shot", "Outrage", "Swords Dance"], "teraTypes": ["Ground"] }] }, "arceuselectric": { "level": 70, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Ice Beam", "Judgment", "Recover"], "teraTypes": ["Electric", "Ice"] }] }, "arceusfairy": { "level": 70, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Earth Power", "Fire Blast", "Judgment", "Recover"], "teraTypes": ["Fairy", "Ground", "Fire"] }] }, "arceusfighting": { "level": 68, "sets": [{ "role": "Bulky Setup", "movepool": ["Body Press", "Cosmic Power", "Recover", "Stored Power"], "teraTypes": ["Steel"] }] }, "arceusfire": { "level": 72, "sets": [{ "role": "Setup Sweeper", "movepool": ["Earthquake", "Extreme Speed", "Flare Blitz", "Liquidation", "Recover", "Swords Dance"], "teraTypes": ["Fire", "Ground", "Water"] }] }, "arceusflying": { "level": 72, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Earth Power", "Fire Blast", "Judgment", "Recover"], "teraTypes": ["Flying", "Ground"] }] }, "arceusghost": { "level": 70, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Focus Blast", "Judgment", "Recover"], "teraTypes": ["Fighting", "Ghost"] }] }, "arceusgrass": { "level": 72, "sets": [{ "role": "Setup Sweeper", "movepool": ["Calm Mind", "Earth Power", "Ice Beam", "Judgment"], "teraTypes": ["Grass", "Ground"] }, { "role": "Bulky Setup", "movepool": ["Calm Mind", "Fire Blast", "Judgment", "Recover"], "teraTypes": ["Grass", "Fire"] }] }, "arceusground": { "level": 70, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Fire Blast", "Ice Beam", "Judgment", "Recover"], "teraTypes": ["Ground"] }] }, "arceusice": { "level": 72, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Earth Power", "Judgment", "Recover", "Thunderbolt"], "teraTypes": ["Electric", "Ground"] }] }, "arceuspoison": { "level": 72, "sets": [{ "role": "Setup Sweeper", "movepool": ["Earthquake", "Flare Blitz", "Gunk Shot", "Liquidation", "Recover", "Swords Dance"], "teraTypes": ["Poison", "Ground", "Fire", "Water"] }] }, "arceuspsychic": { "level": 68, "sets": [{ "role": "Bulky Setup", "movepool": ["Body Press", "Cosmic Power", "Recover", "Stored Power"], "teraTypes": ["Steel"] }] }, "arceusrock": { "level": 70, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Earth Power", "Fire Blast", "Ice Beam", "Judgment", "Recover"], "teraTypes": ["Ground", "Rock"] }] }, "arceussteel": { "level": 70, "sets": [{ "role": "Setup Sweeper", "movepool": ["Calm Mind", "Earth Power", "Judgment", "Recover", "Will-O-Wisp"], "teraTypes": ["Ghost"] }] }, "arceuswater": { "level": 70, "sets": [{ "role": "Bulky Support", "movepool": ["Judgment", "Recover", "Taunt", "Will-O-Wisp"], "teraTypes": ["Steel"] }] }, "samurott": { "level": 88, "sets": [{ "role": "AV Pivot", "movepool": ["Aqua Jet", "Grass Knot", "Hydro Pump", "Ice Beam", "Knock Off", "Megahorn", "Sacred Sword"], "teraTypes": ["Water", "Dark"] }, { "role": "Fast Attacker", "movepool": ["Aqua Jet", "Knock Off", "Liquidation", "Megahorn", "Sacred Sword", "Swords Dance"], "teraTypes": ["Water", "Dark"] }] }, "samurotthisui": { "level": 85, "sets": [{ "role": "Fast Attacker", "movepool": ["Aqua Jet", "Ceaseless Edge", "Razor Shell", "Sucker Punch", "Swords Dance", "X-Scissor"], "teraTypes": ["Water", "Dark"] }] }, "lilligant": { "level": 86, "sets": [{ "role": "Tera Blast user", "movepool": ["Giga Drain", "Pollen Puff", "Quiver Dance", "Sleep Powder", "Tera Blast"], "teraTypes": ["Fire"] }, { "role": "Setup Sweeper", "movepool": ["Petal Dance", "Pollen Puff", "Quiver Dance", "Sleep Powder"], "teraTypes": ["Grass"] }] }, "lilliganthisui": { "level": 80, "sets": [{ "role": "Setup Sweeper", "movepool": ["Close Combat", "Ice Spinner", "Leaf Blade", "Sleep Powder", "Victory Dance"], "teraTypes": ["Fighting"] }, { "role": "Fast Support", "movepool": ["Close Combat", "Defog", "Ice Spinner", "Leaf Blade", "Sleep Powder"], "teraTypes": ["Fighting"] }] }, "basculin": { "level": 86, "sets": [{ "role": "Wallbreaker", "movepool": ["Aqua Jet", "Crunch", "Head Smash", "Psychic Fangs", "Wave Crash"], "teraTypes": ["Water"] }] }, "basculinbluestriped": { "level": 86, "sets": [{ "role": "Wallbreaker", "movepool": ["Aqua Jet", "Crunch", "Head Smash", "Psychic Fangs", "Wave Crash"], "teraTypes": ["Water"] }] }, "basculegion": { "level": 74, "sets": [{ "role": "Fast Attacker", "movepool": ["Agility", "Last Respects", "Psychic Fangs", "Wave Crash"], "teraTypes": ["Ghost"] }] }, "basculegionf": { "level": 74, "sets": [{ "role": "Wallbreaker", "movepool": ["Agility", "Hydro Pump", "Ice Beam", "Last Respects"], "teraTypes": ["Ghost"] }] }, "krookodile": { "level": 83, "sets": [{ "role": "Fast Attacker", "movepool": ["Bulk Up", "Crunch", "Earthquake", "Gunk Shot", "Stealth Rock", "Stone Edge"], "teraTypes": ["Poison", "Ground"] }] }, "zoroark": { "sets": [{ "role": "Fast Attacker", "movepool": ["Dark Pulse", "Flamethrower", "Focus Blast", "Nasty Plot", "Sludge Bomb", "Trick", "U-turn"], "teraTypes": ["Poison"] }] }, "zoroarkhisui": { "sets": [{ "role": "Wallbreaker", "movepool": ["Bitter Malice", "Flamethrower", "Focus Blast", "Hyper Voice", "Nasty Plot", "Shadow Ball", "Trick", "U-turn"], "teraTypes": ["Normal"] }] }, "gothitelle": { "level": 82, "sets": [{ "role": "Bulky Attacker", "movepool": ["Nasty Plot", "Psychic", "Shadow Ball", "Thunderbolt", "Trick"], "teraTypes": ["Psychic", "Ghost", "Electric"] }] }, "sawsbuck": { "level": 88, "sets": [{ "role": "Setup Sweeper", "movepool": ["Double-Edge", "Headbutt", "Horn Leech", "Stomping Tantrum", "Swords Dance"], "teraTypes": ["Normal"] }] }, "amoonguss": { "level": 82, "sets": [{ "role": "Bulky Support", "movepool": ["Clear Smog", "Giga Drain", "Sludge Bomb", "Spore", "Toxic"], "teraTypes": ["Steel", "Water"] }] }, "alomomola": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Body Slam", "Liquidation", "Mirror Coat", "Protect", "Wish"], "teraTypes": ["Steel"] }] }, "eelektross": { "level": 86, "sets": [{ "role": "Bulky Setup", "movepool": ["Coil", "Drain Punch", "Fire Punch", "Liquidation", "Wild Charge"], "teraTypes": ["Electric", "Fighting"] }, { "role": "AV Pivot", "movepool": ["Close Combat", "Flamethrower", "Giga Drain", "Thunderbolt", "U-turn"], "teraTypes": ["Electric"] }] }, "haxorus": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Dragon Dance", "Earthquake", "Outrage", "Poison Jab"], "teraTypes": ["Fighting", "Ground"] }] }, "beartic": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Aqua Jet", "Close Combat", "Earthquake", "Icicle Crash", "Snowscape", "Swords Dance"], "teraTypes": ["Fighting", "Ice", "Ground"] }] }, "cryogonal": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Flash Cannon", "Freeze-Dry", "Haze", "Rapid Spin", "Recover"], "teraTypes": ["Steel"] }] }, "braviary": { "level": 86, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Brave Bird", "Bulk Up", "Close Combat", "Roost"], "teraTypes": ["Flying", "Fighting"] }] }, "braviaryhisui": { "level": 81, "sets": [{ "role": "Fast Support", "movepool": ["Calm Mind", "Defog", "Heat Wave", "Hurricane", "Psychic"], "teraTypes": ["Psychic", "Flying"] }, { "role": "Wallbreaker", "movepool": ["Calm Mind", "Esper Wing", "Heat Wave", "Hurricane", "U-turn"], "teraTypes": ["Psychic", "Flying"] }] }, "hydreigon": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Dark Pulse", "Draco Meteor", "Fire Blast", "Flash Cannon", "Nasty Plot", "U-turn"], "teraTypes": ["Dark", "Dragon", "Fire", "Steel"] }] }, "volcarona": { "level": 80, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Bug Buzz", "Fiery Dance", "Fire Blast", "Giga Drain", "Morning Sun", "Quiver Dance"], "teraTypes": ["Fire", "Grass", "Water"] }] }, "tornadus": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Bleakwind Storm", "Focus Blast", "Grass Knot", "Heat Wave", "Nasty Plot", "U-turn"], "teraTypes": ["Flying", "Fire"] }] }, "tornadustherian": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Bleakwind Storm", "Focus Blast", "Grass Knot", "Heat Wave", "Nasty Plot", "U-turn"], "teraTypes": ["Flying", "Fire"] }] }, "thundurus": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Focus Blast", "Grass Knot", "Nasty Plot", "Sludge Bomb", "Taunt", "Thunder Wave", "Thunderbolt", "U-turn"], "teraTypes": ["Electric", "Grass"] }, { "role": "Tera Blast user", "movepool": ["Focus Blast", "Nasty Plot", "Tera Blast", "Thunderbolt"], "teraTypes": ["Flying"] }] }, "thundurustherian": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Focus Blast", "Grass Knot", "Nasty Plot", "Psychic", "Sludge Bomb", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric", "Psychic", "Poison"] }, { "role": "Tera Blast user", "movepool": ["Focus Blast", "Nasty Plot", "Tera Blast", "Thunderbolt"], "teraTypes": ["Flying"] }] }, "landorus": { "level": 76, "sets": [{ "role": "Fast Attacker", "movepool": ["Earth Power", "Focus Blast", "Nasty Plot", "Psychic", "Rock Slide", "Sludge Bomb", "Stealth Rock"], "teraTypes": ["Ground", "Psychic", "Poison"] }] }, "landorustherian": { "level": 78, "sets": [{ "role": "Fast Support", "movepool": ["Earthquake", "Stealth Rock", "Stone Edge", "Taunt", "U-turn"], "teraTypes": ["Ground"] }, { "role": "Tera Blast user", "movepool": ["Earthquake", "Stone Edge", "Swords Dance", "Tera Blast"], "teraTypes": ["Flying"] }] }, "meloetta": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Calm Mind", "Focus Blast", "Hyper Voice", "Psyshock", "U-turn"], "teraTypes": ["Normal", "Psychic", "Fighting"] }] }, "chesnaught": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Body Press", "Leech Seed", "Spikes", "Spiky Shield", "Synthesis", "Wood Hammer"], "teraTypes": ["Steel", "Water"] }, { "role": "Bulky Setup", "movepool": ["Body Press", "Iron Defense", "Synthesis", "Trailblaze"], "teraTypes": ["Steel"] }] }, "delphox": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Fire Blast", "Grass Knot", "Nasty Plot", "Psyshock", "Switcheroo"], "teraTypes": ["Fire", "Psychic"] }] }, "greninja": { "level": 81, "sets": [{ "role": "Fast Attacker", "movepool": ["Dark Pulse", "Grass Knot", "Gunk Shot", "Hydro Pump", "Ice Beam", "Toxic Spikes", "U-turn"], "teraTypes": ["Water", "Dark", "Poison"] }] }, "talonflame": { "level": 85, "sets": [{ "role": "Bulky Support", "movepool": ["Brave Bird", "Defog", "Overheat", "Roost", "Taunt", "U-turn", "Will-O-Wisp"], "teraTypes": ["Water", "Ground"] }, { "role": "Tera Blast user", "movepool": ["Brave Bird", "Flare Blitz", "Swords Dance", "Tera Blast"], "teraTypes": ["Ground"] }] }, "vivillon": { "level": 86, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Bug Buzz", "Energy Ball", "Hurricane", "Quiver Dance", "Sleep Powder", "Substitute"], "teraTypes": ["Flying"] }, { "role": "Tera Blast user", "movepool": ["Hurricane", "Quiver Dance", "Sleep Powder", "Substitute", "Tera Blast"], "teraTypes": ["Ground"] }] }, "pyroar": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Dark Pulse", "Fire Blast", "Hyper Voice", "Will-O-Wisp", "Work Up"], "teraTypes": ["Fire"] }] }, "florges": { "level": 85, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Moonblast", "Protect", "Wish"], "teraTypes": ["Steel"] }] }, "gogoat": { "level": 87, "sets": [{ "role": "Bulky Setup", "movepool": ["Bulk Up", "Earthquake", "Horn Leech", "Milk Drink"], "teraTypes": ["Ground"] }] }, "dragalge": { "level": 84, "sets": [{ "role": "Bulky Attacker", "movepool": ["Draco Meteor", "Focus Blast", "Sludge Bomb", "Thunderbolt", "Toxic", "Toxic Spikes"], "teraTypes": ["Dragon", "Poison"] }] }, "clawitzer": { "level": 86, "sets": [{ "role": "Wallbreaker", "movepool": ["Aura Sphere", "Dark Pulse", "Dragon Pulse", "U-turn", "Water Pulse"], "teraTypes": ["Dark", "Dragon", "Fighting"] }] }, "sylveon": { "level": 82, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Hyper Voice", "Protect", "Wish"], "teraTypes": ["Fairy", "Steel"] }, { "role": "Tera Blast user", "movepool": ["Calm Mind", "Hyper Voice", "Tera Blast", "Trailblaze"], "teraTypes": ["Ground"] }] }, "hawlucha": { "level": 82, "sets": [{ "role": "Setup Sweeper", "movepool": ["Acrobatics", "Brave Bird", "Close Combat", "Stone Edge", "Swords Dance"], "teraTypes": ["Fighting", "Flying"] }] }, "dedenne": { "level": 88, "sets": [{ "role": "Fast Support", "movepool": ["Dazzling Gleam", "Nuzzle", "Super Fang", "Thunderbolt", "U-turn"], "teraTypes": ["Electric"] }] }, "carbink": { "level": 88, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Press", "Moonblast", "Power Gem", "Spikes", "Stealth Rock"], "teraTypes": ["Fighting"] }, { "role": "Bulky Support", "movepool": ["Body Press", "Light Screen", "Moonblast", "Reflect", "Stealth Rock"], "teraTypes": ["Water", "Steel"] }] }, "goodra": { "level": 86, "sets": [{ "role": "Bulky Attacker", "movepool": ["Draco Meteor", "Earthquake", "Fire Blast", "Power Whip", "Sludge Bomb", "Thunderbolt"], "teraTypes": ["Dragon", "Ground", "Fire", "Grass", "Poison", "Electric"] }] }, "goodrahisui": { "level": 85, "sets": [{ "role": "AV Pivot", "movepool": ["Draco Meteor", "Dragon Tail", "Earthquake", "Fire Blast", "Heavy Slam", "Hydro Pump", "Thunderbolt"], "teraTypes": ["Dragon", "Ground", "Fire", "Steel", "Water", "Electric"] }, { "role": "Bulky Setup", "movepool": ["Body Press", "Curse", "Heavy Slam", "Rest"], "teraTypes": ["Fighting"] }] }, "klefki": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Foul Play", "Magnet Rise", "Play Rough", "Spikes", "Thunder Wave"], "teraTypes": ["Water"] }] }, "avalugg": { "level": 86, "sets": [{ "role": "Bulky Attacker", "movepool": ["Avalanche", "Body Press", "Curse", "Rapid Spin", "Recover"], "teraTypes": ["Fighting"] }] }, "avalugghisui": { "level": 88, "sets": [{ "role": "Bulky Attacker", "movepool": ["Avalanche", "Body Press", "Curse", "Recover", "Stone Edge"], "teraTypes": ["Poison", "Flying"] }] }, "noivern": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Boomburst", "Draco Meteor", "Flamethrower", "Hurricane", "Roost", "U-turn"], "teraTypes": ["Normal"] }, { "role": "Fast Support", "movepool": ["Defog", "Draco Meteor", "Flamethrower", "Hurricane", "Roost", "U-turn"], "teraTypes": ["Fire"] }] }, "diancie": { "level": 84, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Press", "Diamond Storm", "Earth Power", "Moonblast", "Stealth Rock"], "teraTypes": ["Fighting"] }] }, "hoopa": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Focus Blast", "Nasty Plot", "Psyshock", "Shadow Ball", "Substitute", "Trick"], "teraTypes": ["Psychic", "Ghost", "Fighting"] }] }, "hoopaunbound": { "level": 80, "sets": [{ "role": "Wallbreaker", "movepool": ["Drain Punch", "Gunk Shot", "Hyperspace Fury", "Trick", "Zen Headbutt"], "teraTypes": ["Dark", "Fighting", "Poison"] }, { "role": "Fast Attacker", "movepool": ["Dark Pulse", "Focus Blast", "Nasty Plot", "Psyshock", "Trick"], "teraTypes": ["Dark", "Fighting", "Psychic"] }, { "role": "AV Pivot", "movepool": ["Focus Blast", "Gunk Shot", "Hyperspace Fury", "Psychic"], "teraTypes": ["Dark", "Fighting", "Psychic", "Poison"] }] }, "volcanion": { "level": 82, "sets": [{ "role": "Bulky Attacker", "movepool": ["Earth Power", "Flame Charge", "Flamethrower", "Sludge Bomb", "Steam Eruption"], "teraTypes": ["Water", "Fire", "Ground"] }] }, "decidueye": { "level": 86, "sets": [{ "role": "Fast Support", "movepool": ["Defog", "Knock Off", "Leaf Storm", "Roost", "Spirit Shackle", "U-turn"], "teraTypes": ["Dark", "Ghost", "Grass"] }, { "role": "Setup Sweeper", "movepool": ["Leaf Blade", "Shadow Sneak", "Spirit Shackle", "Swords Dance"], "teraTypes": ["Ghost"] }] }, "decidueyehisui": { "level": 88, "sets": [{ "role": "Bulky Attacker", "movepool": ["Defog", "Leaf Blade", "Sucker Punch", "Swords Dance", "Synthesis", "Triple Arrows", "U-turn"], "teraTypes": ["Fighting", "Steel"] }] }, "gumshoos": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Body Slam", "Crunch", "Earthquake", "Psychic Fangs", "U-turn"], "teraTypes": ["Ground"] }] }, "crabominable": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Close Combat", "Drain Punch", "Earthquake", "Gunk Shot", "Ice Hammer"], "teraTypes": ["Fighting", "Ground"] }] }, "oricorio": { "level": 83, "sets": [{ "role": "Setup Sweeper", "movepool": ["Hurricane", "Quiver Dance", "Revelation Dance", "Roost", "Substitute"], "teraTypes": ["Ground"] }, { "role": "Fast Support", "movepool": ["Defog", "Hurricane", "Revelation Dance", "Roost"], "teraTypes": ["Ground"] }] }, "oricoriopompom": { "level": 83, "sets": [{ "role": "Setup Sweeper", "movepool": ["Hurricane", "Quiver Dance", "Revelation Dance", "Roost", "Substitute"], "teraTypes": ["Electric", "Ground"] }, { "role": "Fast Support", "movepool": ["Defog", "Hurricane", "Revelation Dance", "Roost"], "teraTypes": ["Electric"] }] }, "oricoriopau": { "level": 83, "sets": [{ "role": "Setup Sweeper", "movepool": ["Hurricane", "Quiver Dance", "Revelation Dance", "Roost", "Substitute"], "teraTypes": ["Ground"] }, { "role": "Fast Support", "movepool": ["Defog", "Hurricane", "Revelation Dance", "Roost"], "teraTypes": ["Ground"] }] }, "oricoriosensu": { "level": 83, "sets": [{ "role": "Setup Sweeper", "movepool": ["Hurricane", "Quiver Dance", "Revelation Dance", "Roost", "Substitute"], "teraTypes": ["Ghost", "Fighting"] }, { "role": "Fast Support", "movepool": ["Defog", "Hurricane", "Revelation Dance", "Roost"], "teraTypes": ["Ghost"] }] }, "lycanroc": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Accelerock", "Close Combat", "Crunch", "Drill Run", "Psychic Fangs", "Stealth Rock", "Stone Edge", "Swords Dance", "Taunt"], "teraTypes": ["Fighting"] }] }, "lycanrocmidnight": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Psychic Fangs", "Stealth Rock", "Stone Edge", "Swords Dance"], "teraTypes": ["Rock", "Fighting"] }] }, "lycanrocdusk": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Accelerock", "Close Combat", "Crunch", "Drill Run", "Psychic Fangs", "Stone Edge", "Swords Dance"], "teraTypes": ["Fighting"] }] }, "toxapex": { "level": 82, "sets": [{ "role": "Bulky Support", "movepool": ["Haze", "Liquidation", "Recover", "Toxic", "Toxic Spikes"], "teraTypes": ["Steel", "Flying", "Grass", "Fairy"] }] }, "mudsdale": { "level": 86, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Press", "Earthquake", "Heavy Slam", "Stealth Rock", "Stone Edge"], "teraTypes": ["Fighting"] }] }, "lurantis": { "level": 89, "sets": [{ "role": "Bulky Attacker", "movepool": ["Defog", "Leaf Storm", "Pollen Puff", "Synthesis"], "teraTypes": ["Steel", "Water"] }] }, "salazzle": { "level": 82, "sets": [{ "role": "Fast Support", "movepool": ["Flamethrower", "Protect", "Substitute", "Toxic"], "teraTypes": ["Water", "Flying"] }] }, "tsareena": { "level": 84, "sets": [{ "role": "Fast Support", "movepool": ["High Jump Kick", "Play Rough", "Power Whip", "Rapid Spin", "Synthesis", "U-turn"], "teraTypes": ["Fighting", "Grass"] }] }, "oranguru": { "level": 88, "sets": [{ "role": "Bulky Attacker", "movepool": ["Focus Blast", "Nasty Plot", "Psychic", "Psyshock", "Thunderbolt"], "teraTypes": ["Psychic", "Electric", "Fighting"] }, { "role": "Wallbreaker", "movepool": ["Focus Blast", "Hyper Voice", "Psyshock", "Thunderbolt", "Trick", "Trick Room"], "teraTypes": ["Psychic", "Electric", "Fighting"] }] }, "passimian": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Gunk Shot", "Knock Off", "Rock Slide", "U-turn"], "teraTypes": ["Dark"] }] }, "palossand": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Earth Power", "Hypnosis", "Shadow Ball", "Shore Up", "Stealth Rock"], "teraTypes": ["Water"] }] }, "komala": { "level": 89, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Slam", "Earthquake", "Gunk Shot", "Play Rough", "Rapid Spin", "Sucker Punch", "Superpower", "U-turn", "Wood Hammer"], "teraTypes": ["Normal", "Ground", "Poison", "Fairy", "Fighting", "Grass"] }] }, "mimikyu": { "level": 85, "sets": [{ "role": "Setup Sweeper", "movepool": ["Drain Punch", "Play Rough", "Shadow Claw", "Shadow Sneak", "Swords Dance", "Wood Hammer"], "teraTypes": ["Fighting", "Grass", "Fairy", "Ghost"] }] }, "bruxish": { "level": 85, "sets": [{ "role": "Fast Attacker", "movepool": ["Aqua Jet", "Crunch", "Ice Fang", "Psychic Fangs", "Swords Dance", "Wave Crash"], "teraTypes": ["Dark", "Psychic"] }] }, "magearna": { "level": 80, "sets": [{ "role": "Bulky Attacker", "movepool": ["Aura Sphere", "Flash Cannon", "Fleur Cannon", "Ice Beam", "Pain Split", "Spikes", "Volt Switch"], "teraTypes": ["Fairy", "Steel", "Fighting", "Water"] }, { "role": "Bulky Setup", "movepool": ["Agility", "Calm Mind", "Flash Cannon", "Fleur Cannon"], "teraTypes": ["Water", "Steel", "Fairy", "Flying"] }, { "role": "Tera Blast user", "movepool": ["Fleur Cannon", "Iron Head", "Shift Gear", "Tera Blast", "Thunderbolt"], "teraTypes": ["Ground"] }] }, "rillaboom": { "level": 83, "sets": [{ "role": "Setup Sweeper", "movepool": ["Acrobatics", "Knock Off", "Stomping Tantrum", "Swords Dance", "Wood Hammer"], "teraTypes": ["Flying", "Grass"] }, { "role": "Fast Attacker", "movepool": ["Knock Off", "Stomping Tantrum", "U-turn", "Wood Hammer"], "teraTypes": ["Grass"] }] }, "cinderace": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Court Change", "Gunk Shot", "High Jump Kick", "Pyro Ball", "Sucker Punch", "U-turn"], "teraTypes": ["Fire", "Fighting", "Poison"] }] }, "inteleon": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Air Slash", "Dark Pulse", "Hydro Pump", "Ice Beam", "Surf", "U-turn"], "teraTypes": ["Water"] }, { "role": "Tera Blast user", "movepool": ["Hydro Pump", "Ice Beam", "Tera Blast", "U-turn"], "teraTypes": ["Electric"] }] }, "greedent": { "level": 88, "sets": [{ "role": "Bulky Setup", "movepool": ["Body Slam", "Crunch", "Earthquake", "Fire Fang", "Psychic Fangs", "Swords Dance"], "teraTypes": ["Ground", "Psychic"] }] }, "corviknight": { "level": 80, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Press", "Brave Bird", "Bulk Up", "Defog", "Roost"], "teraTypes": ["Fighting"] }] }, "drednaw": { "level": 80, "sets": [{ "role": "Setup Sweeper", "movepool": ["Crunch", "Earthquake", "Liquidation", "Shell Smash", "Stone Edge"], "teraTypes": ["Water", "Ground", "Dark"] }] }, "coalossal": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Overheat", "Rapid Spin", "Spikes", "Stealth Rock", "Stone Edge", "Will-O-Wisp"], "teraTypes": ["Water"] }] }, "flapple": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Dragon Dance", "Grav Apple", "Outrage", "Sucker Punch", "U-turn"], "teraTypes": ["Dragon", "Grass"] }] }, "appletun": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Apple Acid", "Draco Meteor", "Dragon Pulse", "Leech Seed", "Recover"], "teraTypes": ["Grass", "Steel"] }] }, "sandaconda": { "level": 86, "sets": [{ "role": "Bulky Setup", "movepool": ["Coil", "Earthquake", "Glare", "Rest", "Stone Edge"], "teraTypes": ["Ground"] }, { "role": "Bulky Support", "movepool": ["Earthquake", "Glare", "Rest", "Stealth Rock", "Stone Edge"], "teraTypes": ["Ground"] }] }, "barraskewda": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Aqua Jet", "Close Combat", "Crunch", "Liquidation", "Poison Jab", "Psychic Fangs"], "teraTypes": ["Fighting"] }] }, "toxtricity": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Boomburst", "Overdrive", "Shift Gear", "Sludge Bomb", "Volt Switch"], "teraTypes": ["Normal"] }] }, "toxtricitylowkey": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Boomburst", "Overdrive", "Sludge Bomb", "Toxic Spikes", "Volt Switch"], "teraTypes": ["Normal"] }] }, "polteageist": { "level": 80, "sets": [{ "role": "Tera Blast user", "movepool": ["Giga Drain", "Shadow Ball", "Shell Smash", "Stored Power", "Strength Sap", "Tera Blast"], "teraTypes": ["Fighting"] }, { "role": "Setup Sweeper", "movepool": ["Giga Drain", "Shadow Ball", "Shell Smash", "Stored Power", "Strength Sap"], "teraTypes": ["Psychic"] }] }, "hatterene": { "level": 84, "sets": [{ "role": "Wallbreaker", "movepool": ["Dazzling Gleam", "Mystical Fire", "Psychic", "Psyshock", "Trick", "Trick Room"], "teraTypes": ["Psychic", "Fairy", "Fire"] }] }, "grimmsnarl": { "level": 82, "sets": [{ "role": "Bulky Support", "movepool": ["Light Screen", "Parting Shot", "Reflect", "Spirit Break", "Thunder Wave"], "teraTypes": ["Fairy"] }, { "role": "Fast Bulky Setup", "movepool": ["Bulk Up", "Crunch", "Rest", "Spirit Break", "Sucker Punch", "Thunder Wave"], "teraTypes": ["Dark"] }, { "role": "Bulky Attacker", "movepool": ["Parting Shot", "Spirit Break", "Sucker Punch", "Taunt", "Thunder Wave"], "teraTypes": ["Fairy"] }] }, "perrserker": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Close Combat", "Crunch", "Iron Head", "Stealth Rock", "U-turn"], "teraTypes": ["Steel", "Fighting"] }] }, "falinks": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Megahorn", "No Retreat", "Poison Jab", "Rock Slide"], "teraTypes": ["Fighting"] }] }, "pincurchin": { "level": 88, "sets": [{ "role": "Bulky Attacker", "movepool": ["Discharge", "Liquidation", "Spikes", "Sucker Punch", "Toxic Spikes"], "teraTypes": ["Electric", "Water"] }] }, "frosmoth": { "level": 85, "sets": [{ "role": "Tera Blast user", "movepool": ["Bug Buzz", "Giga Drain", "Hurricane", "Ice Beam", "Quiver Dance", "Tera Blast"], "teraTypes": ["Ground"] }, { "role": "Setup Sweeper", "movepool": ["Bug Buzz", "Giga Drain", "Hurricane", "Ice Beam", "Quiver Dance"], "teraTypes": ["Water"] }] }, "stonjourner": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Earthquake", "Heavy Slam", "Rock Polish", "Stealth Rock", "Stone Edge"], "teraTypes": ["Ground"] }] }, "eiscue": { "level": 85, "sets": [{ "role": "Setup Sweeper", "movepool": ["Belly Drum", "Ice Spinner", "Iron Head", "Liquidation", "Substitute", "Zen Headbutt"], "teraTypes": ["Water"] }, { "role": "Tera Blast user", "movepool": ["Belly Drum", "Ice Spinner", "Liquidation", "Substitute", "Tera Blast"], "teraTypes": ["Ground"] }] }, "indeedee": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Calm Mind", "Dazzling Gleam", "Healing Wish", "Hyper Voice", "Psychic", "Psyshock", "Shadow Ball"], "teraTypes": ["Psychic"] }] }, "indeedeef": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Calm Mind", "Dazzling Gleam", "Healing Wish", "Hyper Voice", "Psychic", "Psyshock", "Shadow Ball"], "teraTypes": ["Psychic"] }] }, "copperajah": { "level": 86, "sets": [{ "role": "Wallbreaker", "movepool": ["Earthquake", "Iron Head", "Play Rough", "Rock Slide", "Stealth Rock", "Superpower"], "teraTypes": ["Steel", "Fairy"] }] }, "dragapult": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Draco Meteor", "Fire Blast", "Shadow Ball", "Thunderbolt", "U-turn"], "teraTypes": ["Ghost", "Dragon"] }, { "role": "Tera Blast user", "movepool": ["Dragon Dance", "Dragon Darts", "Fire Blast", "Tera Blast"], "teraTypes": ["Ghost"] }] }, "zacian": { "level": 71, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Crunch", "Play Rough", "Psychic Fangs", "Swords Dance", "Wild Charge"], "teraTypes": ["Fighting"] }] }, "zaciancrowned": { "level": 69, "sets": [{ "role": "Setup Sweeper", "movepool": ["Behemoth Blade", "Close Combat", "Play Rough", "Swords Dance"], "teraTypes": ["Fighting"] }] }, "zamazenta": { "level": 72, "sets": [{ "role": "Bulky Attacker", "movepool": ["Close Combat", "Crunch", "Iron Head", "Psychic Fangs", "Stone Edge", "Wild Charge"], "teraTypes": ["Fighting", "Dark"] }, { "role": "Bulky Setup", "movepool": ["Body Press", "Crunch", "Iron Defense", "Iron Head", "Rest", "Stone Edge"], "teraTypes": ["Fighting"] }] }, "zamazentacrowned": { "level": 72, "sets": [{ "role": "Bulky Setup", "movepool": ["Behemoth Bash", "Body Press", "Crunch", "Iron Defense", "Psychic Fangs", "Stone Edge"], "teraTypes": ["Fighting"] }] }, "eternatus": { "level": 72, "sets": [{ "role": "Bulky Attacker", "movepool": ["Dynamax Cannon", "Fire Blast", "Recover", "Sludge Bomb"], "teraTypes": ["Dragon"] }, { "role": "Bulky Support", "movepool": ["Dynamax Cannon", "Flamethrower", "Recover", "Toxic", "Toxic Spikes"], "teraTypes": ["Dragon"] }] }, "urshifu": { "level": 77, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Poison Jab", "Sucker Punch", "Swords Dance", "U-turn", "Wicked Blow"], "teraTypes": ["Dark", "Fighting"] }] }, "urshifurapidstrike": { "level": 79, "sets": [{ "role": "Fast Attacker", "movepool": ["Aqua Jet", "Close Combat", "Ice Spinner", "Surging Strikes", "Swords Dance", "U-turn"], "teraTypes": ["Water"] }] }, "zarude": { "level": 82, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Close Combat", "Crunch", "Power Whip", "Swords Dance", "Synthesis"], "teraTypes": ["Dark", "Grass", "Fighting"] }, { "role": "Fast Attacker", "movepool": ["Close Combat", "Crunch", "Power Whip", "U-turn"], "teraTypes": ["Dark", "Grass", "Fighting"] }] }, "regieleki": { "level": 80, "sets": [{ "role": "Fast Support", "movepool": ["Explosion", "Rapid Spin", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric"] }, { "role": "Tera Blast user", "movepool": ["Rapid Spin", "Tera Blast", "Thunderbolt", "Volt Switch"], "teraTypes": ["Ice"] }] }, "regidrago": { "level": 83, "sets": [{ "role": "Bulky Attacker", "movepool": ["Draco Meteor", "Dragon Dance", "Earthquake", "Fire Fang", "Outrage"], "teraTypes": ["Dragon"] }, { "role": "Tera Blast user", "movepool": ["Dragon Claw", "Dragon Dance", "Earthquake", "Tera Blast"], "teraTypes": ["Steel"] }] }, "glastrier": { "level": 86, "sets": [{ "role": "Bulky Attacker", "movepool": ["Close Combat", "Crunch", "Heavy Slam", "Icicle Crash", "Stomping Tantrum", "Swords Dance"], "teraTypes": ["Fighting", "Steel"] }] }, "spectrier": { "level": 75, "sets": [{ "role": "Setup Sweeper", "movepool": ["Dark Pulse", "Nasty Plot", "Shadow Ball", "Substitute", "Will-O-Wisp"], "teraTypes": ["Ghost", "Dark"] }, { "role": "Tera Blast user", "movepool": ["Nasty Plot", "Shadow Ball", "Substitute", "Tera Blast", "Will-O-Wisp"], "teraTypes": ["Fighting"] }] }, "calyrex": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Calm Mind", "Encore", "Giga Drain", "Leech Seed", "Psychic", "Psyshock"], "teraTypes": ["Steel"] }] }, "calyrexice": { "level": 74, "sets": [{ "role": "Wallbreaker", "movepool": ["Agility", "Close Combat", "Glacial Lance", "Stomping Tantrum", "Trick Room", "Zen Headbutt"], "teraTypes": ["Fighting"] }] }, "calyrexshadow": { "level": 67, "sets": [{ "role": "Fast Attacker", "movepool": ["Astral Barrage", "Nasty Plot", "Pollen Puff", "Psyshock", "Trick"], "teraTypes": ["Ghost"] }] }, "wyrdeer": { "level": 87, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Slam", "Earthquake", "Megahorn", "Psychic", "Thunder Wave", "Thunderbolt"], "teraTypes": ["Ground"] }] }, "kleavor": { "level": 85, "sets": [{ "role": "Bulky Attacker", "movepool": ["Close Combat", "Defog", "Stone Axe", "Swords Dance", "U-turn", "X-Scissor"], "teraTypes": ["Bug", "Rock", "Fighting"] }] }, "ursaluna": { "level": 80, "sets": [{ "role": "Bulky Attacker", "movepool": ["Crunch", "Facade", "Headlong Rush", "Protect", "Swords Dance"], "teraTypes": ["Normal"] }] }, "enamorus": { "level": 81, "sets": [{ "role": "Tera Blast user", "movepool": ["Play Rough", "Superpower", "Taunt", "Tera Blast"], "teraTypes": ["Flying"] }, { "role": "Fast Bulky Setup", "movepool": ["Calm Mind", "Earth Power", "Moonblast", "Substitute"], "teraTypes": ["Ground"] }] }, "enamorustherian": { "level": 84, "sets": [{ "role": "Bulky Attacker", "movepool": ["Earth Power", "Healing Wish", "Moonblast", "Mystical Fire", "Psychic", "Superpower"], "teraTypes": ["Fairy", "Ground"] }] }, "meowscarada": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Flower Trick", "Knock Off", "Thunder Punch", "Toxic Spikes", "U-turn"], "teraTypes": ["Grass", "Dark"] }] }, "skeledirge": { "level": 81, "sets": [{ "role": "Bulky Attacker", "movepool": ["Flame Charge", "Shadow Ball", "Slack Off", "Torch Song"], "teraTypes": ["Fire", "Water"] }, { "role": "Bulky Support", "movepool": ["Hex", "Slack Off", "Torch Song", "Will-O-Wisp"], "teraTypes": ["Ghost", "Water"] }] }, "quaquaval": { "level": 79, "sets": [{ "role": "Fast Support", "movepool": ["Aqua Step", "Close Combat", "Ice Spinner", "Rapid Spin", "Roost", "U-turn"], "teraTypes": ["Water", "Fighting"] }, { "role": "Setup Sweeper", "movepool": ["Aqua Step", "Close Combat", "Ice Spinner", "Roost", "Swords Dance"], "teraTypes": ["Water", "Fighting"] }] }, "oinkologne": { "level": 90, "sets": [{ "role": "Bulky Setup", "movepool": ["Body Press", "Body Slam", "Stomping Tantrum", "Stuff Cheeks"], "teraTypes": ["Fighting"] }] }, "oinkolognef": { "level": 90, "sets": [{ "role": "Bulky Setup", "movepool": ["Body Press", "Body Slam", "Stomping Tantrum", "Stuff Cheeks"], "teraTypes": ["Fighting"] }] }, "dudunsparce": { "level": 85, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Glare", "Headbutt", "Roost"], "teraTypes": ["Ghost", "Ground"] }, { "role": "Bulky Setup", "movepool": ["Boomburst", "Calm Mind", "Earth Power", "Roost", "Shadow Ball"], "teraTypes": ["Ghost"] }] }, "dudunsparcethreesegment": { "level": 85, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Glare", "Headbutt", "Roost"], "teraTypes": ["Ghost", "Ground"] }, { "role": "Bulky Setup", "movepool": ["Boomburst", "Calm Mind", "Earth Power", "Roost", "Shadow Ball"], "teraTypes": ["Ghost"] }] }, "spidops": { "level": 90, "sets": [{ "role": "Bulky Support", "movepool": ["Circle Throw", "Memento", "Spikes", "Sticky Web", "Toxic Spikes"], "teraTypes": ["Ghost"] }] }, "lokix": { "level": 82, "sets": [{ "role": "Wallbreaker", "movepool": ["Axe Kick", "First Impression", "Leech Life", "Sucker Punch"], "teraTypes": ["Bug"] }, { "role": "Fast Attacker", "movepool": ["Axe Kick", "First Impression", "Sucker Punch", "U-turn"], "teraTypes": ["Bug"] }, { "role": "Setup Sweeper", "movepool": ["Leech Life", "Sucker Punch", "Swords Dance", "Throat Chop"], "teraTypes": ["Dark"] }] }, "rabsca": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Bug Buzz", "Earth Power", "Psychic", "Revival Blessing", "Trick Room"], "teraTypes": ["Steel"] }] }, "houndstone": { "level": 76, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Press", "Last Respects", "Trick", "Will-O-Wisp"], "teraTypes": ["Ghost"] }] }, "espathra": { "level": 79, "sets": [{ "role": "Wallbreaker", "movepool": ["Dazzling Gleam", "Lumina Crash", "Shadow Ball", "U-turn"], "teraTypes": ["Psychic", "Fairy", "Ghost"] }, { "role": "Fast Bulky Setup", "movepool": ["Calm Mind", "Dazzling Gleam", "Protect", "Roost", "Stored Power", "Substitute"], "teraTypes": ["Fairy"] }, { "role": "Tera Blast user", "movepool": ["Dazzling Gleam", "Lumina Crash", "Roost", "Tera Blast"], "teraTypes": ["Fire"] }] }, "farigiraf": { "level": 87, "sets": [{ "role": "Bulky Support", "movepool": ["Foul Play", "Hyper Voice", "Protect", "Wish"], "teraTypes": ["Dark"] }, { "role": "Bulky Attacker", "movepool": ["Future Sight", "Hyper Voice", "Protect", "Wish"], "teraTypes": ["Ground", "Water", "Fairy"] }, { "role": "AV Pivot", "movepool": ["Dazzling Gleam", "Earthquake", "Foul Play", "Future Sight", "Hyper Voice", "Psychic"], "teraTypes": ["Dark"] }] }, "wugtrio": { "level": 87, "sets": [{ "role": "Fast Attacker", "movepool": ["Aqua Jet", "Liquidation", "Memento", "Stomping Tantrum", "Sucker Punch", "Throat Chop"], "teraTypes": ["Water", "Dark"] }] }, "dondozo": { "level": 80, "sets": [{ "role": "Bulky Setup", "movepool": ["Curse", "Liquidation", "Rest", "Sleep Talk", "Wave Crash"], "teraTypes": ["Fairy", "Ground", "Dragon"] }] }, "veluza": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Aqua Cutter", "Aqua Jet", "Night Slash", "Psycho Cut"], "teraTypes": ["Water"] }, { "role": "Setup Sweeper", "movepool": ["Aqua Cutter", "Fillet Away", "Night Slash", "Psycho Cut"], "teraTypes": ["Water", "Psychic", "Dark"] }] }, "palafin": { "level": 77, "sets": [{ "role": "Bulky Attacker", "movepool": ["Bulk Up", "Close Combat", "Flip Turn", "Ice Punch", "Jet Punch", "Wave Crash"], "teraTypes": ["Water", "Fighting"] }] }, "arboliva": { "level": 87, "sets": [{ "role": "Bulky Attacker", "movepool": ["Dazzling Gleam", "Earth Power", "Energy Ball", "Hyper Voice", "Strength Sap"], "teraTypes": ["Grass", "Fairy"] }, { "role": "Bulky Support", "movepool": ["Hyper Voice", "Leech Seed", "Protect", "Substitute"], "teraTypes": ["Water"] }] }, "scovillain": { "level": 76, "sets": [{ "role": "Bulky Attacker", "movepool": ["Flamethrower", "Leech Seed", "Protect", "Substitute"], "teraTypes": ["Steel", "Water"] }] }, "bellibolt": { "level": 87, "sets": [{ "role": "Bulky Attacker", "movepool": ["Muddy Water", "Slack Off", "Thunder Wave", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric"] }] }, "revavroom": { "level": 83, "sets": [{ "role": "Tera Blast user", "movepool": ["Gunk Shot", "Iron Head", "Shift Gear", "Tera Blast"], "teraTypes": ["Water", "Ground"] }, { "role": "Fast Support", "movepool": ["Gunk Shot", "Haze", "Parting Shot", "Spin Out", "Toxic", "Toxic Spikes"], "teraTypes": ["Water"] }] }, "orthworm": { "level": 84, "sets": [{ "role": "Bulky Setup", "movepool": ["Body Press", "Coil", "Iron Tail", "Rest"], "teraTypes": ["Fighting", "Electric"] }, { "role": "Bulky Support", "movepool": ["Body Press", "Iron Head", "Rest", "Shed Tail", "Spikes", "Stealth Rock"], "teraTypes": ["Electric", "Poison"] }] }, "maushold": { "level": 78, "sets": [{ "role": "Setup Sweeper", "movepool": ["Bite", "Encore", "Population Bomb", "Tidy Up"], "teraTypes": ["Normal"] }] }, "mausholdfour": { "level": 78, "sets": [{ "role": "Setup Sweeper", "movepool": ["Bite", "Encore", "Population Bomb", "Tidy Up"], "teraTypes": ["Normal"] }] }, "cetitan": { "level": 84, "sets": [{ "role": "Wallbreaker", "movepool": ["Earthquake", "Ice Shard", "Icicle Crash", "Liquidation", "Play Rough"], "teraTypes": ["Water", "Fairy"] }, { "role": "Bulky Setup", "movepool": ["Belly Drum", "Earthquake", "Ice Shard", "Icicle Crash"], "teraTypes": ["Ice"] }] }, "baxcalibur": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Earthquake", "Glaive Rush", "Ice Shard", "Icicle Crash"], "teraTypes": ["Dragon", "Ground"] }, { "role": "Setup Sweeper", "movepool": ["Dragon Dance", "Earthquake", "Glaive Rush", "Icicle Crash"], "teraTypes": ["Dragon", "Ground"] }] }, "tatsugiri": { "level": 82, "sets": [{ "role": "Tera Blast user", "movepool": ["Draco Meteor", "Dragon Pulse", "Hydro Pump", "Nasty Plot", "Tera Blast"], "teraTypes": ["Fire"] }, { "role": "Fast Support", "movepool": ["Draco Meteor", "Hydro Pump", "Nasty Plot", "Rapid Spin", "Surf"], "teraTypes": ["Water"] }] }, "cyclizar": { "level": 80, "sets": [{ "role": "Fast Support", "movepool": ["Draco Meteor", "Rapid Spin", "Shed Tail", "Taunt"], "teraTypes": ["Dragon"] }, { "role": "Fast Attacker", "movepool": ["Double-Edge", "Draco Meteor", "Knock Off", "Shed Tail"], "teraTypes": ["Normal", "Dragon"] }] }, "pawmot": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Double Shock", "Ice Punch", "Revival Blessing", "Volt Switch"], "teraTypes": ["Electric"] }, { "role": "Fast Support", "movepool": ["Close Combat", "Ice Punch", "Nuzzle", "Revival Blessing", "Thunder Punch"], "teraTypes": ["Fighting"] }] }, "kilowattrel": { "level": 82, "sets": [{ "role": "Fast Support", "movepool": ["Hurricane", "Roost", "Thunder Wave", "Thunderbolt", "U-turn"], "teraTypes": ["Flying", "Electric"] }] }, "bombirdier": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Brave Bird", "Hone Claws", "Knock Off", "Stone Edge", "Sucker Punch", "U-turn"], "teraTypes": ["Rock"] }] }, "squawkabilly": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Brave Bird", "Facade", "Protect", "Quick Attack", "U-turn"], "teraTypes": ["Normal"] }] }, "squawkabillywhite": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Brave Bird", "Double-Edge", "Foul Play", "Parting Shot", "Quick Attack"], "teraTypes": ["Flying", "Dark", "Normal"] }] }, "squawkabillyblue": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Brave Bird", "Facade", "Protect", "Quick Attack", "U-turn"], "teraTypes": ["Normal"] }] }, "squawkabillyyellow": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Brave Bird", "Double-Edge", "Foul Play", "Parting Shot", "Quick Attack"], "teraTypes": ["Flying", "Dark", "Normal"] }] }, "flamigo": { "level": 83, "sets": [{ "role": "Wallbreaker", "movepool": ["Brave Bird", "Close Combat", "Swords Dance", "Throat Chop", "U-turn"], "teraTypes": ["Fighting"] }] }, "klawf": { "level": 83, "sets": [{ "role": "Fast Attacker", "movepool": ["Crabhammer", "High Horsepower", "Knock Off", "Stealth Rock", "Stone Edge", "Swords Dance"], "teraTypes": ["Water", "Ground", "Dark", "Rock"] }] }, "garganacl": { "level": 81, "sets": [{ "role": "Bulky Setup", "movepool": ["Body Press", "Curse", "Recover", "Stone Edge"], "teraTypes": ["Fighting"] }, { "role": "AV Pivot", "movepool": ["Avalanche", "Body Press", "Salt Cure", "Stone Edge"], "teraTypes": ["Ghost"] }, { "role": "Bulky Support", "movepool": ["Avalanche", "Body Press", "Recover", "Salt Cure", "Stealth Rock", "Stone Edge"], "teraTypes": ["Ghost"] }] }, "glimmora": { "level": 80, "sets": [{ "role": "Fast Support", "movepool": ["Earth Power", "Energy Ball", "Mortal Spin", "Power Gem", "Sludge Wave", "Spikes", "Stealth Rock", "Toxic"], "teraTypes": ["Water"] }] }, "grafaiai": { "level": 85, "sets": [{ "role": "Bulky Attacker", "movepool": ["Gunk Shot", "Knock Off", "Super Fang", "Switcheroo", "U-turn"], "teraTypes": ["Dark"] }, { "role": "Fast Support", "movepool": ["Encore", "Knock Off", "Protect", "Substitute", "Toxic"], "teraTypes": ["Dark"] }, { "role": "Bulky Support", "movepool": ["Encore", "Gunk Shot", "Knock Off", "Parting Shot"], "teraTypes": ["Dark"] }] }, "dachsbun": { "level": 85, "sets": [{ "role": "Bulky Support", "movepool": ["Body Press", "Play Rough", "Protect", "Wish"], "teraTypes": ["Steel"] }] }, "mabosstiff": { "level": 84, "sets": [{ "role": "Bulky Attacker", "movepool": ["Crunch", "Fire Fang", "Play Rough", "Psychic Fangs", "Wild Charge"], "teraTypes": ["Dark", "Fairy"] }] }, "brambleghast": { "level": 85, "sets": [{ "role": "Bulky Support", "movepool": ["Power Whip", "Rapid Spin", "Shadow Sneak", "Spikes", "Strength Sap"], "teraTypes": ["Steel", "Water", "Fairy"] }, { "role": "Fast Support", "movepool": ["Leech Seed", "Phantom Force", "Power Whip", "Substitute"], "teraTypes": ["Ghost", "Fairy"] }] }, "gholdengo": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Focus Blast", "Make It Rain", "Nasty Plot", "Recover", "Shadow Ball", "Trick"], "teraTypes": ["Steel", "Ghost"] }, { "role": "Bulky Attacker", "movepool": ["Make It Rain", "Recover", "Shadow Ball", "Thunder Wave"], "teraTypes": ["Steel", "Water"] }] }, "greattusk": { "level": 80, "sets": [{ "role": "Bulky Setup", "movepool": ["Bulk Up", "Close Combat", "Earthquake", "Ice Spinner", "Rapid Spin"], "teraTypes": ["Ground", "Fighting"] }, { "role": "Bulky Attacker", "movepool": ["Close Combat", "Headlong Rush", "Ice Spinner", "Knock Off", "Rapid Spin", "Stealth Rock"], "teraTypes": ["Ground", "Dark"] }] }, "brutebonnet": { "level": 82, "sets": [{ "role": "Bulky Attacker", "movepool": ["Close Combat", "Crunch", "Seed Bomb", "Spore", "Sucker Punch"], "teraTypes": ["Dark", "Fighting"] }] }, "sandyshocks": { "level": 82, "sets": [{ "role": "Bulky Attacker", "movepool": ["Earth Power", "Spikes", "Stealth Rock", "Thunder Wave", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric", "Ground"] }] }, "screamtail": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Encore", "Light Screen", "Play Rough", "Protect", "Reflect", "Thunder Wave", "Wish"], "teraTypes": ["Fairy", "Steel"] }] }, "fluttermane": { "level": 76, "sets": [{ "role": "Fast Attacker", "movepool": ["Calm Mind", "Moonblast", "Mystical Fire", "Psyshock", "Shadow Ball", "Thunderbolt"], "teraTypes": ["Ghost", "Fairy", "Fire", "Electric", "Psychic"] }] }, "slitherwing": { "level": 82, "sets": [{ "role": "Bulky Setup", "movepool": ["Bulk Up", "Close Combat", "Earthquake", "Flame Charge", "Leech Life", "Wild Charge"], "teraTypes": ["Fighting", "Electric"] }, { "role": "Fast Attacker", "movepool": ["Close Combat", "Earthquake", "First Impression", "Flare Blitz", "U-turn", "Wild Charge"], "teraTypes": ["Bug", "Fighting", "Electric"] }] }, "roaringmoon": { "level": 78, "sets": [{ "role": "Setup Sweeper", "movepool": ["Crunch", "Dragon Dance", "Earthquake", "Outrage", "Roost"], "teraTypes": ["Dark", "Dragon", "Ground"] }, { "role": "Bulky Attacker", "movepool": ["Crunch", "Iron Head", "Outrage", "U-turn"], "teraTypes": ["Dark", "Dragon", "Steel"] }] }, "irontreads": { "level": 80, "sets": [{ "role": "Bulky Attacker", "movepool": ["Earthquake", "Iron Head", "Knock Off", "Rapid Spin", "Stealth Rock", "Stone Edge", "Volt Switch"], "teraTypes": ["Ground", "Steel"] }] }, "ironmoth": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Discharge", "Energy Ball", "Fiery Dance", "Fire Blast", "Sludge Wave", "U-turn"], "teraTypes": ["Fire", "Grass"] }, { "role": "Fast Support", "movepool": ["Energy Ball", "Fiery Dance", "Morning Sun", "Sludge Wave", "Toxic Spikes", "U-turn"], "teraTypes": ["Fire", "Grass"] }] }, "ironhands": { "level": 80, "sets": [{ "role": "Bulky Attacker", "movepool": ["Close Combat", "Drain Punch", "Fake Out", "Heavy Slam", "Ice Punch", "Thunder Punch", "Volt Switch", "Wild Charge"], "teraTypes": ["Electric", "Fighting"] }] }, "ironjugulis": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Dark Pulse", "Earth Power", "Fire Blast", "Hurricane", "Hydro Pump", "U-turn"], "teraTypes": ["Dark", "Flying", "Ground"] }] }, "ironthorns": { "level": 85, "sets": [{ "role": "Fast Support", "movepool": ["Earthquake", "Spikes", "Stealth Rock", "Stone Edge", "Thunder Punch", "Volt Switch"], "teraTypes": ["Grass", "Water"] }, { "role": "Bulky Setup", "movepool": ["Dragon Dance", "Earthquake", "Ice Punch", "Stone Edge", "Wild Charge"], "teraTypes": ["Rock", "Ground"] }] }, "ironbundle": { "level": 76, "sets": [{ "role": "Fast Attacker", "movepool": ["Encore", "Flip Turn", "Freeze-Dry", "Hydro Pump", "Ice Beam", "Substitute"], "teraTypes": ["Water", "Ice"] }] }, "ironvaliant": { "level": 79, "sets": [{ "role": "Setup Sweeper", "movepool": ["Close Combat", "Knock Off", "Spirit Break", "Swords Dance"], "teraTypes": ["Dark", "Fighting"] }, { "role": "Fast Attacker", "movepool": ["Aura Sphere", "Calm Mind", "Focus Blast", "Moonblast", "Psyshock", "Shadow Ball"], "teraTypes": ["Fighting", "Fairy"] }] }, "tinglu": { "level": 80, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Ruination", "Spikes", "Stealth Rock", "Throat Chop", "Whirlwind"], "teraTypes": ["Ground", "Ghost"] }, { "role": "Bulky Attacker", "movepool": ["Body Press", "Earthquake", "Heavy Slam", "Ruination", "Stone Edge", "Throat Chop"], "teraTypes": ["Ground", "Fighting", "Steel"] }] }, "chienpao": { "level": 78, "sets": [{ "role": "Fast Attacker", "movepool": ["Crunch", "Ice Shard", "Ice Spinner", "Sacred Sword", "Sucker Punch", "Swords Dance"], "teraTypes": ["Dark", "Ice", "Fighting"] }] }, "wochien": { "level": 83, "sets": [{ "role": "Bulky Support", "movepool": ["Energy Ball", "Knock Off", "Leech Seed", "Protect", "Ruination", "Stun Spore"], "teraTypes": ["Poison"] }] }, "chiyu": { "level": 80, "sets": [{ "role": "Setup Sweeper", "movepool": ["Dark Pulse", "Fire Blast", "Nasty Plot", "Psychic", "Will-O-Wisp"], "teraTypes": ["Dark", "Fire"] }, { "role": "Fast Attacker", "movepool": ["Dark Pulse", "Flamethrower", "Overheat", "Psychic"], "teraTypes": ["Dark", "Fire"] }] }, "koraidon": { "level": 70, "sets": [{ "role": "Fast Attacker", "movepool": ["Collision Course", "Flare Blitz", "Outrage", "Swords Dance", "U-turn"], "teraTypes": ["Fire"] }] }, "miraidon": { "level": 68, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Calm Mind", "Dragon Pulse", "Electro Drift", "Substitute"], "teraTypes": ["Electric"] }, { "role": "Fast Attacker", "movepool": ["Draco Meteor", "Electro Drift", "Overheat", "Volt Switch"], "teraTypes": ["Electric"] }] }, "tinkaton": { "level": 85, "sets": [{ "role": "Bulky Attacker", "movepool": ["Gigaton Hammer", "Knock Off", "Play Rough", "Stealth Rock", "Thunder Wave"], "teraTypes": ["Steel"] }, { "role": "Setup Sweeper", "movepool": ["Gigaton Hammer", "Knock Off", "Play Rough", "Swords Dance"], "teraTypes": ["Steel"] }] }, "armarouge": { "level": 84, "sets": [{ "role": "Wallbreaker", "movepool": ["Armor Cannon", "Aura Sphere", "Energy Ball", "Focus Blast", "Psyshock"], "teraTypes": ["Fire", "Fighting", "Psychic", "Grass"] }] }, "ceruledge": { "level": 82, "sets": [{ "role": "Setup Sweeper", "movepool": ["Bitter Blade", "Close Combat", "Shadow Sneak", "Swords Dance"], "teraTypes": ["Fire", "Fighting"] }] }, "toedscruel": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Earth Power", "Giga Drain", "Knock Off", "Leaf Storm", "Rapid Spin", "Spore", "Toxic", "Toxic Spikes"], "teraTypes": ["Water"] }] }, "kingambit": { "level": 82, "sets": [{ "role": "Wallbreaker", "movepool": ["Iron Head", "Kowtow Cleave", "Stealth Rock", "Sucker Punch", "Swords Dance"], "teraTypes": ["Dark", "Flying"] }] } };
8209
+ var randomSetsJSON = { "charizard": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Earthquake", "Flamethrower", "Focus Blast", "Hurricane", "Will-O-Wisp"], "teraTypes": ["Fire", "Ground", "Water"] }, { "role": "Setup Sweeper", "movepool": ["Dragon Dance", "Earthquake", "Flare Blitz", "Swords Dance", "Thunder Punch"], "teraTypes": ["Fire", "Ground"] }] }, "pikachu": { "level": 92, "sets": [{ "role": "Fast Attacker", "movepool": ["Fake Out", "Play Rough", "Surf", "Volt Switch", "Volt Tackle"], "teraTypes": ["Water"] }] }, "raichu": { "level": 88, "sets": [{ "role": "Fast Support", "movepool": ["Encore", "Focus Blast", "Grass Knot", "Nasty Plot", "Nuzzle", "Surf", "Thunderbolt", "Volt Switch"], "teraTypes": ["Water", "Grass"] }] }, "raichualola": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Focus Blast", "Grass Knot", "Nasty Plot", "Psychic", "Psyshock", "Surf", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric"] }] }, "wigglytuff": { "level": 91, "sets": [{ "role": "Bulky Support", "movepool": ["Dazzling Gleam", "Fire Blast", "Light Screen", "Protect", "Reflect", "Stealth Rock", "Thunder Wave", "Wish"], "teraTypes": ["Steel"] }] }, "venomoth": { "level": 85, "sets": [{ "role": "Setup Sweeper", "movepool": ["Bug Buzz", "Quiver Dance", "Sleep Powder", "Sludge Bomb", "Substitute"], "teraTypes": ["Bug", "Poison"] }] }, "dugtrio": { "level": 83, "sets": [{ "role": "Fast Attacker", "movepool": ["Earthquake", "Memento", "Stealth Rock", "Stone Edge", "Sucker Punch", "Swords Dance"], "teraTypes": ["Ground", "Ghost", "Fairy", "Flying", "Dark"] }] }, "dugtrioalola": { "level": 87, "sets": [{ "role": "Fast Attacker", "movepool": ["Earthquake", "Iron Head", "Stealth Rock", "Stone Edge", "Sucker Punch", "Swords Dance"], "teraTypes": ["Ground", "Steel"] }] }, "persian": { "level": 90, "sets": [{ "role": "Fast Attacker", "movepool": ["Aerial Ace", "Body Slam", "Fake Out", "Foul Play", "Gunk Shot", "Switcheroo", "U-turn"], "teraTypes": ["Normal", "Poison", "Flying"] }] }, "persianalola": { "level": 87, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Dark Pulse", "Hypnosis", "Nasty Plot", "Power Gem", "Thunderbolt"], "teraTypes": ["Dark", "Electric"] }] }, "golduck": { "level": 89, "sets": [{ "role": "Fast Attacker", "movepool": ["Encore", "Grass Knot", "Hydro Pump", "Ice Beam", "Nasty Plot", "Psyshock", "Taunt"], "teraTypes": ["Water"] }] }, "annihilape": { "level": 78, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Bulk Up", "Drain Punch", "Rage Fist", "Rest"], "teraTypes": ["Ghost", "Water", "Fairy", "Steel"] }, { "role": "Bulky Attacker", "movepool": ["Bulk Up", "Close Combat", "Rage Fist", "Stone Edge", "U-turn"], "teraTypes": ["Ghost", "Fighting"] }] }, "arcanine": { "level": 84, "sets": [{ "role": "Bulky Attacker", "movepool": ["Close Combat", "Extreme Speed", "Flare Blitz", "Morning Sun", "Roar", "Wild Charge", "Will-O-Wisp"], "teraTypes": ["Fighting", "Normal"] }, { "role": "Fast Attacker", "movepool": ["Close Combat", "Extreme Speed", "Flare Blitz", "Morning Sun", "Wild Charge"], "teraTypes": ["Fighting", "Normal"] }] }, "arcaninehisui": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Extreme Speed", "Flare Blitz", "Head Smash", "Morning Sun", "Wild Charge"], "teraTypes": ["Rock"] }] }, "slowbro": { "level": 84, "sets": [{ "role": "Bulky Attacker", "movepool": ["Calm Mind", "Psyshock", "Slack Off", "Surf", "Thunder Wave"], "teraTypes": ["Water", "Fairy"] }, { "role": "AV Pivot", "movepool": ["Body Press", "Fire Blast", "Future Sight", "Ice Beam", "Psychic", "Surf"], "teraTypes": ["Fighting", "Water"] }] }, "slowbrogalar": { "level": 85, "sets": [{ "role": "AV Pivot", "movepool": ["Earthquake", "Fire Blast", "Foul Play", "Psychic", "Shell Side Arm", "Surf"], "teraTypes": ["Ground", "Water", "Poison", "Dark"] }, { "role": "Wallbreaker", "movepool": ["Fire Blast", "Psyshock", "Sludge Bomb", "Trick", "Trick Room"], "teraTypes": ["Psychic", "Poison"] }] }, "muk": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Fire Punch", "Gunk Shot", "Haze", "Ice Punch", "Shadow Sneak", "Toxic", "Toxic Spikes"], "teraTypes": ["Poison", "Dark"] }] }, "mukalola": { "level": 85, "sets": [{ "role": "AV Pivot", "movepool": ["Fire Punch", "Gunk Shot", "Ice Punch", "Knock Off", "Poison Jab"], "teraTypes": ["Dark"] }] }, "cloyster": { "level": 78, "sets": [{ "role": "Tera Blast user", "movepool": ["Icicle Spear", "Rock Blast", "Shell Smash", "Tera Blast"], "teraTypes": ["Fire", "Ground"] }, { "role": "Setup Sweeper", "movepool": ["Hydro Pump", "Icicle Spear", "Rock Blast", "Shell Smash"], "teraTypes": ["Ice", "Rock"] }] }, "gengar": { "level": 81, "sets": [{ "role": "Wallbreaker", "movepool": ["Focus Blast", "Nasty Plot", "Shadow Ball", "Sludge Bomb", "Trick"], "teraTypes": ["Ghost"] }, { "role": "Fast Attacker", "movepool": ["Encore", "Focus Blast", "Shadow Ball", "Sludge Bomb", "Toxic Spikes", "Will-O-Wisp"], "teraTypes": ["Ghost"] }] }, "hypno": { "level": 90, "sets": [{ "role": "Bulky Support", "movepool": ["Encore", "Focus Blast", "Foul Play", "Light Screen", "Psychic", "Reflect", "Thunder Wave"], "teraTypes": ["Dark", "Steel"] }] }, "electrode": { "level": 90, "sets": [{ "role": "Fast Support", "movepool": ["Explosion", "Foul Play", "Light Screen", "Taunt", "Thunder Wave", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric"] }] }, "electrodehisui": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Chloroblast", "Energy Ball", "Taunt", "Thunder Wave", "Thunderbolt", "Volt Switch"], "teraTypes": ["Grass"] }, { "role": "Fast Support", "movepool": ["Giga Drain", "Leech Seed", "Substitute", "Thunderbolt"], "teraTypes": ["Poison"] }] }, "scyther": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Aerial Ace", "Close Combat", "Pounce", "Swords Dance", "U-turn"], "teraTypes": ["Fighting"] }] }, "tauros": { "level": 85, "sets": [{ "role": "Fast Attacker", "movepool": ["Body Slam", "Close Combat", "Earthquake", "Rock Slide", "Zen Headbutt"], "teraTypes": ["Normal", "Fighting", "Ground"] }, { "role": "Wallbreaker", "movepool": ["Close Combat", "Double-Edge", "Earthquake", "Stone Edge"], "teraTypes": ["Normal", "Fighting", "Ground"] }] }, "taurospaldeacombat": { "level": 84, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Bulk Up", "Raging Bull", "Stone Edge", "Substitute"], "teraTypes": ["Fighting"] }, { "role": "Wallbreaker", "movepool": ["Bulk Up", "Close Combat", "Earthquake", "Iron Head", "Stone Edge"], "teraTypes": ["Fighting"] }] }, "taurospaldeablaze": { "level": 83, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Bulk Up", "Close Combat", "Raging Bull", "Substitute"], "teraTypes": ["Fire"] }, { "role": "Wallbreaker", "movepool": ["Close Combat", "Flare Blitz", "Stone Edge", "Wild Charge"], "teraTypes": ["Fighting"] }] }, "taurospaldeaaqua": { "level": 83, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Bulk Up", "Close Combat", "Liquidation", "Raging Bull", "Substitute"], "teraTypes": ["Water"] }, { "role": "Wallbreaker", "movepool": ["Aqua Jet", "Bulk Up", "Close Combat", "Raging Bull", "Stone Edge", "Wave Crash"], "teraTypes": ["Water"] }] }, "gyarados": { "level": 79, "sets": [{ "role": "Setup Sweeper", "movepool": ["Dragon Dance", "Earthquake", "Stone Edge", "Waterfall"], "teraTypes": ["Ground"] }, { "role": "Tera Blast user", "movepool": ["Dragon Dance", "Earthquake", "Tera Blast", "Waterfall"], "teraTypes": ["Flying"] }] }, "ditto": { "level": 87, "sets": [{ "role": "Fast Support", "movepool": ["Transform"], "teraTypes": ["Flying", "Dark", "Fire", "Bug", "Water", "Ice", "Fighting", "Electric", "Psychic", "Poison", "Grass", "Ghost", "Ground", "Rock", "Fairy", "Steel", "Normal", "Dragon"] }] }, "vaporeon": { "level": 85, "sets": [{ "role": "Bulky Support", "movepool": ["Calm Mind", "Ice Beam", "Protect", "Surf", "Wish"], "teraTypes": ["Ghost", "Ground"] }] }, "jolteon": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Calm Mind", "Hyper Voice", "Shadow Ball", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric", "Ghost"] }, { "role": "Tera Blast user", "movepool": ["Calm Mind", "Substitute", "Tera Blast", "Thunderbolt"], "teraTypes": ["Ice"] }] }, "flareon": { "level": 87, "sets": [{ "role": "Wallbreaker", "movepool": ["Facade", "Flare Blitz", "Quick Attack", "Trailblaze", "Will-O-Wisp"], "teraTypes": ["Normal"] }] }, "articuno": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Air Slash", "Freeze-Dry", "Haze", "Hurricane", "Roost", "Substitute", "U-turn"], "teraTypes": ["Flying", "Steel", "Ground", "Poison"] }] }, "articunogalar": { "level": 84, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Air Slash", "Calm Mind", "Freezing Glare", "Hurricane", "Recover"], "teraTypes": ["Psychic", "Steel"] }] }, "zapdos": { "level": 81, "sets": [{ "role": "Fast Attacker", "movepool": ["Discharge", "Heat Wave", "Hurricane", "Roost", "U-turn"], "teraTypes": ["Electric"] }] }, "zapdosgalar": { "level": 81, "sets": [{ "role": "Fast Attacker", "movepool": ["Brave Bird", "Bulk Up", "Close Combat", "Stomping Tantrum", "U-turn"], "teraTypes": ["Fighting"] }] }, "moltres": { "level": 83, "sets": [{ "role": "Bulky Attacker", "movepool": ["Brave Bird", "Fire Blast", "Roost", "U-turn", "Will-O-Wisp"], "teraTypes": ["Fire", "Ground"] }] }, "moltresgalar": { "level": 81, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Agility", "Fiery Wrath", "Hurricane", "Nasty Plot", "Rest"], "teraTypes": ["Dark"] }] }, "dragonite": { "level": 77, "sets": [{ "role": "Bulky Attacker", "movepool": ["Dragon Dance", "Earthquake", "Extreme Speed", "Fire Punch", "Outrage"], "teraTypes": ["Normal"] }, { "role": "Tera Blast user", "movepool": ["Dragon Dance", "Earthquake", "Outrage", "Tera Blast"], "teraTypes": ["Flying"] }] }, "mewtwo": { "level": 72, "sets": [{ "role": "Fast Attacker", "movepool": ["Aura Sphere", "Fire Blast", "Nasty Plot", "Psystrike", "Recover", "Shadow Ball"], "teraTypes": ["Psychic", "Fighting", "Fire"] }] }, "mew": { "level": 81, "sets": [{ "role": "Bulky Support", "movepool": ["Psychic", "Spikes", "Stealth Rock", "Taunt", "Thunder Wave", "Toxic Spikes", "Will-O-Wisp"], "teraTypes": ["Steel", "Fairy"] }, { "role": "Fast Attacker", "movepool": ["Brave Bird", "Close Combat", "Dragon Dance", "Flare Blitz", "Psychic Fangs", "Swords Dance", "U-turn"], "teraTypes": ["Fighting", "Fire"] }, { "role": "Setup Sweeper", "movepool": ["Aura Sphere", "Dazzling Gleam", "Earth Power", "Fire Blast", "Nasty Plot", "Psyshock", "Shadow Ball"], "teraTypes": ["Psychic", "Fighting", "Fire", "Ghost", "Ground", "Fairy"] }] }, "typhlosion": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Eruption", "Fire Blast", "Focus Blast", "Shadow Ball"], "teraTypes": ["Fire", "Ghost"] }] }, "typhlosionhisui": { "level": 85, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Calm Mind", "Flamethrower", "Shadow Ball", "Substitute", "Will-O-Wisp"], "teraTypes": ["Ghost"] }, { "role": "Fast Attacker", "movepool": ["Eruption", "Fire Blast", "Focus Blast", "Shadow Ball"], "teraTypes": ["Fire", "Ghost"] }] }, "ampharos": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Agility", "Dazzling Gleam", "Focus Blast", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric", "Fairy"] }] }, "azumarill": { "level": 82, "sets": [{ "role": "Bulky Setup", "movepool": ["Aqua Jet", "Belly Drum", "Liquidation", "Play Rough"], "teraTypes": ["Water"] }, { "role": "Bulky Attacker", "movepool": ["Aqua Jet", "Ice Spinner", "Liquidation", "Play Rough", "Superpower"], "teraTypes": ["Water"] }] }, "sudowoodo": { "level": 88, "sets": [{ "role": "Bulky Attacker", "movepool": ["Earthquake", "Head Smash", "Spikes", "Stealth Rock", "Sucker Punch", "Wood Hammer"], "teraTypes": ["Rock", "Grass"] }] }, "jumpluff": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Acrobatics", "Leech Seed", "Strength Sap", "Substitute"], "teraTypes": ["Steel"] }, { "role": "Fast Support", "movepool": ["Acrobatics", "Encore", "Sleep Powder", "Strength Sap", "U-turn"], "teraTypes": ["Steel"] }] }, "sunflora": { "level": 93, "sets": [{ "role": "Wallbreaker", "movepool": ["Dazzling Gleam", "Earth Power", "Leaf Storm", "Sludge Bomb"], "teraTypes": ["Grass", "Ground", "Fairy", "Poison"] }] }, "quagsire": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Ice Beam", "Liquidation", "Recover", "Spikes", "Toxic"], "teraTypes": ["Poison", "Steel", "Fairy"] }] }, "clodsire": { "level": 81, "sets": [{ "role": "Bulky Setup", "movepool": ["Curse", "Earthquake", "Gunk Shot", "Recover"], "teraTypes": ["Ground", "Flying"] }, { "role": "Bulky Support", "movepool": ["Earthquake", "Haze", "Poison Jab", "Recover", "Spikes", "Toxic", "Toxic Spikes"], "teraTypes": ["Ground", "Flying", "Steel"] }] }, "espeon": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Calm Mind", "Dazzling Gleam", "Morning Sun", "Psychic", "Shadow Ball", "Trick"], "teraTypes": ["Fairy", "Psychic"] }] }, "umbreon": { "level": 85, "sets": [{ "role": "Bulky Support", "movepool": ["Foul Play", "Protect", "Thunder Wave", "Wish", "Yawn"], "teraTypes": ["Poison"] }] }, "slowking": { "level": 85, "sets": [{ "role": "Bulky Support", "movepool": ["Chilly Reception", "Psyshock", "Slack Off", "Surf", "Thunder Wave"], "teraTypes": ["Water", "Fairy", "Dragon"] }, { "role": "Wallbreaker", "movepool": ["Fire Blast", "Hydro Pump", "Ice Beam", "Psychic", "Psyshock", "Trick", "Trick Room"], "teraTypes": ["Water", "Psychic"] }] }, "slowkinggalar": { "level": 83, "sets": [{ "role": "Bulky Support", "movepool": ["Chilly Reception", "Fire Blast", "Psyshock", "Slack Off", "Sludge Bomb", "Thunder Wave"], "teraTypes": ["Poison", "Dark"] }, { "role": "AV Pivot", "movepool": ["Fire Blast", "Future Sight", "Ice Beam", "Psyshock", "Sludge Bomb"], "teraTypes": ["Poison", "Psychic"] }] }, "girafarig": { "level": 88, "sets": [{ "role": "Bulky Setup", "movepool": ["Dazzling Gleam", "Nasty Plot", "Psychic", "Psyshock", "Shadow Ball", "Thunderbolt"], "teraTypes": ["Psychic", "Fairy", "Electric"] }] }, "forretress": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Body Press", "Iron Head", "Rapid Spin", "Spikes", "Stealth Rock", "Volt Switch"], "teraTypes": ["Water"] }] }, "dunsparce": { "level": 87, "sets": [{ "role": "Bulky Setup", "movepool": ["Body Slam", "Coil", "Earthquake", "Roost"], "teraTypes": ["Ground"] }] }, "qwilfish": { "level": 86, "sets": [{ "role": "Fast Support", "movepool": ["Destiny Bond", "Gunk Shot", "Spikes", "Taunt", "Thunder Wave", "Toxic Spikes", "Waterfall"], "teraTypes": ["Water", "Dark"] }] }, "qwilfishhisui": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Crunch", "Gunk Shot", "Spikes", "Taunt", "Toxic Spikes"], "teraTypes": ["Poison", "Flying"] }] }, "overqwil": { "level": 83, "sets": [{ "role": "Fast Attacker", "movepool": ["Aqua Jet", "Crunch", "Gunk Shot", "Liquidation", "Swords Dance"], "teraTypes": ["Water"] }] }, "scizor": { "level": 82, "sets": [{ "role": "Bulky Support", "movepool": ["Bullet Punch", "Close Combat", "Defog", "U-turn"], "teraTypes": ["Steel"] }, { "role": "Setup Sweeper", "movepool": ["Bullet Punch", "Close Combat", "Pounce", "Swords Dance"], "teraTypes": ["Steel"] }] }, "heracross": { "level": 82, "sets": [{ "role": "Setup Sweeper", "movepool": ["Close Combat", "Facade", "Throat Chop", "Trailblaze"], "teraTypes": ["Normal"] }, { "role": "Fast Attacker", "movepool": ["Close Combat", "Earthquake", "Megahorn", "Stone Edge", "Throat Chop"], "teraTypes": ["Rock", "Bug", "Fighting"] }] }, "ursaring": { "level": 86, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Slam", "Crunch", "Earthquake", "Rest", "Sleep Talk"], "teraTypes": ["Ground", "Ghost"] }] }, "delibird": { "level": 100, "sets": [{ "role": "Fast Attacker", "movepool": ["Brave Bird", "Drill Run", "Ice Shard", "Ice Spinner"], "teraTypes": ["Ice", "Flying", "Ground"] }, { "role": "Fast Support", "movepool": ["Freeze-Dry", "Memento", "Rapid Spin", "Spikes"], "teraTypes": ["Ghost"] }] }, "houndoom": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Dark Pulse", "Fire Blast", "Nasty Plot", "Sludge Bomb", "Sucker Punch"], "teraTypes": ["Dark", "Poison", "Fire"] }] }, "donphan": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Ice Spinner", "Knock Off", "Rapid Spin", "Stealth Rock"], "teraTypes": ["Grass", "Ghost"] }, { "role": "Bulky Attacker", "movepool": ["Earthquake", "Gunk Shot", "Ice Shard", "Ice Spinner", "Knock Off", "Rapid Spin", "Stone Edge"], "teraTypes": ["Ice", "Poison", "Dark"] }] }, "blissey": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Seismic Toss", "Soft-Boiled", "Stealth Rock", "Thunder Wave"], "teraTypes": ["Steel", "Fairy", "Ghost", "Poison"] }] }, "tyranitar": { "level": 81, "sets": [{ "role": "Bulky Setup", "movepool": ["Crunch", "Dragon Dance", "Earthquake", "Fire Punch", "Stone Edge"], "teraTypes": ["Rock", "Ghost"] }, { "role": "Bulky Support", "movepool": ["Crunch", "Earthquake", "Fire Blast", "Ice Beam", "Stealth Rock", "Stone Edge", "Thunder Wave"], "teraTypes": ["Rock", "Poison"] }] }, "pelipper": { "level": 83, "sets": [{ "role": "Bulky Attacker", "movepool": ["Hurricane", "Hydro Pump", "Ice Beam", "Knock Off", "Roost", "Surf", "U-turn"], "teraTypes": ["Water", "Ground"] }, { "role": "Wallbreaker", "movepool": ["Hurricane", "Hydro Pump", "Ice Beam", "Surf", "U-turn"], "teraTypes": ["Water", "Flying"] }] }, "gardevoir": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Calm Mind", "Focus Blast", "Healing Wish", "Moonblast", "Mystical Fire", "Psychic", "Psyshock", "Trick"], "teraTypes": ["Fairy", "Fire", "Fighting"] }] }, "masquerain": { "level": 88, "sets": [{ "role": "Setup Sweeper", "movepool": ["Bug Buzz", "Hurricane", "Hydro Pump", "Quiver Dance"], "teraTypes": ["Water"] }, { "role": "Fast Support", "movepool": ["Bug Buzz", "Hurricane", "Hydro Pump", "Ice Beam", "Sticky Web", "Stun Spore", "U-turn"], "teraTypes": ["Ground", "Steel"] }] }, "breloom": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Bullet Seed", "Close Combat", "Mach Punch", "Rock Tomb", "Spore", "Swords Dance"], "teraTypes": ["Fighting"] }] }, "slaking": { "level": 85, "sets": [{ "role": "Fast Attacker", "movepool": ["Body Slam", "Earthquake", "Fire Punch", "Giga Impact", "Hammer Arm", "Throat Chop"], "teraTypes": ["Normal", "Ground"] }] }, "hariyama": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Bulk Up", "Bullet Punch", "Close Combat", "Facade", "Headlong Rush", "Knock Off"], "teraTypes": ["Normal"] }, { "role": "AV Pivot", "movepool": ["Bullet Punch", "Close Combat", "Headlong Rush", "Heavy Slam", "Knock Off"], "teraTypes": ["Steel"] }] }, "sableye": { "level": 89, "sets": [{ "role": "Bulky Support", "movepool": ["Encore", "Foul Play", "Knock Off", "Recover", "Taunt", "Thunder Wave", "Will-O-Wisp"], "teraTypes": ["Steel"] }] }, "medicham": { "level": 85, "sets": [{ "role": "Fast Attacker", "movepool": ["Bullet Punch", "Close Combat", "Ice Punch", "Poison Jab", "Zen Headbutt"], "teraTypes": ["Fighting"] }] }, "swalot": { "level": 89, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Encore", "Ice Beam", "Pain Split", "Protect", "Sludge Bomb", "Toxic", "Toxic Spikes"], "teraTypes": ["Dark"] }, { "role": "Bulky Setup", "movepool": ["Earthquake", "Gunk Shot", "Seed Bomb", "Swords Dance"], "teraTypes": ["Poison", "Ground"] }] }, "camerupt": { "level": 90, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Lava Plume", "Stealth Rock", "Yawn"], "teraTypes": ["Water"] }] }, "torkoal": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Lava Plume", "Rapid Spin", "Solar Beam", "Stealth Rock", "Yawn"], "teraTypes": ["Dragon", "Fire"] }] }, "grumpig": { "level": 89, "sets": [{ "role": "Bulky Attacker", "movepool": ["Dazzling Gleam", "Earth Power", "Focus Blast", "Nasty Plot", "Psychic", "Psyshock", "Shadow Ball", "Trick"], "teraTypes": ["Psychic", "Fairy", "Ground", "Ghost", "Fighting"] }] }, "cacturne": { "level": 89, "sets": [{ "role": "Fast Attacker", "movepool": ["Dark Pulse", "Focus Blast", "Leaf Storm", "Sucker Punch", "Toxic Spikes"], "teraTypes": ["Dark", "Poison", "Grass"] }, { "role": "Setup Sweeper", "movepool": ["Drain Punch", "Seed Bomb", "Sucker Punch", "Swords Dance"], "teraTypes": ["Dark", "Fighting"] }] }, "altaria": { "level": 87, "sets": [{ "role": "Bulky Support", "movepool": ["Brave Bird", "Defog", "Earthquake", "Haze", "Roost", "Will-O-Wisp"], "teraTypes": ["Steel"] }, { "role": "Bulky Setup", "movepool": ["Brave Bird", "Dragon Dance", "Earthquake", "Roost"], "teraTypes": ["Flying", "Ground"] }] }, "zangoose": { "level": 85, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Facade", "Night Slash", "Quick Attack", "Swords Dance"], "teraTypes": ["Normal"] }] }, "seviper": { "level": 89, "sets": [{ "role": "Fast Attacker", "movepool": ["Earthquake", "Flamethrower", "Giga Drain", "Glare", "Gunk Shot", "Switcheroo"], "teraTypes": ["Ground", "Fire", "Poison", "Grass"] }] }, "whiscash": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Liquidation", "Spikes", "Stealth Rock", "Stone Edge"], "teraTypes": ["Ground", "Steel"] }, { "role": "Setup Sweeper", "movepool": ["Dragon Dance", "Earthquake", "Liquidation", "Stone Edge"], "teraTypes": ["Ground", "Water"] }] }, "banette": { "level": 91, "sets": [{ "role": "Wallbreaker", "movepool": ["Gunk Shot", "Knock Off", "Shadow Claw", "Shadow Sneak", "Swords Dance", "Thunder Wave", "Will-O-Wisp"], "teraTypes": ["Poison", "Dark"] }] }, "tropius": { "level": 87, "sets": [{ "role": "Bulky Support", "movepool": ["Air Slash", "Leech Seed", "Protect", "Substitute"], "teraTypes": ["Steel"] }] }, "glalie": { "level": 78, "sets": [{ "role": "Fast Support", "movepool": ["Disable", "Earthquake", "Freeze-Dry", "Protect", "Substitute"], "teraTypes": ["Poison", "Steel", "Water"] }] }, "luvdisc": { "level": 100, "sets": [{ "role": "Bulky Support", "movepool": ["Charm", "Ice Beam", "Protect", "Surf", "Wish"], "teraTypes": ["Dragon", "Ghost"] }] }, "salamence": { "level": 80, "sets": [{ "role": "Setup Sweeper", "movepool": ["Dragon Dance", "Dual Wingbeat", "Earthquake", "Outrage", "Roost"], "teraTypes": ["Flying", "Ground", "Dragon"] }] }, "kyogre": { "level": 71, "sets": [{ "role": "Bulky Attacker", "movepool": ["Calm Mind", "Ice Beam", "Origin Pulse", "Thunder", "Water Spout"], "teraTypes": ["Water"] }] }, "groudon": { "level": 74, "sets": [{ "role": "Bulky Attacker", "movepool": ["Lava Plume", "Precipice Blades", "Spikes", "Stealth Rock", "Stone Edge", "Thunder Wave"], "teraTypes": ["Fire", "Dragon", "Water", "Ghost"] }, { "role": "Bulky Setup", "movepool": ["Fire Punch", "Precipice Blades", "Stone Edge", "Swords Dance", "Thunder Wave"], "teraTypes": ["Ground", "Fire"] }] }, "rayquaza": { "level": 72, "sets": [{ "role": "Fast Attacker", "movepool": ["Dragon Ascent", "Dragon Dance", "Earthquake", "Extreme Speed", "Swords Dance", "U-turn"], "teraTypes": ["Flying", "Normal"] }] }, "staraptor": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Brave Bird", "Close Combat", "Double-Edge", "Quick Attack", "U-turn"], "teraTypes": ["Fighting", "Flying"] }] }, "kricketune": { "level": 92, "sets": [{ "role": "Fast Support", "movepool": ["Brick Break", "Pounce", "Sticky Web", "Taunt"], "teraTypes": ["Ghost"] }] }, "luxray": { "level": 86, "sets": [{ "role": "Wallbreaker", "movepool": ["Crunch", "Facade", "Play Rough", "Trailblaze", "Wild Charge"], "teraTypes": ["Normal"] }, { "role": "AV Pivot", "movepool": ["Crunch", "Ice Fang", "Play Rough", "Volt Switch", "Wild Charge"], "teraTypes": ["Electric", "Fairy"] }] }, "vespiquen": { "level": 93, "sets": [{ "role": "Bulky Support", "movepool": ["Air Slash", "Roost", "Spikes", "Toxic", "Toxic Spikes", "U-turn"], "teraTypes": ["Steel"] }] }, "pachirisu": { "level": 94, "sets": [{ "role": "AV Pivot", "movepool": ["Nuzzle", "Super Fang", "Thunderbolt", "U-turn"], "teraTypes": ["Flying"] }] }, "floatzel": { "level": 85, "sets": [{ "role": "Fast Attacker", "movepool": ["Aqua Jet", "Crunch", "Ice Spinner", "Low Kick", "Wave Crash"], "teraTypes": ["Water"] }, { "role": "Tera Blast user", "movepool": ["Bulk Up", "Ice Spinner", "Liquidation", "Tera Blast"], "teraTypes": ["Electric", "Grass"] }] }, "gastrodon": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Clear Smog", "Earthquake", "Ice Beam", "Recover", "Stealth Rock", "Surf"], "teraTypes": ["Steel", "Poison"] }] }, "drifblim": { "level": 86, "sets": [{ "role": "Fast Support", "movepool": ["Air Slash", "Defog", "Shadow Ball", "Strength Sap", "Will-O-Wisp"], "teraTypes": ["Ghost", "Fairy"] }, { "role": "Fast Bulky Setup", "movepool": ["Air Slash", "Calm Mind", "Shadow Ball", "Strength Sap"], "teraTypes": ["Ghost", "Fairy"] }] }, "mismagius": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Dazzling Gleam", "Energy Ball", "Mystical Fire", "Nasty Plot", "Shadow Ball", "Thunderbolt", "Trick"], "teraTypes": ["Ghost", "Fire", "Fairy", "Electric"] }] }, "honchkrow": { "level": 86, "sets": [{ "role": "Wallbreaker", "movepool": ["Brave Bird", "Heat Wave", "Sucker Punch", "U-turn"], "teraTypes": ["Dark", "Flying"] }] }, "skuntank": { "level": 88, "sets": [{ "role": "Fast Support", "movepool": ["Crunch", "Fire Blast", "Gunk Shot", "Sucker Punch", "Taunt", "Toxic Spikes"], "teraTypes": ["Dark", "Poison"] }] }, "bronzong": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Hypnosis", "Iron Head", "Light Screen", "Psychic", "Reflect", "Stealth Rock"], "teraTypes": ["Water", "Electric"] }] }, "spiritomb": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Foul Play", "Pain Split", "Shadow Sneak", "Sucker Punch", "Will-O-Wisp"], "teraTypes": ["Dark"] }, { "role": "Bulky Setup", "movepool": ["Calm Mind", "Dark Pulse", "Rest", "Sleep Talk"], "teraTypes": ["Dark", "Steel"] }] }, "garchomp": { "level": 78, "sets": [{ "role": "Fast Support", "movepool": ["Draco Meteor", "Earthquake", "Fire Blast", "Stealth Rock", "Stone Edge"], "teraTypes": ["Ground", "Steel"] }, { "role": "Fast Attacker", "movepool": ["Earthquake", "Fire Fang", "Outrage", "Stone Edge", "Swords Dance"], "teraTypes": ["Ground", "Dragon"] }] }, "lucario": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Extreme Speed", "Meteor Mash", "Stone Edge", "Swords Dance"], "teraTypes": ["Normal", "Fighting", "Steel"] }, { "role": "Setup Sweeper", "movepool": ["Aura Sphere", "Dark Pulse", "Flash Cannon", "Focus Blast", "Nasty Plot", "Vacuum Wave"], "teraTypes": ["Fighting"] }] }, "hippowdon": { "level": 82, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Slack Off", "Stealth Rock", "Stone Edge", "Whirlwind", "Yawn"], "teraTypes": ["Fairy", "Rock", "Steel"] }] }, "toxicroak": { "level": 85, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Gunk Shot", "Ice Punch", "Sucker Punch", "Swords Dance"], "teraTypes": ["Dark", "Fighting"] }] }, "lumineon": { "level": 90, "sets": [{ "role": "Fast Attacker", "movepool": ["Dazzling Gleam", "Encore", "Hydro Pump", "Ice Beam", "U-turn"], "teraTypes": ["Water", "Fairy"] }] }, "abomasnow": { "level": 87, "sets": [{ "role": "Bulky Support", "movepool": ["Aurora Veil", "Blizzard", "Earthquake", "Ice Shard", "Wood Hammer"], "teraTypes": ["Ice"] }] }, "weavile": { "level": 83, "sets": [{ "role": "Fast Attacker", "movepool": ["Ice Shard", "Ice Spinner", "Low Kick", "Night Slash", "Swords Dance"], "teraTypes": ["Ice", "Fighting"] }] }, "sneasler": { "level": 77, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Dire Claw", "Gunk Shot", "Night Slash", "U-turn"], "teraTypes": ["Dark", "Fighting"] }, { "role": "Setup Sweeper", "movepool": ["Acrobatics", "Close Combat", "Gunk Shot", "Swords Dance"], "teraTypes": ["Flying"] }] }, "magnezone": { "level": 84, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Press", "Flash Cannon", "Mirror Coat", "Steel Beam", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric", "Water", "Flying"] }, { "role": "Tera Blast user", "movepool": ["Flash Cannon", "Tera Blast", "Thunderbolt", "Volt Switch"], "teraTypes": ["Water", "Fire"] }] }, "leafeon": { "level": 87, "sets": [{ "role": "Setup Sweeper", "movepool": ["Double-Edge", "Leaf Blade", "Substitute", "Swords Dance", "Synthesis", "X-Scissor"], "teraTypes": ["Normal"] }] }, "glaceon": { "level": 91, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Freeze-Dry", "Protect", "Wish"], "teraTypes": ["Water"] }] }, "gallade": { "level": 83, "sets": [{ "role": "Fast Attacker", "movepool": ["Leaf Blade", "Night Slash", "Psycho Cut", "Sacred Sword", "Swords Dance"], "teraTypes": ["Fighting", "Grass", "Dark"] }] }, "froslass": { "level": 86, "sets": [{ "role": "Fast Support", "movepool": ["Destiny Bond", "Ice Beam", "Shadow Ball", "Spikes", "Taunt", "Will-O-Wisp"], "teraTypes": ["Ghost"] }] }, "rotom": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Nasty Plot", "Shadow Ball", "Thunderbolt", "Trick", "Volt Switch", "Will-O-Wisp"], "teraTypes": ["Ghost", "Electric"] }] }, "rotomwash": { "level": 82, "sets": [{ "role": "Bulky Attacker", "movepool": ["Discharge", "Hydro Pump", "Nasty Plot", "Trick", "Volt Switch", "Will-O-Wisp"], "teraTypes": ["Water", "Electric"] }] }, "rotomheat": { "level": 82, "sets": [{ "role": "Bulky Attacker", "movepool": ["Nasty Plot", "Overheat", "Thunderbolt", "Trick", "Volt Switch", "Will-O-Wisp"], "teraTypes": ["Fire", "Electric"] }] }, "rotomfrost": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Blizzard", "Nasty Plot", "Thunderbolt", "Volt Switch", "Will-O-Wisp"], "teraTypes": ["Electric"] }] }, "rotomfan": { "level": 86, "sets": [{ "role": "Bulky Attacker", "movepool": ["Air Slash", "Nasty Plot", "Thunderbolt", "Volt Switch", "Will-O-Wisp"], "teraTypes": ["Electric"] }] }, "rotommow": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Leaf Storm", "Nasty Plot", "Thunderbolt", "Trick", "Volt Switch", "Will-O-Wisp"], "teraTypes": ["Grass", "Electric"] }] }, "uxie": { "level": 86, "sets": [{ "role": "Fast Support", "movepool": ["Encore", "Light Screen", "Psychic", "Reflect", "Stealth Rock", "Thunder Wave", "U-turn", "Yawn"], "teraTypes": ["Steel", "Electric"] }] }, "mesprit": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Dazzling Gleam", "Energy Ball", "Healing Wish", "Ice Beam", "Nasty Plot", "Psychic", "Thunderbolt", "Trick", "U-turn"], "teraTypes": ["Psychic", "Fairy", "Electric"] }] }, "azelf": { "level": 82, "sets": [{ "role": "Fast Support", "movepool": ["Explosion", "Fire Blast", "Psychic", "Stealth Rock", "Taunt", "U-turn"], "teraTypes": ["Psychic", "Fire"] }, { "role": "Fast Attacker", "movepool": ["Dazzling Gleam", "Energy Ball", "Fire Blast", "Nasty Plot", "Psychic", "Psyshock", "Trick", "U-turn"], "teraTypes": ["Psychic", "Fairy", "Fire"] }] }, "dialga": { "level": 76, "sets": [{ "role": "Bulky Attacker", "movepool": ["Draco Meteor", "Fire Blast", "Flash Cannon", "Stealth Rock", "Thunder Wave", "Thunderbolt", "Trick"], "teraTypes": ["Dragon", "Steel", "Fire"] }] }, "dialgaorigin": { "level": 76, "sets": [{ "role": "Bulky Attacker", "movepool": ["Draco Meteor", "Fire Blast", "Flash Cannon", "Stealth Rock", "Thunder Wave"], "teraTypes": ["Dragon", "Steel", "Fire"] }] }, "palkia": { "level": 76, "sets": [{ "role": "Fast Attacker", "movepool": ["Draco Meteor", "Fire Blast", "Hydro Pump", "Spacial Rend"], "teraTypes": ["Dragon", "Water"] }, { "role": "Bulky Attacker", "movepool": ["Draco Meteor", "Fire Blast", "Hydro Pump", "Spacial Rend", "Thunder Wave"], "teraTypes": ["Dragon", "Water"] }] }, "palkiaorigin": { "level": 74, "sets": [{ "role": "Bulky Attacker", "movepool": ["Draco Meteor", "Fire Blast", "Hydro Pump", "Spacial Rend", "Thunder Wave"], "teraTypes": ["Dragon", "Water"] }] }, "heatran": { "level": 80, "sets": [{ "role": "Bulky Support", "movepool": ["Earth Power", "Flash Cannon", "Lava Plume", "Magma Storm", "Stealth Rock"], "teraTypes": ["Flying", "Grass", "Steel"] }] }, "giratina": { "level": 76, "sets": [{ "role": "Bulky Support", "movepool": ["Dragon Tail", "Rest", "Shadow Ball", "Sleep Talk", "Will-O-Wisp"], "teraTypes": ["Ghost"] }, { "role": "Bulky Setup", "movepool": ["Calm Mind", "Dragon Pulse", "Rest", "Sleep Talk"], "teraTypes": ["Dragon"] }] }, "giratinaorigin": { "level": 75, "sets": [{ "role": "Bulky Support", "movepool": ["Defog", "Draco Meteor", "Dragon Tail", "Earthquake", "Outrage", "Shadow Ball", "Shadow Sneak", "Will-O-Wisp"], "teraTypes": ["Dragon", "Ghost"] }] }, "cresselia": { "level": 81, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Moonblast", "Moonlight", "Psychic", "Psyshock", "Thunderbolt"], "teraTypes": ["Fairy", "Electric", "Poison", "Steel"] }] }, "arceus": { "level": 70, "sets": [{ "role": "Setup Sweeper", "movepool": ["Earthquake", "Extreme Speed", "Recover", "Shadow Claw", "Swords Dance"], "teraTypes": ["Normal"] }] }, "arceusbug": { "level": 72, "sets": [{ "role": "Setup Sweeper", "movepool": ["Calm Mind", "Earth Power", "Ice Beam", "Judgment"], "teraTypes": ["Ground"] }, { "role": "Bulky Setup", "movepool": ["Calm Mind", "Fire Blast", "Judgment", "Recover"], "teraTypes": ["Fire"] }] }, "arceusdark": { "level": 70, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Fire Blast", "Judgment", "Recover", "Sludge Bomb"], "teraTypes": ["Ghost", "Poison", "Fire"] }] }, "arceusdragon": { "level": 70, "sets": [{ "role": "Setup Sweeper", "movepool": ["Earthquake", "Extreme Speed", "Gunk Shot", "Outrage", "Swords Dance"], "teraTypes": ["Ground"] }, { "role": "Bulky Setup", "movepool": ["Calm Mind", "Fire Blast", "Judgment", "Sludge Bomb"], "teraTypes": ["Fire"] }] }, "arceuselectric": { "level": 70, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Ice Beam", "Judgment", "Recover"], "teraTypes": ["Electric", "Ice"] }] }, "arceusfairy": { "level": 70, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Earth Power", "Fire Blast", "Judgment", "Recover"], "teraTypes": ["Steel", "Ground", "Fire"] }] }, "arceusfighting": { "level": 68, "sets": [{ "role": "Bulky Setup", "movepool": ["Body Press", "Cosmic Power", "Recover", "Stored Power"], "teraTypes": ["Steel", "Psychic"] }] }, "arceusfire": { "level": 72, "sets": [{ "role": "Setup Sweeper", "movepool": ["Earthquake", "Extreme Speed", "Flare Blitz", "Liquidation", "Recover", "Swords Dance"], "teraTypes": ["Fire", "Ground", "Water"] }, { "role": "Fast Bulky Setup", "movepool": ["Calm Mind", "Earth Power", "Ice Beam", "Judgment", "Recover", "Thunderbolt"], "teraTypes": ["Ground", "Electric"] }] }, "arceusflying": { "level": 71, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Earth Power", "Judgment", "Recover"], "teraTypes": ["Steel", "Ground"] }] }, "arceusghost": { "level": 70, "sets": [{ "role": "Bulky Support", "movepool": ["Focus Blast", "Hex", "Recover", "Will-O-Wisp"], "teraTypes": ["Fighting", "Normal"] }, { "role": "Bulky Setup", "movepool": ["Calm Mind", "Focus Blast", "Judgment", "Recover"], "teraTypes": ["Fighting", "Normal", "Ghost"] }] }, "arceusgrass": { "level": 72, "sets": [{ "role": "Setup Sweeper", "movepool": ["Calm Mind", "Earth Power", "Ice Beam", "Judgment"], "teraTypes": ["Ground"] }, { "role": "Bulky Setup", "movepool": ["Calm Mind", "Fire Blast", "Judgment", "Recover"], "teraTypes": ["Fire"] }] }, "arceusground": { "level": 70, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Fire Blast", "Ice Beam", "Judgment", "Recover"], "teraTypes": ["Ground", "Dragon"] }, { "role": "Setup Sweeper", "movepool": ["Earthquake", "Extreme Speed", "Stone Edge", "Swords Dance"], "teraTypes": ["Normal"] }] }, "arceusice": { "level": 72, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Earth Power", "Judgment", "Recover", "Thunderbolt"], "teraTypes": ["Electric", "Ground"] }] }, "arceuspoison": { "level": 72, "sets": [{ "role": "Setup Sweeper", "movepool": ["Earthquake", "Flare Blitz", "Gunk Shot", "Liquidation", "Recover", "Swords Dance"], "teraTypes": ["Ground", "Fire", "Water"] }] }, "arceuspsychic": { "level": 68, "sets": [{ "role": "Bulky Setup", "movepool": ["Body Press", "Cosmic Power", "Recover", "Stored Power"], "teraTypes": ["Steel"] }] }, "arceusrock": { "level": 71, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Earth Power", "Fire Blast", "Judgment", "Recover"], "teraTypes": ["Ground", "Dragon"] }] }, "arceussteel": { "level": 70, "sets": [{ "role": "Setup Sweeper", "movepool": ["Calm Mind", "Earth Power", "Judgment", "Recover", "Will-O-Wisp"], "teraTypes": ["Ghost"] }] }, "arceuswater": { "level": 70, "sets": [{ "role": "Bulky Support", "movepool": ["Ice Beam", "Judgment", "Recover", "Taunt", "Will-O-Wisp"], "teraTypes": ["Steel"] }] }, "samurott": { "level": 88, "sets": [{ "role": "AV Pivot", "movepool": ["Aqua Jet", "Grass Knot", "Hydro Pump", "Ice Beam", "Knock Off", "Megahorn", "Sacred Sword"], "teraTypes": ["Water", "Dark"] }, { "role": "Fast Attacker", "movepool": ["Aqua Jet", "Knock Off", "Liquidation", "Megahorn", "Sacred Sword", "Swords Dance"], "teraTypes": ["Water", "Dark"] }] }, "samurotthisui": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Aqua Jet", "Ceaseless Edge", "Razor Shell", "Sucker Punch", "Swords Dance", "X-Scissor"], "teraTypes": ["Water", "Dark"] }] }, "lilligant": { "level": 86, "sets": [{ "role": "Tera Blast user", "movepool": ["Giga Drain", "Pollen Puff", "Quiver Dance", "Sleep Powder", "Tera Blast"], "teraTypes": ["Fire"] }, { "role": "Setup Sweeper", "movepool": ["Petal Dance", "Pollen Puff", "Quiver Dance", "Sleep Powder"], "teraTypes": ["Grass"] }] }, "lilliganthisui": { "level": 80, "sets": [{ "role": "Setup Sweeper", "movepool": ["Close Combat", "Ice Spinner", "Leaf Blade", "Sleep Powder", "Victory Dance"], "teraTypes": ["Fighting"] }, { "role": "Fast Support", "movepool": ["Close Combat", "Defog", "Ice Spinner", "Leaf Blade", "Sleep Powder"], "teraTypes": ["Fighting"] }] }, "basculin": { "level": 86, "sets": [{ "role": "Wallbreaker", "movepool": ["Aqua Jet", "Crunch", "Head Smash", "Psychic Fangs", "Wave Crash"], "teraTypes": ["Water"] }] }, "basculinbluestriped": { "level": 86, "sets": [{ "role": "Wallbreaker", "movepool": ["Aqua Jet", "Crunch", "Head Smash", "Psychic Fangs", "Wave Crash"], "teraTypes": ["Water"] }] }, "basculegion": { "level": 73, "sets": [{ "role": "Fast Attacker", "movepool": ["Aqua Jet", "Head Smash", "Last Respects", "Wave Crash"], "teraTypes": ["Ghost"] }] }, "basculegionf": { "level": 73, "sets": [{ "role": "Wallbreaker", "movepool": ["Hydro Pump", "Ice Beam", "Last Respects", "Wave Crash"], "teraTypes": ["Ghost"] }] }, "krookodile": { "level": 83, "sets": [{ "role": "Fast Attacker", "movepool": ["Bulk Up", "Crunch", "Earthquake", "Gunk Shot", "Stealth Rock", "Stone Edge"], "teraTypes": ["Poison", "Ground"] }] }, "zoroark": { "sets": [{ "role": "Fast Attacker", "movepool": ["Dark Pulse", "Flamethrower", "Focus Blast", "Nasty Plot", "Sludge Bomb", "Trick", "U-turn"], "teraTypes": ["Poison"] }] }, "zoroarkhisui": { "sets": [{ "role": "Wallbreaker", "movepool": ["Bitter Malice", "Flamethrower", "Focus Blast", "Hyper Voice", "Nasty Plot", "Shadow Ball", "Trick", "U-turn"], "teraTypes": ["Normal"] }] }, "gothitelle": { "level": 85, "sets": [{ "role": "Bulky Attacker", "movepool": ["Nasty Plot", "Psychic", "Shadow Ball", "Thunderbolt", "Trick"], "teraTypes": ["Psychic", "Ghost", "Electric"] }] }, "sawsbuck": { "level": 88, "sets": [{ "role": "Setup Sweeper", "movepool": ["Double-Edge", "Headbutt", "Horn Leech", "Stomping Tantrum", "Swords Dance"], "teraTypes": ["Normal"] }] }, "amoonguss": { "level": 82, "sets": [{ "role": "Bulky Support", "movepool": ["Clear Smog", "Giga Drain", "Sludge Bomb", "Spore", "Toxic"], "teraTypes": ["Steel", "Water"] }] }, "alomomola": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Body Slam", "Liquidation", "Mirror Coat", "Protect", "Wish"], "teraTypes": ["Steel"] }] }, "eelektross": { "level": 86, "sets": [{ "role": "Bulky Setup", "movepool": ["Coil", "Drain Punch", "Fire Punch", "Liquidation", "Wild Charge"], "teraTypes": ["Electric", "Fighting"] }, { "role": "AV Pivot", "movepool": ["Close Combat", "Flamethrower", "Giga Drain", "Thunderbolt", "U-turn"], "teraTypes": ["Electric"] }] }, "haxorus": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Dragon Dance", "Earthquake", "Outrage", "Poison Jab"], "teraTypes": ["Fighting", "Ground"] }] }, "beartic": { "level": 89, "sets": [{ "role": "Wallbreaker", "movepool": ["Aqua Jet", "Close Combat", "Earthquake", "Icicle Crash", "Snowscape", "Swords Dance"], "teraTypes": ["Fighting", "Ice", "Ground"] }] }, "cryogonal": { "level": 87, "sets": [{ "role": "Bulky Support", "movepool": ["Flash Cannon", "Freeze-Dry", "Haze", "Rapid Spin", "Recover"], "teraTypes": ["Steel"] }] }, "braviary": { "level": 86, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Brave Bird", "Bulk Up", "Close Combat", "Roost"], "teraTypes": ["Flying", "Fighting"] }] }, "braviaryhisui": { "level": 83, "sets": [{ "role": "Fast Support", "movepool": ["Defog", "Heat Wave", "Hurricane", "Psychic"], "teraTypes": ["Psychic", "Flying"] }, { "role": "Wallbreaker", "movepool": ["Calm Mind", "Esper Wing", "Heat Wave", "Hurricane", "U-turn"], "teraTypes": ["Psychic", "Flying"] }] }, "hydreigon": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Dark Pulse", "Draco Meteor", "Fire Blast", "Flash Cannon", "Nasty Plot", "U-turn"], "teraTypes": ["Dark", "Dragon", "Fire", "Steel"] }] }, "volcarona": { "level": 77, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Bug Buzz", "Fiery Dance", "Fire Blast", "Giga Drain", "Morning Sun", "Quiver Dance"], "teraTypes": ["Fire", "Grass", "Water"] }] }, "tornadus": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Bleakwind Storm", "Focus Blast", "Grass Knot", "Heat Wave", "Nasty Plot", "U-turn"], "teraTypes": ["Flying", "Fire"] }] }, "tornadustherian": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Bleakwind Storm", "Focus Blast", "Grass Knot", "Heat Wave", "Nasty Plot", "U-turn"], "teraTypes": ["Flying", "Fire"] }] }, "thundurus": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Focus Blast", "Grass Knot", "Nasty Plot", "Sludge Bomb", "Taunt", "Thunder Wave", "Thunderbolt", "U-turn"], "teraTypes": ["Electric", "Grass"] }, { "role": "Tera Blast user", "movepool": ["Focus Blast", "Nasty Plot", "Tera Blast", "Thunderbolt"], "teraTypes": ["Flying"] }] }, "thundurustherian": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Focus Blast", "Grass Knot", "Nasty Plot", "Psychic", "Sludge Bomb", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric", "Psychic", "Poison"] }, { "role": "Tera Blast user", "movepool": ["Focus Blast", "Nasty Plot", "Tera Blast", "Thunderbolt"], "teraTypes": ["Flying"] }] }, "landorus": { "level": 76, "sets": [{ "role": "Fast Attacker", "movepool": ["Earth Power", "Focus Blast", "Nasty Plot", "Psychic", "Rock Slide", "Sludge Bomb", "Stealth Rock"], "teraTypes": ["Ground", "Psychic", "Poison"] }] }, "landorustherian": { "level": 78, "sets": [{ "role": "Fast Support", "movepool": ["Earthquake", "Stealth Rock", "Stone Edge", "Taunt", "U-turn"], "teraTypes": ["Ground"] }, { "role": "Tera Blast user", "movepool": ["Earthquake", "Stone Edge", "Swords Dance", "Tera Blast"], "teraTypes": ["Flying"] }] }, "meloetta": { "level": 83, "sets": [{ "role": "Fast Attacker", "movepool": ["Calm Mind", "Focus Blast", "Hyper Voice", "Psyshock", "U-turn"], "teraTypes": ["Normal", "Psychic", "Fighting"] }] }, "chesnaught": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Body Press", "Leech Seed", "Spikes", "Spiky Shield", "Synthesis", "Wood Hammer"], "teraTypes": ["Steel", "Water"] }, { "role": "Bulky Setup", "movepool": ["Body Press", "Iron Defense", "Synthesis", "Trailblaze"], "teraTypes": ["Steel"] }] }, "delphox": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Fire Blast", "Grass Knot", "Nasty Plot", "Psyshock", "Switcheroo"], "teraTypes": ["Fire", "Psychic"] }] }, "greninja": { "level": 81, "sets": [{ "role": "Fast Attacker", "movepool": ["Dark Pulse", "Grass Knot", "Gunk Shot", "Hydro Pump", "Ice Beam", "Toxic Spikes", "U-turn"], "teraTypes": ["Water", "Dark", "Poison"] }] }, "talonflame": { "level": 85, "sets": [{ "role": "Bulky Support", "movepool": ["Brave Bird", "Defog", "Overheat", "Roost", "Taunt", "U-turn", "Will-O-Wisp"], "teraTypes": ["Water", "Ground"] }, { "role": "Tera Blast user", "movepool": ["Brave Bird", "Flare Blitz", "Swords Dance", "Tera Blast"], "teraTypes": ["Ground"] }] }, "vivillon": { "level": 86, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Bug Buzz", "Energy Ball", "Hurricane", "Quiver Dance", "Sleep Powder", "Substitute"], "teraTypes": ["Flying"] }, { "role": "Tera Blast user", "movepool": ["Hurricane", "Quiver Dance", "Sleep Powder", "Substitute", "Tera Blast"], "teraTypes": ["Ground"] }] }, "pyroar": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Dark Pulse", "Fire Blast", "Hyper Voice", "Will-O-Wisp", "Work Up"], "teraTypes": ["Fire"] }] }, "florges": { "level": 85, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Moonblast", "Protect", "Wish"], "teraTypes": ["Steel"] }, { "role": "Tera Blast user", "movepool": ["Calm Mind", "Moonblast", "Synthesis", "Tera Blast"], "teraTypes": ["Ground"] }] }, "gogoat": { "level": 87, "sets": [{ "role": "Bulky Setup", "movepool": ["Bulk Up", "Earthquake", "Horn Leech", "Milk Drink"], "teraTypes": ["Ground"] }] }, "dragalge": { "level": 85, "sets": [{ "role": "Bulky Attacker", "movepool": ["Draco Meteor", "Focus Blast", "Sludge Bomb", "Thunderbolt", "Toxic", "Toxic Spikes"], "teraTypes": ["Dragon", "Poison"] }] }, "clawitzer": { "level": 86, "sets": [{ "role": "Wallbreaker", "movepool": ["Aura Sphere", "Dark Pulse", "Dragon Pulse", "U-turn", "Water Pulse"], "teraTypes": ["Dark", "Dragon", "Fighting"] }] }, "sylveon": { "level": 83, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Hyper Voice", "Protect", "Wish"], "teraTypes": ["Steel"] }] }, "hawlucha": { "level": 82, "sets": [{ "role": "Setup Sweeper", "movepool": ["Acrobatics", "Brave Bird", "Close Combat", "Stone Edge", "Swords Dance"], "teraTypes": ["Fighting", "Flying"] }] }, "dedenne": { "level": 88, "sets": [{ "role": "Fast Support", "movepool": ["Dazzling Gleam", "Nuzzle", "Super Fang", "Thunderbolt", "U-turn"], "teraTypes": ["Electric"] }] }, "carbink": { "level": 89, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Press", "Moonblast", "Power Gem", "Spikes", "Stealth Rock"], "teraTypes": ["Fighting"] }, { "role": "Bulky Support", "movepool": ["Body Press", "Light Screen", "Moonblast", "Reflect", "Stealth Rock"], "teraTypes": ["Water", "Steel"] }] }, "goodra": { "level": 86, "sets": [{ "role": "Bulky Attacker", "movepool": ["Draco Meteor", "Earthquake", "Fire Blast", "Power Whip", "Sludge Bomb", "Thunderbolt"], "teraTypes": ["Dragon", "Ground", "Fire", "Grass", "Poison", "Electric"] }] }, "goodrahisui": { "level": 85, "sets": [{ "role": "AV Pivot", "movepool": ["Draco Meteor", "Dragon Tail", "Earthquake", "Fire Blast", "Heavy Slam", "Hydro Pump", "Thunderbolt"], "teraTypes": ["Dragon", "Ground", "Fire", "Steel", "Water", "Electric"] }, { "role": "Bulky Setup", "movepool": ["Body Press", "Curse", "Heavy Slam", "Rest"], "teraTypes": ["Fighting"] }] }, "klefki": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Magnet Rise", "Play Rough", "Spikes", "Thunder Wave"], "teraTypes": ["Water"] }] }, "avalugg": { "level": 86, "sets": [{ "role": "Bulky Attacker", "movepool": ["Avalanche", "Body Press", "Curse", "Rapid Spin", "Recover"], "teraTypes": ["Fighting"] }] }, "avalugghisui": { "level": 88, "sets": [{ "role": "Bulky Attacker", "movepool": ["Avalanche", "Body Press", "Curse", "Recover", "Stone Edge"], "teraTypes": ["Poison", "Flying"] }] }, "noivern": { "level": 83, "sets": [{ "role": "Fast Attacker", "movepool": ["Boomburst", "Draco Meteor", "Flamethrower", "Hurricane", "Roost", "U-turn"], "teraTypes": ["Normal"] }, { "role": "Fast Support", "movepool": ["Defog", "Draco Meteor", "Flamethrower", "Hurricane", "Roost", "U-turn"], "teraTypes": ["Fire"] }] }, "diancie": { "level": 83, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Press", "Diamond Storm", "Earth Power", "Moonblast", "Stealth Rock"], "teraTypes": ["Fighting"] }] }, "hoopa": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Focus Blast", "Nasty Plot", "Psyshock", "Shadow Ball", "Substitute", "Trick"], "teraTypes": ["Psychic", "Ghost", "Fighting"] }] }, "hoopaunbound": { "level": 80, "sets": [{ "role": "Wallbreaker", "movepool": ["Drain Punch", "Gunk Shot", "Hyperspace Fury", "Trick", "Zen Headbutt"], "teraTypes": ["Dark", "Fighting", "Poison"] }, { "role": "Fast Attacker", "movepool": ["Dark Pulse", "Focus Blast", "Nasty Plot", "Psyshock", "Trick"], "teraTypes": ["Dark", "Fighting", "Psychic"] }, { "role": "AV Pivot", "movepool": ["Focus Blast", "Gunk Shot", "Hyperspace Fury", "Psychic"], "teraTypes": ["Dark", "Fighting", "Psychic", "Poison"] }] }, "volcanion": { "level": 80, "sets": [{ "role": "Bulky Attacker", "movepool": ["Earth Power", "Flame Charge", "Flamethrower", "Sludge Bomb", "Steam Eruption"], "teraTypes": ["Water", "Fire", "Ground"] }] }, "decidueye": { "level": 86, "sets": [{ "role": "Fast Support", "movepool": ["Defog", "Knock Off", "Leaf Storm", "Roost", "Spirit Shackle", "U-turn"], "teraTypes": ["Dark", "Ghost", "Grass"] }, { "role": "Setup Sweeper", "movepool": ["Leaf Blade", "Shadow Sneak", "Spirit Shackle", "Swords Dance"], "teraTypes": ["Ghost"] }] }, "decidueyehisui": { "level": 88, "sets": [{ "role": "Bulky Attacker", "movepool": ["Defog", "Leaf Blade", "Sucker Punch", "Swords Dance", "Synthesis", "Triple Arrows", "U-turn"], "teraTypes": ["Fighting", "Steel"] }] }, "gumshoos": { "level": 90, "sets": [{ "role": "Wallbreaker", "movepool": ["Body Slam", "Crunch", "Earthquake", "Psychic Fangs", "U-turn"], "teraTypes": ["Ground"] }] }, "crabominable": { "level": 89, "sets": [{ "role": "Wallbreaker", "movepool": ["Close Combat", "Drain Punch", "Earthquake", "Gunk Shot", "Ice Hammer"], "teraTypes": ["Fighting", "Ground"] }] }, "oricorio": { "level": 84, "sets": [{ "role": "Setup Sweeper", "movepool": ["Hurricane", "Quiver Dance", "Revelation Dance", "Roost", "Substitute"], "teraTypes": ["Ground"] }, { "role": "Fast Support", "movepool": ["Defog", "Hurricane", "Revelation Dance", "Roost"], "teraTypes": ["Ground"] }] }, "oricoriopompom": { "level": 83, "sets": [{ "role": "Setup Sweeper", "movepool": ["Hurricane", "Quiver Dance", "Revelation Dance", "Roost", "Substitute"], "teraTypes": ["Electric", "Ground"] }, { "role": "Fast Support", "movepool": ["Defog", "Hurricane", "Revelation Dance", "Roost"], "teraTypes": ["Electric"] }] }, "oricoriopau": { "level": 83, "sets": [{ "role": "Setup Sweeper", "movepool": ["Hurricane", "Quiver Dance", "Revelation Dance", "Roost", "Substitute"], "teraTypes": ["Ground"] }, { "role": "Fast Support", "movepool": ["Defog", "Hurricane", "Revelation Dance", "Roost"], "teraTypes": ["Ground"] }] }, "oricoriosensu": { "level": 83, "sets": [{ "role": "Setup Sweeper", "movepool": ["Hurricane", "Quiver Dance", "Revelation Dance", "Roost", "Substitute"], "teraTypes": ["Ghost", "Fighting"] }, { "role": "Fast Support", "movepool": ["Defog", "Hurricane", "Revelation Dance", "Roost"], "teraTypes": ["Ghost"] }] }, "lycanroc": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Accelerock", "Close Combat", "Crunch", "Drill Run", "Psychic Fangs", "Stealth Rock", "Stone Edge", "Swords Dance", "Taunt"], "teraTypes": ["Fighting"] }] }, "lycanrocmidnight": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Psychic Fangs", "Stealth Rock", "Stone Edge", "Swords Dance"], "teraTypes": ["Rock", "Fighting"] }] }, "lycanrocdusk": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Accelerock", "Close Combat", "Crunch", "Drill Run", "Psychic Fangs", "Stone Edge", "Swords Dance"], "teraTypes": ["Fighting"] }] }, "toxapex": { "level": 82, "sets": [{ "role": "Bulky Support", "movepool": ["Haze", "Liquidation", "Recover", "Toxic", "Toxic Spikes"], "teraTypes": ["Steel", "Flying", "Grass", "Fairy"] }] }, "mudsdale": { "level": 85, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Press", "Earthquake", "Heavy Slam", "Stealth Rock", "Stone Edge"], "teraTypes": ["Fighting"] }] }, "lurantis": { "level": 90, "sets": [{ "role": "Bulky Attacker", "movepool": ["Defog", "Leaf Storm", "Pollen Puff", "Synthesis"], "teraTypes": ["Steel", "Water"] }] }, "salazzle": { "level": 82, "sets": [{ "role": "Fast Support", "movepool": ["Flamethrower", "Protect", "Substitute", "Toxic"], "teraTypes": ["Water", "Flying"] }] }, "tsareena": { "level": 85, "sets": [{ "role": "Fast Support", "movepool": ["High Jump Kick", "Play Rough", "Power Whip", "Rapid Spin", "Synthesis", "U-turn"], "teraTypes": ["Fighting", "Steel"] }] }, "oranguru": { "level": 89, "sets": [{ "role": "Bulky Attacker", "movepool": ["Focus Blast", "Nasty Plot", "Psychic", "Psyshock", "Thunderbolt"], "teraTypes": ["Psychic", "Electric", "Fighting"] }, { "role": "Wallbreaker", "movepool": ["Focus Blast", "Hyper Voice", "Psyshock", "Thunderbolt", "Trick", "Trick Room"], "teraTypes": ["Psychic", "Electric", "Fighting"] }] }, "passimian": { "level": 85, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Gunk Shot", "Knock Off", "Rock Slide", "U-turn"], "teraTypes": ["Dark"] }] }, "palossand": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Earth Power", "Hypnosis", "Shadow Ball", "Shore Up", "Stealth Rock"], "teraTypes": ["Water"] }] }, "komala": { "level": 89, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Slam", "Earthquake", "Gunk Shot", "Play Rough", "Rapid Spin", "Sucker Punch", "Superpower", "U-turn", "Wood Hammer"], "teraTypes": ["Normal", "Ground", "Poison", "Fairy", "Fighting", "Grass"] }] }, "mimikyu": { "level": 82, "sets": [{ "role": "Setup Sweeper", "movepool": ["Drain Punch", "Play Rough", "Shadow Claw", "Shadow Sneak", "Swords Dance", "Wood Hammer"], "teraTypes": ["Fighting", "Grass", "Fairy", "Ghost"] }] }, "bruxish": { "level": 85, "sets": [{ "role": "Fast Attacker", "movepool": ["Aqua Jet", "Crunch", "Ice Fang", "Psychic Fangs", "Swords Dance", "Wave Crash"], "teraTypes": ["Dark", "Psychic"] }] }, "magearna": { "level": 79, "sets": [{ "role": "Bulky Attacker", "movepool": ["Aura Sphere", "Flash Cannon", "Fleur Cannon", "Ice Beam", "Pain Split", "Spikes", "Volt Switch"], "teraTypes": ["Fairy", "Steel", "Fighting", "Water"] }, { "role": "Bulky Setup", "movepool": ["Calm Mind", "Flash Cannon", "Fleur Cannon", "Shift Gear"], "teraTypes": ["Water", "Steel", "Fairy", "Flying"] }, { "role": "Tera Blast user", "movepool": ["Fleur Cannon", "Iron Head", "Shift Gear", "Tera Blast", "Thunderbolt"], "teraTypes": ["Ground"] }] }, "rillaboom": { "level": 83, "sets": [{ "role": "Setup Sweeper", "movepool": ["Acrobatics", "Knock Off", "Stomping Tantrum", "Swords Dance", "Wood Hammer"], "teraTypes": ["Flying", "Grass"] }, { "role": "Fast Attacker", "movepool": ["Knock Off", "Stomping Tantrum", "U-turn", "Wood Hammer"], "teraTypes": ["Grass"] }] }, "cinderace": { "level": 79, "sets": [{ "role": "Fast Attacker", "movepool": ["Court Change", "Gunk Shot", "High Jump Kick", "Pyro Ball", "Sucker Punch", "U-turn"], "teraTypes": ["Fire", "Fighting", "Poison"] }] }, "inteleon": { "level": 83, "sets": [{ "role": "Fast Attacker", "movepool": ["Air Slash", "Dark Pulse", "Hydro Pump", "Ice Beam", "Surf", "U-turn"], "teraTypes": ["Water"] }, { "role": "Tera Blast user", "movepool": ["Hydro Pump", "Ice Beam", "Tera Blast", "U-turn"], "teraTypes": ["Electric"] }] }, "greedent": { "level": 88, "sets": [{ "role": "Bulky Setup", "movepool": ["Body Slam", "Crunch", "Earthquake", "Fire Fang", "Psychic Fangs", "Swords Dance"], "teraTypes": ["Ground", "Psychic"] }] }, "corviknight": { "level": 80, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Press", "Brave Bird", "Bulk Up", "Defog", "Roost"], "teraTypes": ["Fighting"] }] }, "drednaw": { "level": 80, "sets": [{ "role": "Setup Sweeper", "movepool": ["Crunch", "Earthquake", "Liquidation", "Shell Smash", "Stone Edge"], "teraTypes": ["Water", "Ground", "Dark"] }] }, "coalossal": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Overheat", "Rapid Spin", "Spikes", "Stealth Rock", "Stone Edge", "Will-O-Wisp"], "teraTypes": ["Water"] }] }, "flapple": { "level": 85, "sets": [{ "role": "Fast Attacker", "movepool": ["Dragon Dance", "Grav Apple", "Outrage", "Sucker Punch", "U-turn"], "teraTypes": ["Dragon", "Grass"] }] }, "appletun": { "level": 90, "sets": [{ "role": "Bulky Support", "movepool": ["Apple Acid", "Draco Meteor", "Dragon Pulse", "Leech Seed", "Recover"], "teraTypes": ["Grass", "Steel"] }] }, "sandaconda": { "level": 86, "sets": [{ "role": "Bulky Setup", "movepool": ["Coil", "Earthquake", "Glare", "Rest", "Stone Edge"], "teraTypes": ["Dragon", "Steel"] }, { "role": "Bulky Support", "movepool": ["Earthquake", "Glare", "Rest", "Stealth Rock", "Stone Edge"], "teraTypes": ["Dragon", "Water"] }] }, "barraskewda": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Aqua Jet", "Close Combat", "Crunch", "Liquidation", "Poison Jab", "Psychic Fangs"], "teraTypes": ["Fighting"] }] }, "toxtricity": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Boomburst", "Overdrive", "Shift Gear", "Sludge Bomb", "Volt Switch"], "teraTypes": ["Normal"] }] }, "toxtricitylowkey": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Boomburst", "Overdrive", "Sludge Bomb", "Toxic Spikes", "Volt Switch"], "teraTypes": ["Normal"] }] }, "polteageist": { "level": 79, "sets": [{ "role": "Tera Blast user", "movepool": ["Giga Drain", "Shadow Ball", "Shell Smash", "Stored Power", "Strength Sap", "Tera Blast"], "teraTypes": ["Fighting"] }, { "role": "Setup Sweeper", "movepool": ["Giga Drain", "Shadow Ball", "Shell Smash", "Stored Power", "Strength Sap"], "teraTypes": ["Psychic"] }] }, "hatterene": { "level": 85, "sets": [{ "role": "Wallbreaker", "movepool": ["Dazzling Gleam", "Mystical Fire", "Psychic", "Psyshock", "Trick", "Trick Room"], "teraTypes": ["Psychic", "Fairy", "Fire"] }] }, "grimmsnarl": { "level": 82, "sets": [{ "role": "Bulky Support", "movepool": ["Light Screen", "Parting Shot", "Reflect", "Spirit Break", "Thunder Wave"], "teraTypes": ["Fairy"] }, { "role": "Fast Bulky Setup", "movepool": ["Bulk Up", "Crunch", "Rest", "Spirit Break", "Sucker Punch", "Thunder Wave"], "teraTypes": ["Dark"] }, { "role": "Bulky Attacker", "movepool": ["Parting Shot", "Spirit Break", "Sucker Punch", "Taunt", "Thunder Wave"], "teraTypes": ["Fairy"] }] }, "perrserker": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Close Combat", "Crunch", "Iron Head", "Stealth Rock", "U-turn"], "teraTypes": ["Steel", "Fighting"] }] }, "falinks": { "level": 87, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Megahorn", "No Retreat", "Poison Jab", "Rock Slide"], "teraTypes": ["Fighting", "Ghost"] }, { "role": "Tera Blast user", "movepool": ["Close Combat", "No Retreat", "Poison Jab", "Tera Blast"], "teraTypes": ["Ghost"] }] }, "pincurchin": { "level": 91, "sets": [{ "role": "Bulky Attacker", "movepool": ["Discharge", "Liquidation", "Spikes", "Sucker Punch", "Toxic Spikes"], "teraTypes": ["Electric", "Water"] }] }, "frosmoth": { "level": 84, "sets": [{ "role": "Tera Blast user", "movepool": ["Bug Buzz", "Giga Drain", "Hurricane", "Ice Beam", "Quiver Dance", "Tera Blast"], "teraTypes": ["Ground"] }, { "role": "Setup Sweeper", "movepool": ["Bug Buzz", "Giga Drain", "Hurricane", "Ice Beam", "Quiver Dance"], "teraTypes": ["Water"] }] }, "stonjourner": { "level": 89, "sets": [{ "role": "Fast Attacker", "movepool": ["Earthquake", "Heavy Slam", "Rock Polish", "Stealth Rock", "Stone Edge"], "teraTypes": ["Ground"] }] }, "eiscue": { "level": 85, "sets": [{ "role": "Setup Sweeper", "movepool": ["Belly Drum", "Ice Spinner", "Iron Head", "Liquidation", "Substitute", "Zen Headbutt"], "teraTypes": ["Water"] }, { "role": "Tera Blast user", "movepool": ["Belly Drum", "Ice Spinner", "Liquidation", "Substitute", "Tera Blast"], "teraTypes": ["Ground"] }] }, "indeedee": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Calm Mind", "Dazzling Gleam", "Healing Wish", "Hyper Voice", "Psychic", "Psyshock", "Shadow Ball"], "teraTypes": ["Psychic"] }] }, "indeedeef": { "level": 87, "sets": [{ "role": "Fast Attacker", "movepool": ["Calm Mind", "Dazzling Gleam", "Healing Wish", "Hyper Voice", "Psychic", "Psyshock", "Shadow Ball"], "teraTypes": ["Psychic"] }] }, "copperajah": { "level": 86, "sets": [{ "role": "Wallbreaker", "movepool": ["Earthquake", "Iron Head", "Play Rough", "Rock Slide", "Stealth Rock", "Superpower"], "teraTypes": ["Steel", "Fairy"] }] }, "dragapult": { "level": 79, "sets": [{ "role": "Fast Attacker", "movepool": ["Draco Meteor", "Fire Blast", "Shadow Ball", "Thunderbolt", "U-turn"], "teraTypes": ["Ghost", "Dragon"] }, { "role": "Tera Blast user", "movepool": ["Dragon Dance", "Dragon Darts", "Fire Blast", "Tera Blast"], "teraTypes": ["Ghost"] }] }, "zacian": { "level": 71, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Crunch", "Play Rough", "Psychic Fangs", "Swords Dance", "Wild Charge"], "teraTypes": ["Fighting"] }] }, "zaciancrowned": { "level": 68, "sets": [{ "role": "Setup Sweeper", "movepool": ["Behemoth Blade", "Close Combat", "Play Rough", "Swords Dance"], "teraTypes": ["Fighting"] }] }, "zamazenta": { "level": 72, "sets": [{ "role": "Bulky Attacker", "movepool": ["Close Combat", "Crunch", "Iron Head", "Psychic Fangs", "Stone Edge", "Wild Charge"], "teraTypes": ["Fighting", "Dark"] }, { "role": "Bulky Setup", "movepool": ["Body Press", "Crunch", "Iron Defense", "Iron Head", "Rest", "Stone Edge"], "teraTypes": ["Fighting"] }] }, "zamazentacrowned": { "level": 72, "sets": [{ "role": "Bulky Setup", "movepool": ["Behemoth Bash", "Body Press", "Crunch", "Iron Defense", "Psychic Fangs", "Stone Edge"], "teraTypes": ["Fighting"] }] }, "eternatus": { "level": 71, "sets": [{ "role": "Bulky Attacker", "movepool": ["Dynamax Cannon", "Fire Blast", "Recover", "Sludge Bomb"], "teraTypes": ["Dragon"] }, { "role": "Bulky Support", "movepool": ["Dynamax Cannon", "Flamethrower", "Recover", "Toxic", "Toxic Spikes"], "teraTypes": ["Dragon"] }] }, "urshifu": { "level": 77, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Poison Jab", "Sucker Punch", "Swords Dance", "U-turn", "Wicked Blow"], "teraTypes": ["Dark", "Fighting"] }] }, "urshifurapidstrike": { "level": 77, "sets": [{ "role": "Fast Attacker", "movepool": ["Aqua Jet", "Close Combat", "Ice Spinner", "Surging Strikes", "Swords Dance", "U-turn"], "teraTypes": ["Water"] }] }, "zarude": { "level": 81, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Close Combat", "Crunch", "Power Whip", "Swords Dance", "Synthesis"], "teraTypes": ["Dark", "Grass", "Fighting"] }, { "role": "Fast Attacker", "movepool": ["Close Combat", "Crunch", "Power Whip", "U-turn"], "teraTypes": ["Dark", "Grass", "Fighting"] }] }, "regieleki": { "level": 78, "sets": [{ "role": "Fast Support", "movepool": ["Explosion", "Rapid Spin", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric"] }, { "role": "Tera Blast user", "movepool": ["Rapid Spin", "Tera Blast", "Thunderbolt", "Volt Switch"], "teraTypes": ["Ice"] }] }, "regidrago": { "level": 81, "sets": [{ "role": "Bulky Attacker", "movepool": ["Draco Meteor", "Dragon Dance", "Earthquake", "Fire Fang", "Outrage"], "teraTypes": ["Dragon"] }, { "role": "Tera Blast user", "movepool": ["Dragon Claw", "Dragon Dance", "Earthquake", "Tera Blast"], "teraTypes": ["Steel"] }] }, "glastrier": { "level": 86, "sets": [{ "role": "Bulky Attacker", "movepool": ["Close Combat", "Crunch", "Heavy Slam", "Icicle Crash", "Stomping Tantrum", "Swords Dance"], "teraTypes": ["Fighting", "Steel"] }] }, "spectrier": { "level": 75, "sets": [{ "role": "Setup Sweeper", "movepool": ["Dark Pulse", "Nasty Plot", "Shadow Ball", "Substitute", "Will-O-Wisp"], "teraTypes": ["Ghost", "Dark"] }, { "role": "Tera Blast user", "movepool": ["Nasty Plot", "Shadow Ball", "Substitute", "Tera Blast", "Will-O-Wisp"], "teraTypes": ["Fighting"] }] }, "calyrex": { "level": 90, "sets": [{ "role": "Bulky Support", "movepool": ["Calm Mind", "Encore", "Giga Drain", "Leech Seed", "Psychic", "Psyshock"], "teraTypes": ["Steel"] }] }, "calyrexice": { "level": 73, "sets": [{ "role": "Wallbreaker", "movepool": ["Agility", "Close Combat", "Glacial Lance", "Stomping Tantrum", "Trick Room", "Zen Headbutt"], "teraTypes": ["Fighting"] }] }, "calyrexshadow": { "level": 65, "sets": [{ "role": "Fast Attacker", "movepool": ["Astral Barrage", "Nasty Plot", "Pollen Puff", "Psyshock", "Trick"], "teraTypes": ["Ghost"] }] }, "wyrdeer": { "level": 87, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Slam", "Earthquake", "Megahorn", "Psychic", "Thunder Wave", "Thunderbolt"], "teraTypes": ["Ground"] }] }, "kleavor": { "level": 82, "sets": [{ "role": "Bulky Attacker", "movepool": ["Close Combat", "Defog", "Stone Axe", "Swords Dance", "U-turn", "X-Scissor"], "teraTypes": ["Bug", "Rock", "Fighting"] }] }, "ursaluna": { "level": 80, "sets": [{ "role": "Bulky Attacker", "movepool": ["Crunch", "Facade", "Headlong Rush", "Protect", "Swords Dance"], "teraTypes": ["Normal"] }] }, "enamorus": { "level": 81, "sets": [{ "role": "Tera Blast user", "movepool": ["Play Rough", "Superpower", "Taunt", "Tera Blast"], "teraTypes": ["Flying"] }, { "role": "Fast Bulky Setup", "movepool": ["Calm Mind", "Earth Power", "Moonblast", "Substitute"], "teraTypes": ["Ground"] }] }, "enamorustherian": { "level": 84, "sets": [{ "role": "Bulky Attacker", "movepool": ["Earth Power", "Healing Wish", "Moonblast", "Mystical Fire", "Psychic", "Superpower"], "teraTypes": ["Fairy", "Ground"] }] }, "meowscarada": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Flower Trick", "Knock Off", "Thunder Punch", "Toxic Spikes", "U-turn"], "teraTypes": ["Grass", "Dark"] }] }, "skeledirge": { "level": 81, "sets": [{ "role": "Bulky Attacker", "movepool": ["Flame Charge", "Shadow Ball", "Slack Off", "Torch Song"], "teraTypes": ["Fire", "Water"] }, { "role": "Bulky Support", "movepool": ["Hex", "Slack Off", "Torch Song", "Will-O-Wisp"], "teraTypes": ["Ghost", "Water"] }] }, "quaquaval": { "level": 79, "sets": [{ "role": "Fast Support", "movepool": ["Aqua Step", "Close Combat", "Ice Spinner", "Rapid Spin", "Roost", "U-turn"], "teraTypes": ["Water", "Fighting"] }, { "role": "Setup Sweeper", "movepool": ["Aqua Step", "Close Combat", "Ice Spinner", "Roost", "Swords Dance"], "teraTypes": ["Water", "Fighting"] }] }, "oinkologne": { "level": 90, "sets": [{ "role": "Bulky Setup", "movepool": ["Body Press", "Body Slam", "Stomping Tantrum", "Stuff Cheeks"], "teraTypes": ["Fighting"] }] }, "oinkolognef": { "level": 91, "sets": [{ "role": "Bulky Setup", "movepool": ["Body Press", "Body Slam", "Stomping Tantrum", "Stuff Cheeks"], "teraTypes": ["Fighting"] }] }, "dudunsparce": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Glare", "Headbutt", "Roost"], "teraTypes": ["Ghost", "Ground"] }, { "role": "Bulky Setup", "movepool": ["Boomburst", "Calm Mind", "Earth Power", "Roost", "Shadow Ball"], "teraTypes": ["Ghost"] }] }, "dudunsparcethreesegment": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Glare", "Headbutt", "Roost"], "teraTypes": ["Ghost", "Ground"] }, { "role": "Bulky Setup", "movepool": ["Boomburst", "Calm Mind", "Earth Power", "Roost", "Shadow Ball"], "teraTypes": ["Ghost"] }] }, "spidops": { "level": 91, "sets": [{ "role": "Bulky Support", "movepool": ["Circle Throw", "Memento", "Spikes", "Sticky Web", "Toxic Spikes"], "teraTypes": ["Ghost"] }] }, "lokix": { "level": 82, "sets": [{ "role": "Wallbreaker", "movepool": ["Axe Kick", "First Impression", "Leech Life", "Sucker Punch"], "teraTypes": ["Bug"] }, { "role": "Fast Attacker", "movepool": ["Axe Kick", "First Impression", "Sucker Punch", "U-turn"], "teraTypes": ["Bug"] }, { "role": "Setup Sweeper", "movepool": ["Leech Life", "Sucker Punch", "Swords Dance", "Throat Chop"], "teraTypes": ["Dark"] }] }, "rabsca": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Bug Buzz", "Earth Power", "Psychic", "Revival Blessing", "Trick Room"], "teraTypes": ["Steel"] }] }, "houndstone": { "level": 74, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Press", "Last Respects", "Trick", "Will-O-Wisp"], "teraTypes": ["Ghost"] }] }, "espathra": { "level": 80, "sets": [{ "role": "Wallbreaker", "movepool": ["Dazzling Gleam", "Lumina Crash", "Shadow Ball", "U-turn"], "teraTypes": ["Psychic", "Fairy", "Ghost"] }, { "role": "Fast Bulky Setup", "movepool": ["Calm Mind", "Dazzling Gleam", "Protect", "Roost", "Stored Power", "Substitute"], "teraTypes": ["Fairy"] }, { "role": "Tera Blast user", "movepool": ["Dazzling Gleam", "Lumina Crash", "Roost", "Tera Blast"], "teraTypes": ["Fire"] }] }, "farigiraf": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Foul Play", "Hyper Voice", "Protect", "Wish"], "teraTypes": ["Dark"] }, { "role": "Bulky Attacker", "movepool": ["Future Sight", "Hyper Voice", "Protect", "Wish"], "teraTypes": ["Ground", "Water", "Fairy"] }, { "role": "AV Pivot", "movepool": ["Dazzling Gleam", "Earthquake", "Foul Play", "Future Sight", "Hyper Voice", "Psychic"], "teraTypes": ["Dark"] }] }, "wugtrio": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Aqua Jet", "Liquidation", "Memento", "Stomping Tantrum", "Sucker Punch", "Throat Chop"], "teraTypes": ["Water", "Dark"] }] }, "dondozo": { "level": 79, "sets": [{ "role": "Bulky Setup", "movepool": ["Curse", "Liquidation", "Rest", "Sleep Talk", "Wave Crash"], "teraTypes": ["Fairy", "Ground", "Dragon"] }] }, "veluza": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Aqua Cutter", "Aqua Jet", "Night Slash", "Psycho Cut"], "teraTypes": ["Water"] }, { "role": "Setup Sweeper", "movepool": ["Aqua Cutter", "Fillet Away", "Night Slash", "Psycho Cut"], "teraTypes": ["Water", "Psychic", "Dark"] }] }, "palafin": { "level": 77, "sets": [{ "role": "Bulky Attacker", "movepool": ["Bulk Up", "Close Combat", "Flip Turn", "Ice Punch", "Jet Punch", "Wave Crash"], "teraTypes": ["Water", "Fighting"] }] }, "arboliva": { "level": 88, "sets": [{ "role": "Bulky Attacker", "movepool": ["Dazzling Gleam", "Earth Power", "Energy Ball", "Hyper Voice", "Strength Sap"], "teraTypes": ["Grass", "Fairy"] }, { "role": "Bulky Support", "movepool": ["Hyper Voice", "Leech Seed", "Protect", "Substitute"], "teraTypes": ["Water"] }] }, "scovillain": { "level": 76, "sets": [{ "role": "Bulky Attacker", "movepool": ["Flamethrower", "Leech Seed", "Protect", "Substitute"], "teraTypes": ["Steel", "Water"] }] }, "bellibolt": { "level": 87, "sets": [{ "role": "Bulky Attacker", "movepool": ["Muddy Water", "Slack Off", "Thunder Wave", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric", "Water"] }] }, "revavroom": { "level": 83, "sets": [{ "role": "Tera Blast user", "movepool": ["Gunk Shot", "Iron Head", "Shift Gear", "Tera Blast"], "teraTypes": ["Water", "Ground"] }, { "role": "Fast Support", "movepool": ["Gunk Shot", "Haze", "Parting Shot", "Spin Out", "Toxic", "Toxic Spikes"], "teraTypes": ["Water"] }] }, "orthworm": { "level": 85, "sets": [{ "role": "Bulky Setup", "movepool": ["Body Press", "Coil", "Iron Tail", "Rest"], "teraTypes": ["Fighting", "Electric"] }, { "role": "Bulky Support", "movepool": ["Body Press", "Iron Head", "Rest", "Shed Tail", "Spikes", "Stealth Rock"], "teraTypes": ["Electric", "Poison"] }] }, "maushold": { "level": 77, "sets": [{ "role": "Setup Sweeper", "movepool": ["Bite", "Encore", "Population Bomb", "Tidy Up"], "teraTypes": ["Normal"] }] }, "mausholdfour": { "level": 77, "sets": [{ "role": "Setup Sweeper", "movepool": ["Bite", "Encore", "Population Bomb", "Tidy Up"], "teraTypes": ["Normal"] }] }, "cetitan": { "level": 83, "sets": [{ "role": "Wallbreaker", "movepool": ["Earthquake", "Ice Shard", "Icicle Crash", "Liquidation", "Play Rough"], "teraTypes": ["Water", "Fairy"] }, { "role": "Bulky Setup", "movepool": ["Belly Drum", "Earthquake", "Ice Shard", "Icicle Crash"], "teraTypes": ["Ice"] }] }, "baxcalibur": { "level": 77, "sets": [{ "role": "Fast Attacker", "movepool": ["Earthquake", "Glaive Rush", "Ice Shard", "Icicle Crash"], "teraTypes": ["Dragon", "Ground"] }, { "role": "Setup Sweeper", "movepool": ["Dragon Dance", "Earthquake", "Glaive Rush", "Icicle Crash"], "teraTypes": ["Dragon", "Ground"] }] }, "tatsugiri": { "level": 84, "sets": [{ "role": "Fast Support", "movepool": ["Draco Meteor", "Hydro Pump", "Nasty Plot", "Rapid Spin", "Surf"], "teraTypes": ["Water"] }] }, "cyclizar": { "level": 81, "sets": [{ "role": "Fast Support", "movepool": ["Draco Meteor", "Rapid Spin", "Shed Tail", "Taunt"], "teraTypes": ["Dragon"] }, { "role": "Fast Attacker", "movepool": ["Double-Edge", "Draco Meteor", "Knock Off", "Shed Tail"], "teraTypes": ["Normal", "Dragon"] }] }, "pawmot": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Double Shock", "Ice Punch", "Revival Blessing", "Volt Switch"], "teraTypes": ["Electric"] }, { "role": "Fast Support", "movepool": ["Close Combat", "Ice Punch", "Nuzzle", "Revival Blessing", "Thunder Punch"], "teraTypes": ["Fighting"] }] }, "kilowattrel": { "level": 82, "sets": [{ "role": "Fast Support", "movepool": ["Hurricane", "Roost", "Thunder Wave", "Thunderbolt", "U-turn"], "teraTypes": ["Flying", "Electric"] }] }, "bombirdier": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Brave Bird", "Hone Claws", "Knock Off", "Stone Edge", "Sucker Punch", "U-turn"], "teraTypes": ["Rock"] }] }, "squawkabilly": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Brave Bird", "Facade", "Protect", "Quick Attack", "U-turn"], "teraTypes": ["Normal"] }] }, "squawkabillywhite": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Brave Bird", "Double-Edge", "Foul Play", "Parting Shot", "Quick Attack"], "teraTypes": ["Flying", "Dark", "Normal"] }] }, "squawkabillyblue": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Brave Bird", "Facade", "Protect", "Quick Attack", "U-turn"], "teraTypes": ["Normal"] }] }, "squawkabillyyellow": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Brave Bird", "Double-Edge", "Foul Play", "Parting Shot", "Quick Attack"], "teraTypes": ["Flying", "Dark", "Normal"] }] }, "flamigo": { "level": 83, "sets": [{ "role": "Wallbreaker", "movepool": ["Brave Bird", "Close Combat", "Swords Dance", "Throat Chop", "U-turn"], "teraTypes": ["Fighting"] }] }, "klawf": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Crabhammer", "High Horsepower", "Knock Off", "Stealth Rock", "Stone Edge", "Swords Dance"], "teraTypes": ["Water", "Ground", "Dark", "Rock"] }] }, "garganacl": { "level": 82, "sets": [{ "role": "Bulky Setup", "movepool": ["Body Press", "Curse", "Recover", "Stone Edge"], "teraTypes": ["Fighting"] }, { "role": "AV Pivot", "movepool": ["Avalanche", "Body Press", "Salt Cure", "Stone Edge"], "teraTypes": ["Ghost"] }, { "role": "Bulky Support", "movepool": ["Avalanche", "Body Press", "Recover", "Salt Cure", "Stealth Rock", "Stone Edge"], "teraTypes": ["Ghost"] }] }, "glimmora": { "level": 80, "sets": [{ "role": "Fast Support", "movepool": ["Earth Power", "Energy Ball", "Mortal Spin", "Power Gem", "Sludge Wave", "Spikes", "Stealth Rock", "Toxic"], "teraTypes": ["Water"] }] }, "grafaiai": { "level": 85, "sets": [{ "role": "Bulky Attacker", "movepool": ["Gunk Shot", "Knock Off", "Super Fang", "Switcheroo", "U-turn"], "teraTypes": ["Dark"] }, { "role": "Fast Support", "movepool": ["Encore", "Knock Off", "Protect", "Substitute", "Toxic"], "teraTypes": ["Dark"] }, { "role": "Bulky Support", "movepool": ["Encore", "Gunk Shot", "Knock Off", "Parting Shot"], "teraTypes": ["Dark"] }] }, "dachsbun": { "level": 87, "sets": [{ "role": "Bulky Support", "movepool": ["Body Press", "Play Rough", "Protect", "Wish"], "teraTypes": ["Steel"] }] }, "mabosstiff": { "level": 84, "sets": [{ "role": "Bulky Attacker", "movepool": ["Crunch", "Fire Fang", "Play Rough", "Psychic Fangs", "Wild Charge"], "teraTypes": ["Dark", "Fairy"] }] }, "brambleghast": { "level": 87, "sets": [{ "role": "Bulky Support", "movepool": ["Power Whip", "Rapid Spin", "Shadow Sneak", "Spikes", "Strength Sap"], "teraTypes": ["Steel", "Water", "Fairy"] }, { "role": "Fast Support", "movepool": ["Leech Seed", "Phantom Force", "Power Whip", "Substitute"], "teraTypes": ["Ghost", "Fairy"] }] }, "gholdengo": { "level": 79, "sets": [{ "role": "Fast Attacker", "movepool": ["Focus Blast", "Make It Rain", "Nasty Plot", "Recover", "Shadow Ball", "Trick"], "teraTypes": ["Steel", "Ghost"] }, { "role": "Bulky Attacker", "movepool": ["Make It Rain", "Recover", "Shadow Ball", "Thunder Wave"], "teraTypes": ["Dark", "Water"] }] }, "greattusk": { "level": 79, "sets": [{ "role": "Bulky Setup", "movepool": ["Bulk Up", "Close Combat", "Earthquake", "Ice Spinner", "Rapid Spin"], "teraTypes": ["Ground", "Fighting"] }, { "role": "Bulky Attacker", "movepool": ["Close Combat", "Headlong Rush", "Ice Spinner", "Knock Off", "Rapid Spin", "Stealth Rock"], "teraTypes": ["Ground", "Dark"] }] }, "brutebonnet": { "level": 82, "sets": [{ "role": "Bulky Attacker", "movepool": ["Close Combat", "Crunch", "Seed Bomb", "Spore", "Sucker Punch"], "teraTypes": ["Dark", "Fighting"] }] }, "sandyshocks": { "level": 81, "sets": [{ "role": "Bulky Attacker", "movepool": ["Earth Power", "Spikes", "Stealth Rock", "Thunder Wave", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric", "Ground"] }] }, "screamtail": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Encore", "Light Screen", "Play Rough", "Protect", "Reflect", "Thunder Wave", "Wish"], "teraTypes": ["Steel"] }] }, "fluttermane": { "level": 75, "sets": [{ "role": "Fast Attacker", "movepool": ["Calm Mind", "Moonblast", "Mystical Fire", "Psyshock", "Shadow Ball", "Thunderbolt"], "teraTypes": ["Ghost", "Fairy", "Fire", "Electric", "Psychic"] }] }, "slitherwing": { "level": 82, "sets": [{ "role": "Bulky Setup", "movepool": ["Bulk Up", "Close Combat", "Earthquake", "Flame Charge", "Leech Life", "Wild Charge"], "teraTypes": ["Fighting", "Electric"] }, { "role": "Fast Attacker", "movepool": ["Close Combat", "Earthquake", "First Impression", "Flare Blitz", "U-turn", "Wild Charge"], "teraTypes": ["Bug", "Fighting", "Electric"] }] }, "roaringmoon": { "level": 75, "sets": [{ "role": "Setup Sweeper", "movepool": ["Crunch", "Dragon Dance", "Earthquake", "Outrage", "Roost"], "teraTypes": ["Dark", "Dragon", "Ground"] }, { "role": "Bulky Attacker", "movepool": ["Crunch", "Iron Head", "Outrage", "U-turn"], "teraTypes": ["Dark", "Dragon", "Steel"] }] }, "irontreads": { "level": 79, "sets": [{ "role": "Bulky Attacker", "movepool": ["Earthquake", "Iron Head", "Knock Off", "Rapid Spin", "Stealth Rock", "Stone Edge", "Volt Switch"], "teraTypes": ["Ground", "Steel"] }] }, "ironmoth": { "level": 79, "sets": [{ "role": "Fast Attacker", "movepool": ["Discharge", "Energy Ball", "Fiery Dance", "Fire Blast", "Sludge Wave", "U-turn"], "teraTypes": ["Fire", "Grass"] }, { "role": "Fast Support", "movepool": ["Energy Ball", "Fiery Dance", "Morning Sun", "Sludge Wave", "Toxic Spikes", "U-turn"], "teraTypes": ["Fire", "Grass"] }] }, "ironhands": { "level": 80, "sets": [{ "role": "Bulky Attacker", "movepool": ["Close Combat", "Drain Punch", "Fake Out", "Heavy Slam", "Ice Punch", "Thunder Punch", "Volt Switch", "Wild Charge"], "teraTypes": ["Electric", "Fighting"] }] }, "ironjugulis": { "level": 81, "sets": [{ "role": "Fast Attacker", "movepool": ["Dark Pulse", "Earth Power", "Fire Blast", "Hurricane", "Hydro Pump", "U-turn"], "teraTypes": ["Dark", "Flying", "Ground"] }] }, "ironthorns": { "level": 84, "sets": [{ "role": "Fast Support", "movepool": ["Earthquake", "Spikes", "Stealth Rock", "Stone Edge", "Thunder Punch", "Volt Switch"], "teraTypes": ["Grass", "Water"] }, { "role": "Bulky Setup", "movepool": ["Dragon Dance", "Earthquake", "Ice Punch", "Stone Edge", "Wild Charge"], "teraTypes": ["Rock", "Ground"] }] }, "ironbundle": { "level": 76, "sets": [{ "role": "Fast Attacker", "movepool": ["Encore", "Flip Turn", "Freeze-Dry", "Hydro Pump", "Ice Beam", "Substitute"], "teraTypes": ["Water", "Ice"] }] }, "ironvaliant": { "level": 79, "sets": [{ "role": "Setup Sweeper", "movepool": ["Close Combat", "Knock Off", "Spirit Break", "Swords Dance"], "teraTypes": ["Dark", "Fighting"] }, { "role": "Fast Attacker", "movepool": ["Aura Sphere", "Calm Mind", "Focus Blast", "Moonblast", "Psyshock", "Shadow Ball"], "teraTypes": ["Fighting", "Fairy"] }] }, "tinglu": { "level": 80, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Ruination", "Spikes", "Stealth Rock", "Throat Chop", "Whirlwind"], "teraTypes": ["Ground", "Ghost"] }, { "role": "Bulky Attacker", "movepool": ["Body Press", "Earthquake", "Heavy Slam", "Ruination", "Stone Edge", "Throat Chop"], "teraTypes": ["Ground", "Fighting", "Steel"] }] }, "chienpao": { "level": 75, "sets": [{ "role": "Fast Attacker", "movepool": ["Crunch", "Ice Shard", "Ice Spinner", "Sacred Sword", "Sucker Punch", "Swords Dance"], "teraTypes": ["Dark", "Ice", "Fighting"] }] }, "wochien": { "level": 83, "sets": [{ "role": "Bulky Support", "movepool": ["Energy Ball", "Knock Off", "Leech Seed", "Protect", "Ruination", "Stun Spore"], "teraTypes": ["Poison"] }] }, "chiyu": { "level": 78, "sets": [{ "role": "Setup Sweeper", "movepool": ["Dark Pulse", "Fire Blast", "Nasty Plot", "Psychic", "Will-O-Wisp"], "teraTypes": ["Dark", "Fire"] }, { "role": "Fast Attacker", "movepool": ["Dark Pulse", "Flamethrower", "Overheat", "Psychic"], "teraTypes": ["Dark", "Fire"] }] }, "koraidon": { "level": 67, "sets": [{ "role": "Fast Attacker", "movepool": ["Collision Course", "Flare Blitz", "Outrage", "Swords Dance", "U-turn"], "teraTypes": ["Fire"] }] }, "miraidon": { "level": 67, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Calm Mind", "Draco Meteor", "Electro Drift", "Substitute"], "teraTypes": ["Electric"] }, { "role": "Fast Attacker", "movepool": ["Draco Meteor", "Electro Drift", "Overheat", "Volt Switch"], "teraTypes": ["Electric"] }] }, "tinkaton": { "level": 84, "sets": [{ "role": "Bulky Attacker", "movepool": ["Gigaton Hammer", "Knock Off", "Play Rough", "Stealth Rock", "Thunder Wave"], "teraTypes": ["Steel"] }, { "role": "Setup Sweeper", "movepool": ["Gigaton Hammer", "Knock Off", "Play Rough", "Swords Dance"], "teraTypes": ["Steel"] }] }, "armarouge": { "level": 83, "sets": [{ "role": "Wallbreaker", "movepool": ["Armor Cannon", "Aura Sphere", "Energy Ball", "Focus Blast", "Psyshock"], "teraTypes": ["Fire", "Fighting", "Psychic", "Grass"] }] }, "ceruledge": { "level": 80, "sets": [{ "role": "Setup Sweeper", "movepool": ["Bitter Blade", "Close Combat", "Shadow Sneak", "Swords Dance"], "teraTypes": ["Fire", "Fighting"] }] }, "toedscruel": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Earth Power", "Giga Drain", "Knock Off", "Leaf Storm", "Rapid Spin", "Spore", "Toxic"], "teraTypes": ["Water"] }] }, "kingambit": { "level": 80, "sets": [{ "role": "Wallbreaker", "movepool": ["Iron Head", "Kowtow Cleave", "Stealth Rock", "Sucker Punch", "Swords Dance"], "teraTypes": ["Dark", "Flying"] }] } };
8163
8210
  var MoveCounter3 = class extends Utils.Multiset {
8164
8211
  constructor() {
8165
8212
  super();
@@ -8285,7 +8332,6 @@ var NoStab2 = [
8285
8332
  "quickattack",
8286
8333
  "rapidspin",
8287
8334
  "reversal",
8288
- "saltcure",
8289
8335
  "selfdestruct",
8290
8336
  "shadowsneak",
8291
8337
  "skydrop",
@@ -8310,9 +8356,19 @@ var MovePairs = [
8310
8356
  ["protect", "wish"],
8311
8357
  ["leechseed", "protect"]
8312
8358
  ];
8359
+ var PriorityPokemon = [
8360
+ "banette",
8361
+ "breloom",
8362
+ "brutebonnet",
8363
+ "cacturne",
8364
+ "giratinaorigin",
8365
+ "lycanrocdusk",
8366
+ "mimikyu",
8367
+ "scizor"
8368
+ ];
8313
8369
  function sereneGraceBenefits2(move) {
8314
8370
  var _a;
8315
- return ((_a = move.secondary) == null ? void 0 : _a.chance) && move.secondary.chance >= 20 && move.secondary.chance < 100;
8371
+ return ((_a = move.secondary) == null ? void 0 : _a.chance) && move.secondary.chance > 20 && move.secondary.chance < 100;
8316
8372
  }
8317
8373
  var RandomTeams = class {
8318
8374
  constructor(dex, format, prng) {
@@ -8449,28 +8505,15 @@ var RandomTeams = class {
8449
8505
  return;
8450
8506
  throw new Error(`Legal ${effectTypeName} count is insufficient to support ${requiredCountExplanation} (${basicEffectPool.length} / ${requiredCount}).`);
8451
8507
  }
8452
- queryMoves(moves, types, teraType, abilities = /* @__PURE__ */ new Set()) {
8508
+ queryMoves(moves, species, teraType, abilities = /* @__PURE__ */ new Set()) {
8453
8509
  const counter = new MoveCounter3();
8510
+ const types = species.types;
8454
8511
  if (!(moves == null ? void 0 : moves.size))
8455
8512
  return counter;
8456
8513
  const categories = { Physical: 0, Special: 0, Status: 0 };
8457
8514
  for (const moveid of moves) {
8458
8515
  const move = this.dex.moves.get(moveid);
8459
- let moveType = move.type;
8460
- if (["judgment", "revelationdance"].includes(moveid))
8461
- moveType = types[0];
8462
- if (moveType === "Normal") {
8463
- if (abilities.has("Aerilate"))
8464
- moveType = "Flying";
8465
- if (abilities.has("Galvanize"))
8466
- moveType = "Electric";
8467
- if (abilities.has("Pixilate"))
8468
- moveType = "Fairy";
8469
- if (abilities.has("Refrigerate"))
8470
- moveType = "Ice";
8471
- }
8472
- if (moveid === "terablast")
8473
- moveType = teraType;
8516
+ const moveType = this.getMoveType(move, species, abilities, teraType);
8474
8517
  if (move.damage || move.damageCallback) {
8475
8518
  counter.add("damage");
8476
8519
  counter.damagingMoves.add(move);
@@ -8487,7 +8530,7 @@ var RandomTeams = class {
8487
8530
  if (move.drain)
8488
8531
  counter.add("drain");
8489
8532
  if (move.basePower > 30 || move.multihit || move.basePowerCallback) {
8490
- if (!this.noStab.includes(moveid) || abilities.has("Technician") && moveid === "machpunch") {
8533
+ if (!this.noStab.includes(moveid) || PriorityPokemon.includes(species.id) && move.priority > 0) {
8491
8534
  counter.add(moveType);
8492
8535
  if (types.includes(moveType))
8493
8536
  counter.stabCounter++;
@@ -8500,7 +8543,7 @@ var RandomTeams = class {
8500
8543
  counter.ironFist++;
8501
8544
  if (move.flags["sound"])
8502
8545
  counter.add("sound");
8503
- if (move.priority !== 0 || moveid === "grassyglide" && abilities.has("Grassy Surge")) {
8546
+ if (move.priority > 0 || moveid === "grassyglide" && abilities.has("Grassy Surge")) {
8504
8547
  counter.add("priority");
8505
8548
  }
8506
8549
  counter.damagingMoves.add(move);
@@ -8591,7 +8634,7 @@ var RandomTeams = class {
8591
8634
  this.incompatibleMoves(moves, movePool, "dragondance", "dracometeor");
8592
8635
  this.incompatibleMoves(moves, movePool, "psychic", "psyshock");
8593
8636
  this.incompatibleMoves(moves, movePool, "surf", "hydropump");
8594
- this.incompatibleMoves(moves, movePool, "wavecrash", "liquidation");
8637
+ this.incompatibleMoves(moves, movePool, ["liquidation", "ragingbull"], ["liquidation", "wavecrash"]);
8595
8638
  this.incompatibleMoves(moves, movePool, ["airslash", "bravebird", "hurricane"], ["airslash", "bravebird", "hurricane"]);
8596
8639
  this.incompatibleMoves(moves, movePool, "knockoff", "foulplay");
8597
8640
  this.incompatibleMoves(moves, movePool, "doubleedge", "headbutt");
@@ -8649,13 +8692,39 @@ var RandomTeams = class {
8649
8692
  addMove(move, moves, types, abilities, teamDetails, species, isLead, isDoubles, movePool, teraType, role) {
8650
8693
  moves.add(move);
8651
8694
  this.fastPop(movePool, movePool.indexOf(move));
8652
- const counter = this.queryMoves(moves, species.types, teraType, abilities);
8695
+ const counter = this.queryMoves(moves, species, teraType, abilities);
8653
8696
  this.cullMovePool(types, moves, abilities, counter, movePool, teamDetails, species, isLead, isDoubles, teraType, role);
8654
8697
  return counter;
8655
8698
  }
8699
+ getMoveType(move, species, abilities, teraType) {
8700
+ if (move.id === "terablast")
8701
+ return teraType;
8702
+ if (["judgment", "revelationdance"].includes(move.id))
8703
+ return species.types[0];
8704
+ if (move.name === "Raging Bull" && species.name.startsWith("Tauros-Paldea")) {
8705
+ if (species.name.endsWith("Combat"))
8706
+ return "Fighting";
8707
+ if (species.name.endsWith("Blaze"))
8708
+ return "Fire";
8709
+ if (species.name.endsWith("Aqua"))
8710
+ return "Water";
8711
+ }
8712
+ const moveType = move.type;
8713
+ if (moveType === "Normal") {
8714
+ if (abilities.has("Aerilate"))
8715
+ return "Flying";
8716
+ if (abilities.has("Galvanize"))
8717
+ return "Electric";
8718
+ if (abilities.has("Pixilate"))
8719
+ return "Fairy";
8720
+ if (abilities.has("Refrigerate"))
8721
+ return "Ice";
8722
+ }
8723
+ return moveType;
8724
+ }
8656
8725
  randomMoveset(types, abilities, teamDetails, species, isLead, isDoubles, movePool, teraType, role) {
8657
8726
  const moves = /* @__PURE__ */ new Set();
8658
- let counter = this.queryMoves(moves, species.types, teraType, abilities);
8727
+ let counter = this.queryMoves(moves, species, teraType, abilities);
8659
8728
  this.cullMovePool(types, moves, abilities, counter, movePool, teamDetails, species, isLead, isDoubles, teraType, role);
8660
8729
  if (movePool.length <= this.maxMoveCount) {
8661
8730
  for (const moveid of movePool) {
@@ -8711,26 +8780,113 @@ var RandomTeams = class {
8711
8780
  role
8712
8781
  );
8713
8782
  }
8783
+ if (movePool.includes("facade") && abilities.has("Guts")) {
8784
+ counter = this.addMove(
8785
+ "facade",
8786
+ moves,
8787
+ types,
8788
+ abilities,
8789
+ teamDetails,
8790
+ species,
8791
+ isLead,
8792
+ isDoubles,
8793
+ movePool,
8794
+ teraType,
8795
+ role
8796
+ );
8797
+ }
8798
+ if (movePool.includes("stickyweb")) {
8799
+ counter = this.addMove(
8800
+ "stickyweb",
8801
+ moves,
8802
+ types,
8803
+ abilities,
8804
+ teamDetails,
8805
+ species,
8806
+ isLead,
8807
+ isDoubles,
8808
+ movePool,
8809
+ teraType,
8810
+ role
8811
+ );
8812
+ }
8813
+ if (movePool.includes("revivalblessing")) {
8814
+ counter = this.addMove(
8815
+ "revivalblessing",
8816
+ moves,
8817
+ types,
8818
+ abilities,
8819
+ teamDetails,
8820
+ species,
8821
+ isLead,
8822
+ isDoubles,
8823
+ movePool,
8824
+ teraType,
8825
+ role
8826
+ );
8827
+ }
8828
+ if (movePool.includes("saltcure")) {
8829
+ counter = this.addMove(
8830
+ "saltcure",
8831
+ moves,
8832
+ types,
8833
+ abilities,
8834
+ teamDetails,
8835
+ species,
8836
+ isLead,
8837
+ isDoubles,
8838
+ movePool,
8839
+ teraType,
8840
+ role
8841
+ );
8842
+ }
8843
+ if (movePool.includes("toxic") && species.id === "grafaiai") {
8844
+ counter = this.addMove(
8845
+ "toxic",
8846
+ moves,
8847
+ types,
8848
+ abilities,
8849
+ teamDetails,
8850
+ species,
8851
+ isLead,
8852
+ isDoubles,
8853
+ movePool,
8854
+ teraType,
8855
+ role
8856
+ );
8857
+ }
8858
+ if (role === "Bulky Attacker" || role === "Bulky Setup" || PriorityPokemon.includes(species.id)) {
8859
+ const priorityMoves = [];
8860
+ for (const moveid of movePool) {
8861
+ const move = this.dex.moves.get(moveid);
8862
+ const moveType = this.getMoveType(move, species, abilities, teraType);
8863
+ if (types.includes(moveType) && move.priority > 0 && move.category !== "Status") {
8864
+ priorityMoves.push(moveid);
8865
+ }
8866
+ }
8867
+ if (priorityMoves.length) {
8868
+ const moveid = this.sample(priorityMoves);
8869
+ counter = this.addMove(
8870
+ moveid,
8871
+ moves,
8872
+ types,
8873
+ abilities,
8874
+ teamDetails,
8875
+ species,
8876
+ isLead,
8877
+ isDoubles,
8878
+ movePool,
8879
+ teraType,
8880
+ role
8881
+ );
8882
+ }
8883
+ }
8714
8884
  for (const type of types) {
8715
8885
  if (runEnforcementChecker(type)) {
8716
8886
  const stabMoves = [];
8717
8887
  for (const moveid of movePool) {
8718
8888
  const move = this.dex.moves.get(moveid);
8719
- let moveType = move.type;
8720
- if (["judgment", "revelationdance"].includes(moveid))
8721
- moveType = types[0];
8722
- if (moveType === "Normal") {
8723
- if (abilities.has("Aerilate"))
8724
- moveType = "Flying";
8725
- if (abilities.has("Galvanize"))
8726
- moveType = "Electric";
8727
- if (abilities.has("Pixilate"))
8728
- moveType = "Fairy";
8729
- if (abilities.has("Refrigerate"))
8730
- moveType = "Ice";
8731
- }
8732
- if (moveid === "terablast")
8733
- moveType = teraType;
8889
+ const moveType = this.getMoveType(move, species, abilities, teraType);
8734
8890
  if (type === moveType && (move.basePower > 30 || move.multihit || move.basePowerCallback) && (!this.noStab.includes(moveid) || abilities.has("Technician") && moveid === "machpunch")) {
8735
8891
  stabMoves.push(moveid);
8736
8892
  }
@@ -8757,21 +8913,7 @@ var RandomTeams = class {
8757
8913
  const stabMoves = [];
8758
8914
  for (const moveid of movePool) {
8759
8915
  const move = this.dex.moves.get(moveid);
8760
- let moveType = move.type;
8761
- if (["judgment", "revelationdance"].includes(moveid))
8762
- moveType = types[0];
8763
- if (moveType === "Normal") {
8764
- if (abilities.has("Aerilate"))
8765
- moveType = "Flying";
8766
- if (abilities.has("Galvanize"))
8767
- moveType = "Electric";
8768
- if (abilities.has("Pixilate"))
8769
- moveType = "Fairy";
8770
- if (abilities.has("Refrigerate"))
8771
- moveType = "Ice";
8772
- }
8773
- if (moveid === "terablast")
8774
- moveType = teraType;
8916
+ const moveType = this.getMoveType(move, species, abilities, teraType);
8775
8917
  if (!this.noStab.includes(moveid) && (move.basePower > 30 || move.multihit || move.basePowerCallback)) {
8776
8918
  if (types.includes(moveType)) {
8777
8919
  stabMoves.push(moveid);
@@ -8799,9 +8941,7 @@ var RandomTeams = class {
8799
8941
  const stabMoves = [];
8800
8942
  for (const moveid of movePool) {
8801
8943
  const move = this.dex.moves.get(moveid);
8802
- let moveType = move.type;
8803
- if (["judgment", "revelationdance"].includes(moveid))
8804
- moveType = types[0];
8944
+ const moveType = this.getMoveType(move, species, abilities, teraType);
8805
8945
  if (!this.noStab.includes(moveid) && (move.basePower > 30 || move.multihit || move.basePowerCallback)) {
8806
8946
  if (teraType === moveType) {
8807
8947
  stabMoves.push(moveid);
@@ -8825,66 +8965,6 @@ var RandomTeams = class {
8825
8965
  );
8826
8966
  }
8827
8967
  }
8828
- if (movePool.includes("facade") && abilities.has("Guts")) {
8829
- counter = this.addMove(
8830
- "facade",
8831
- moves,
8832
- types,
8833
- abilities,
8834
- teamDetails,
8835
- species,
8836
- isLead,
8837
- isDoubles,
8838
- movePool,
8839
- teraType,
8840
- role
8841
- );
8842
- }
8843
- if (movePool.includes("stickyweb")) {
8844
- counter = this.addMove(
8845
- "stickyweb",
8846
- moves,
8847
- types,
8848
- abilities,
8849
- teamDetails,
8850
- species,
8851
- isLead,
8852
- isDoubles,
8853
- movePool,
8854
- teraType,
8855
- role
8856
- );
8857
- }
8858
- if (movePool.includes("revivalblessing")) {
8859
- counter = this.addMove(
8860
- "revivalblessing",
8861
- moves,
8862
- types,
8863
- abilities,
8864
- teamDetails,
8865
- species,
8866
- isLead,
8867
- isDoubles,
8868
- movePool,
8869
- teraType,
8870
- role
8871
- );
8872
- }
8873
- if (movePool.includes("toxic") && species.id === "grafaiai") {
8874
- counter = this.addMove(
8875
- "toxic",
8876
- moves,
8877
- types,
8878
- abilities,
8879
- teamDetails,
8880
- species,
8881
- isLead,
8882
- isDoubles,
8883
- movePool,
8884
- teraType,
8885
- role
8886
- );
8887
- }
8888
8968
  if (["Bulky Support", "Bulky Attacker", "Bulky Setup"].includes(role)) {
8889
8969
  const recoveryMoves2 = movePool.filter((moveid) => RecoveryMove2.includes(moveid));
8890
8970
  if (recoveryMoves2.length) {
@@ -8947,40 +9027,14 @@ var RandomTeams = class {
8947
9027
  for (const moveid of moves) {
8948
9028
  const move = this.dex.moves.get(moveid);
8949
9029
  if (move.basePower > 30 || move.multihit || move.basePowerCallback) {
8950
- let moveType = move.type;
8951
- if (["judgment", "revelationdance"].includes(moveid))
8952
- moveType = types[0];
8953
- if (moveType === "Normal") {
8954
- if (abilities.has("Aerilate"))
8955
- moveType = "Flying";
8956
- if (abilities.has("Galvanize"))
8957
- moveType = "Electric";
8958
- if (abilities.has("Pixilate"))
8959
- moveType = "Fairy";
8960
- if (abilities.has("Refrigerate"))
8961
- moveType = "Ice";
8962
- }
8963
- if (moveid === "terablast")
8964
- moveType = teraType;
8965
- currentAttackType = move.type;
9030
+ const moveType = this.getMoveType(move, species, abilities, teraType);
9031
+ currentAttackType = moveType;
8966
9032
  }
8967
9033
  }
8968
9034
  const coverageMoves = [];
8969
9035
  for (const moveid of movePool) {
8970
9036
  const move = this.dex.moves.get(moveid);
8971
- let moveType = move.type;
8972
- if (["judgment", "revelationdance"].includes(moveid))
8973
- moveType = types[0];
8974
- if (moveType === "Normal") {
8975
- if (abilities.has("Aerilate"))
8976
- moveType = "Flying";
8977
- if (abilities.has("Galvanize"))
8978
- moveType = "Electric";
8979
- if (abilities.has("Pixilate"))
8980
- moveType = "Fairy";
8981
- if (abilities.has("Refrigerate"))
8982
- moveType = "Ice";
8983
- }
9037
+ const moveType = this.getMoveType(move, species, abilities, teraType);
8984
9038
  if (!this.noStab.includes(moveid) && (move.basePower > 30 || move.multihit || move.basePowerCallback)) {
8985
9039
  if (currentAttackType !== moveType)
8986
9040
  coverageMoves.push(moveid);
@@ -9004,42 +9058,6 @@ var RandomTeams = class {
9004
9058
  }
9005
9059
  }
9006
9060
  }
9007
- if (role === "Bulky Attacker" || role === "Bulky Setup" || species.id === "breloom") {
9008
- const priorityMoves = [];
9009
- for (const moveid of movePool) {
9010
- const move = this.dex.moves.get(moveid);
9011
- let moveType = move.type;
9012
- if (moveType === "Normal") {
9013
- if (abilities.has("Aerilate"))
9014
- moveType = "Flying";
9015
- if (abilities.has("Galvanize"))
9016
- moveType = "Electric";
9017
- if (abilities.has("Pixilate"))
9018
- moveType = "Fairy";
9019
- if (abilities.has("Refrigerate"))
9020
- moveType = "Ice";
9021
- }
9022
- if (types.includes(moveType) && move.priority > 0 && move.category !== "Status") {
9023
- priorityMoves.push(moveid);
9024
- }
9025
- }
9026
- if (priorityMoves.length) {
9027
- const moveid = this.sample(priorityMoves);
9028
- counter = this.addMove(
9029
- moveid,
9030
- moves,
9031
- types,
9032
- abilities,
9033
- teamDetails,
9034
- species,
9035
- isLead,
9036
- isDoubles,
9037
- movePool,
9038
- teraType,
9039
- role
9040
- );
9041
- }
9042
- }
9043
9061
  while (moves.size < this.maxMoveCount && movePool.length) {
9044
9062
  if (moves.size + movePool.length <= this.maxMoveCount) {
9045
9063
  for (const moveid2 of movePool) {
@@ -9143,7 +9161,7 @@ var RandomTeams = class {
9143
9161
  case "Hustle":
9144
9162
  return counter.get("Physical") < 2;
9145
9163
  case "Infiltrator":
9146
- return moves.has("rest") && moves.has("sleeptalk") || isDoubles && abilities.has("Clear Body");
9164
+ return isDoubles && abilities.has("Clear Body");
9147
9165
  case "Insomnia":
9148
9166
  return role === "Wallbreaker";
9149
9167
  case "Intimidate":
@@ -9160,6 +9178,8 @@ var RandomTeams = class {
9160
9178
  return abilities.has("Sharpness") || abilities.has("Unburden");
9161
9179
  case "Moxie":
9162
9180
  return !counter.get("Physical") || moves.has("stealthrock");
9181
+ case "Natural Cure":
9182
+ return species.id === "pawmot";
9163
9183
  case "Overgrow":
9164
9184
  return !counter.get("Grass");
9165
9185
  case "Prankster":
@@ -9319,8 +9339,10 @@ var RandomTeams = class {
9319
9339
  return "Life Orb";
9320
9340
  if (species.id === "toxtricity" && moves.has("shiftgear"))
9321
9341
  return "Throat Spray";
9322
- if (species.baseSpecies === "Magearna" && moves.has("shiftgear"))
9342
+ if (species.baseSpecies === "Magearna" && role === "Tera Blast user")
9323
9343
  return "Weakness Policy";
9344
+ if (moves.has("lastrespects"))
9345
+ return "Choice Scarf";
9324
9346
  if (ability === "Imposter" || species.id === "magnezone" && moves.has("bodypress"))
9325
9347
  return "Choice Scarf";
9326
9348
  if (moves.has("bellydrum") && moves.has("substitute"))
@@ -9436,7 +9458,9 @@ var RandomTeams = class {
9436
9458
  if (role === "Fast Support" || role === "Fast Bulky Setup") {
9437
9459
  return counter.damagingMoves.size >= 3 && !moves.has("nuzzle") ? "Life Orb" : "Leftovers";
9438
9460
  }
9439
- if (["flamecharge", "rapidspin", "trailblaze"].every((m) => !moves.has(m)) && ["Fast Attacker", "Setup Sweeper", "Tera Blast user", "Wallbreaker"].some((m) => role === m))
9461
+ if (role === "Tera Blast user" && counter.get("recovery") && counter.damagingMoves.size < 3)
9462
+ return "Leftovers";
9463
+ if (["flamecharge", "rapidspin"].every((m) => !moves.has(m)) && ["Fast Attacker", "Setup Sweeper", "Tera Blast user", "Wallbreaker"].some((m) => role === m))
9440
9464
  return "Life Orb";
9441
9465
  if (isDoubles)
9442
9466
  return "Sitrus Berry";
@@ -9510,7 +9534,7 @@ var RandomTeams = class {
9510
9534
  if (species.unreleasedHidden)
9511
9535
  abilities.delete(species.abilities.H);
9512
9536
  const moves = this.randomMoveset(types, abilities, teamDetails, species, isLead, isDoubles, movePool, teraType, role);
9513
- const counter = this.queryMoves(moves, species.types, teraType, abilities);
9537
+ const counter = this.queryMoves(moves, species, teraType, abilities);
9514
9538
  ability = this.getAbility(types, moves, abilities, counter, teamDetails, species, isLead, isDoubles, teraType, role);
9515
9539
  item = this.getPriorityItem(ability, types, moves, counter, teamDetails, species, isLead, isDoubles, teraType, role);
9516
9540
  if (item === void 0 && isDoubles) {
@@ -9557,13 +9581,15 @@ var RandomTeams = class {
9557
9581
  evs.spe = 0;
9558
9582
  ivs.spe = 0;
9559
9583
  }
9584
+ const shuffledMoves = Array.from(moves);
9585
+ this.prng.shuffle(shuffledMoves);
9560
9586
  return {
9561
9587
  name: species.baseSpecies,
9562
9588
  species: forme,
9563
9589
  gender: species.gender,
9564
9590
  shiny: this.randomChance(1, 1024),
9565
9591
  level,
9566
- moves: Array.from(moves),
9592
+ moves: shuffledMoves,
9567
9593
  ability,
9568
9594
  evs,
9569
9595
  ivs,