@pkmn/randoms 0.7.21 → 0.7.23
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.js +107 -134
- package/build/index.js.map +1 -1
- package/build/index.mjs +107 -134
- package/build/index.mjs.map +1 -1
- package/package.json +2 -2
package/build/index.mjs
CHANGED
|
@@ -953,7 +953,7 @@ var RandomGen8Teams = class {
|
|
|
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")) && !moves.has("batonpass")) {
|
|
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
|
}
|
|
@@ -2747,7 +2747,7 @@ var RandomGen7Teams = class extends RandomGen8Teams {
|
|
|
2747
2747
|
Electric: (movePool, moves, abilities, types, counter) => !counter.get("Electric") || movePool.includes("thunder"),
|
|
2748
2748
|
Fairy: (movePool, moves, abilities, types, counter) => !counter.get("Fairy") && !types.has("Flying") && !abilities.has("Pixilate"),
|
|
2749
2749
|
Fighting: (movePool, moves, abilities, types, counter) => !counter.get("Fighting") || !counter.get("stab"),
|
|
2750
|
-
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")),
|
|
2751
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"))),
|
|
2752
2752
|
Ghost: (movePool, moves, abilities, types, counter) => (!counter.get("Ghost") || movePool.includes("spectralthief")) && !types.has("Dark") && !abilities.has("Steelworker"),
|
|
2753
2753
|
Grass: (movePool, moves, abilities, types, counter, species) => !counter.get("Grass") && (species.baseStats.atk >= 100 || movePool.includes("leafstorm")),
|
|
@@ -2761,7 +2761,9 @@ var RandomGen7Teams = class extends RandomGen8Teams {
|
|
|
2761
2761
|
Water: (movePool, moves, abilities, types, counter, species) => !counter.get("Water") && !abilities.has("Protean") || !counter.get("stab") || movePool.includes("crabhammer") || abilities.has("Huge Power") && movePool.includes("aquajet"),
|
|
2762
2762
|
Adaptability: (movePool, moves, abilities, types, counter, species) => !counter.setupType && species.types.length > 1 && (!counter.get(species.types[0]) || !counter.get(species.types[1])),
|
|
2763
2763
|
Contrary: (movePool, moves, abilities, types, counter, species) => !counter.get("contrary") && species.name !== "Shuckle",
|
|
2764
|
-
"Slow Start": (movePool) => movePool.includes("substitute")
|
|
2764
|
+
"Slow Start": (movePool) => movePool.includes("substitute"),
|
|
2765
|
+
protect: (movePool) => movePool.includes("wish"),
|
|
2766
|
+
wish: (movePool, moves, abilities, types, counter, species) => species.baseStats.hp < 110 && !abilities.has("Regenerator") && movePool.includes("protect")
|
|
2765
2767
|
};
|
|
2766
2768
|
}
|
|
2767
2769
|
shouldCullMove(move, types, moves, abilities, counter, movePool, teamDetails, species, isLead, isDoubles) {
|
|
@@ -2853,7 +2855,7 @@ var RandomGen7Teams = class extends RandomGen8Teams {
|
|
|
2853
2855
|
case "tailwind":
|
|
2854
2856
|
return { cull: !!counter.setupType || ["substitute", "switcheroo", "trick"].some((m) => moves.has(m)) };
|
|
2855
2857
|
case "foulplay":
|
|
2856
|
-
return { cull: !!counter.setupType || !!counter.get("speedsetup") || counter.get("Dark") > 2 || moves.has("clearsmog") || counter.damagingMoves.size - 1 === counter.get("priority") || hasRestTalk };
|
|
2858
|
+
return { cull: !!counter.setupType || !!counter.get("speedsetup") || counter.get("Dark") > 2 || moves.has("clearsmog") || !!counter.get("priority") && counter.damagingMoves.size - 1 === counter.get("priority") || hasRestTalk };
|
|
2857
2859
|
case "haze":
|
|
2858
2860
|
case "spikes":
|
|
2859
2861
|
return { cull: !!counter.setupType || !!counter.get("speedsetup") || moves.has("trickroom") };
|
|
@@ -2899,11 +2901,7 @@ var RandomGen7Teams = class extends RandomGen8Teams {
|
|
|
2899
2901
|
case "voltswitch":
|
|
2900
2902
|
return { cull: !!counter.setupType || !!counter.get("speedsetup") || ["electricterrain", "raindance", "uturn"].some((m) => moves.has(m)) };
|
|
2901
2903
|
case "wish":
|
|
2902
|
-
|
|
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)) };
|
|
2904
|
+
return { cull: species.baseStats.hp < 110 && !abilities.has("Regenerator") && !movePool.includes("protect") && !["ironhead", "protect", "spikyshield", "uturn"].some((m) => moves.has(m)) };
|
|
2907
2905
|
case "bugbite":
|
|
2908
2906
|
case "bugbuzz":
|
|
2909
2907
|
case "infestation":
|
|
@@ -2988,7 +2986,7 @@ var RandomGen7Teams = class extends RandomGen8Teams {
|
|
|
2988
2986
|
case "earthquake":
|
|
2989
2987
|
return { cull: isDoubles && moves.has("highhorsepower") || moves.has("closecombat") && abilities.has("Aerilate") };
|
|
2990
2988
|
case "freezedry":
|
|
2991
|
-
return { cull: moves.has("icebeam") || moves.has("icywind") || counter.get("stab") < species.types.length };
|
|
2989
|
+
return { cull: moves.has("icebeam") || moves.has("icywind") || counter.get("stab") < species.types.length || moves.has("blizzard") && !!counter.setupType };
|
|
2992
2990
|
case "bodyslam":
|
|
2993
2991
|
case "return":
|
|
2994
2992
|
return { cull: moves.has("doubleedge") || moves.has("glare") && moves.has("headbutt") || move.id === "return" && moves.has("bodyslam") };
|
|
@@ -3075,9 +3073,9 @@ var RandomGen7Teams = class extends RandomGen8Teams {
|
|
|
3075
3073
|
case "recover":
|
|
3076
3074
|
case "roost":
|
|
3077
3075
|
case "synthesis":
|
|
3078
|
-
return { cull: moves.has("leechseed") || moves.has("rest") || moves.has("wish") && moves.has("protect") };
|
|
3076
|
+
return { cull: moves.has("leechseed") || moves.has("rest") || moves.has("wish") && (moves.has("protect") || movePool.includes("protect")) };
|
|
3079
3077
|
case "substitute":
|
|
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") };
|
|
3078
|
+
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") || movePool.includes("dragondance") };
|
|
3081
3079
|
case "powersplit":
|
|
3082
3080
|
return { cull: moves.has("guardsplit") };
|
|
3083
3081
|
case "wideguard":
|
|
@@ -3137,7 +3135,7 @@ var RandomGen7Teams = class extends RandomGen8Teams {
|
|
|
3137
3135
|
case "Hydration":
|
|
3138
3136
|
case "Rain Dish":
|
|
3139
3137
|
case "Swift Swim":
|
|
3140
|
-
return species.baseStats.spe > 100 || !moves.has("raindance") && !teamDetails.rain;
|
|
3138
|
+
return species.baseStats.spe > 100 || !moves.has("raindance") && !teamDetails.rain || !moves.has("raindance") && ["Rock Head", "Water Absorb"].some((abil) => abilities.has(abil));
|
|
3141
3139
|
case "Slush Rush":
|
|
3142
3140
|
case "Snow Cloak":
|
|
3143
3141
|
return !teamDetails.hail;
|
|
@@ -3424,6 +3422,8 @@ var RandomGen7Teams = class extends RandomGen8Teams {
|
|
|
3424
3422
|
if (species.name === "Palkia" && (moves.has("dracometeor") || moves.has("spacialrend")) && moves.has("hydropump")) {
|
|
3425
3423
|
return "Lustrous Orb";
|
|
3426
3424
|
}
|
|
3425
|
+
if (species.types.includes("Normal") && moves.has("fakeout") && counter.get("Normal") >= 2)
|
|
3426
|
+
return "Silk Scarf";
|
|
3427
3427
|
if (counter.damagingMoves.size >= 4) {
|
|
3428
3428
|
return counter.get("Dragon") || moves.has("suckerpunch") || counter.get("Normal") ? "Life Orb" : "Expert Belt";
|
|
3429
3429
|
}
|
|
@@ -3443,7 +3443,7 @@ var RandomGen7Teams = class extends RandomGen8Teams {
|
|
|
3443
3443
|
return "Custap Berry";
|
|
3444
3444
|
if (ability === "Super Luck")
|
|
3445
3445
|
return "Scope Lens";
|
|
3446
|
-
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)) {
|
|
3447
3447
|
return "Life Orb";
|
|
3448
3448
|
}
|
|
3449
3449
|
}
|
|
@@ -3559,6 +3559,11 @@ var RandomGen7Teams = class extends RandomGen8Teams {
|
|
|
3559
3559
|
cull = true;
|
|
3560
3560
|
}
|
|
3561
3561
|
}
|
|
3562
|
+
for (const m of moves) {
|
|
3563
|
+
if (runEnforcementChecker(m)) {
|
|
3564
|
+
cull = true;
|
|
3565
|
+
}
|
|
3566
|
+
}
|
|
3562
3567
|
}
|
|
3563
3568
|
}
|
|
3564
3569
|
if (moveid === "rest" && cull) {
|
|
@@ -3850,7 +3855,6 @@ var RandomGen7Teams = class extends RandomGen8Teams {
|
|
|
3850
3855
|
break;
|
|
3851
3856
|
case "Aegislash":
|
|
3852
3857
|
case "Basculin":
|
|
3853
|
-
case "Cherrim":
|
|
3854
3858
|
case "Gourgeist":
|
|
3855
3859
|
case "Groudon":
|
|
3856
3860
|
case "Kyogre":
|
|
@@ -3858,6 +3862,7 @@ var RandomGen7Teams = class extends RandomGen8Teams {
|
|
|
3858
3862
|
if (this.randomChance(1, 2))
|
|
3859
3863
|
continue;
|
|
3860
3864
|
break;
|
|
3865
|
+
case "Cherrim":
|
|
3861
3866
|
case "Greninja":
|
|
3862
3867
|
if (this.gen >= 7 && this.randomChance(1, 2))
|
|
3863
3868
|
continue;
|
|
@@ -4521,7 +4526,9 @@ var RandomGen6Teams = class extends RandomGen7Teams {
|
|
|
4521
4526
|
Refrigerate: (movePool, moves, abilities, types, counter) => !moves.has("blizzard") && !counter.get("Normal"),
|
|
4522
4527
|
Contrary: (movePool, moves, abilities, types, counter, species) => !counter.get("contrary") && species.name !== "Shuckle",
|
|
4523
4528
|
"Bad Dreams": (movePool) => movePool.includes("darkvoid"),
|
|
4524
|
-
"Slow Start": (movePool) => movePool.includes("substitute")
|
|
4529
|
+
"Slow Start": (movePool) => movePool.includes("substitute"),
|
|
4530
|
+
protect: (movePool) => movePool.includes("wish"),
|
|
4531
|
+
wish: (movePool, moves, abilities, types, counter, species) => species.baseStats.hp < 110 && !abilities.has("Regenerator") && movePool.includes("protect")
|
|
4525
4532
|
};
|
|
4526
4533
|
}
|
|
4527
4534
|
shouldCullMove(move, types, moves, abilities, counter, movePool, teamDetails, species, isLead) {
|
|
@@ -4603,7 +4610,7 @@ var RandomGen6Teams = class extends RandomGen7Teams {
|
|
|
4603
4610
|
case "tailwind":
|
|
4604
4611
|
return { cull: !!counter.setupType || ["substitute", "switcheroo", "trick"].some((m) => moves.has(m)) };
|
|
4605
4612
|
case "foulplay":
|
|
4606
|
-
return { cull: !!counter.setupType || !!counter.get("speedsetup") || counter.get("Dark") > 2 || moves.has("clearsmog") || restTalk || counter.damagingMoves.size - 1 === counter.get("priority") };
|
|
4613
|
+
return { cull: !!counter.setupType || !!counter.get("speedsetup") || counter.get("Dark") > 2 || moves.has("clearsmog") || restTalk || !!counter.get("priority") && counter.damagingMoves.size - 1 === counter.get("priority") };
|
|
4607
4614
|
case "haze":
|
|
4608
4615
|
case "spikes":
|
|
4609
4616
|
return { cull: !!counter.setupType || !!counter.get("speedsetup") || moves.has("trickroom") };
|
|
@@ -4613,13 +4620,15 @@ var RandomGen6Teams = class extends RandomGen7Teams {
|
|
|
4613
4620
|
case "healingwish":
|
|
4614
4621
|
case "memento":
|
|
4615
4622
|
return { cull: !!counter.setupType || !!counter.get("recovery") || moves.has("substitute") };
|
|
4623
|
+
case "iceshard":
|
|
4624
|
+
return { cull: moves.has("shellsmash") };
|
|
4616
4625
|
case "leechseed":
|
|
4617
4626
|
case "roar":
|
|
4618
4627
|
case "whirlwind":
|
|
4619
4628
|
return { cull: !!counter.setupType || !!counter.get("speedsetup") || moves.has("dragontail") };
|
|
4620
4629
|
case "nightshade":
|
|
4621
4630
|
case "seismictoss":
|
|
4622
|
-
return { cull: !abilities.has("Parental Bond") && (counter.damagingMoves.size > 1 || !!counter.setupType) };
|
|
4631
|
+
return { cull: !abilities.has("Parental Bond") && (counter.damagingMoves.size > 1 || !!counter.setupType) || moves.has("poweruppunch") };
|
|
4623
4632
|
case "protect":
|
|
4624
4633
|
const screens = moves.has("lightscreen") && moves.has("reflect");
|
|
4625
4634
|
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" };
|
|
@@ -4642,11 +4651,7 @@ var RandomGen6Teams = class extends RandomGen7Teams {
|
|
|
4642
4651
|
case "voltswitch":
|
|
4643
4652
|
return { cull: !!counter.setupType || !!counter.get("speedsetup") || moves.has("raindance") || moves.has("uturn") };
|
|
4644
4653
|
case "wish":
|
|
4645
|
-
|
|
4646
|
-
return { cull: false };
|
|
4647
|
-
if (abilities.has("Regenerator"))
|
|
4648
|
-
return { cull: false };
|
|
4649
|
-
return { cull: !["ironhead", "protect", "spikyshield", "uturn"].some((m) => moves.has(m)) };
|
|
4654
|
+
return { cull: species.baseStats.hp < 110 && !abilities.has("Regenerator") && !movePool.includes("protect") && !["ironhead", "protect", "spikyshield", "uturn"].some((m) => moves.has(m)) };
|
|
4650
4655
|
case "bugbite":
|
|
4651
4656
|
case "bugbuzz":
|
|
4652
4657
|
case "signalbeam":
|
|
@@ -4732,7 +4737,7 @@ var RandomGen6Teams = class extends RandomGen7Teams {
|
|
|
4732
4737
|
case "extremespeed":
|
|
4733
4738
|
return { cull: counter.setupType !== "Physical" && moves.has("vacuumwave") };
|
|
4734
4739
|
case "hiddenpower":
|
|
4735
|
-
return { cull: moves.has("rest") || !counter.get("stab") && counter.damagingMoves.size < 2 };
|
|
4740
|
+
return { cull: moves.has("rest") || !counter.get("stab") && counter.damagingMoves.size < 2 || counter.setupType === "Special" && types.has("Fairy") && movePool.includes("moonblast") };
|
|
4736
4741
|
case "hypervoice":
|
|
4737
4742
|
return { cull: moves.has("blizzard") || moves.has("return") };
|
|
4738
4743
|
case "judgment":
|
|
@@ -4750,7 +4755,7 @@ var RandomGen6Teams = class extends RandomGen7Teams {
|
|
|
4750
4755
|
return { cull: moves.has("psyshock") };
|
|
4751
4756
|
case "psychocut":
|
|
4752
4757
|
case "zenheadbutt":
|
|
4753
|
-
return { cull: (moves.has("psychic") || moves.has("psyshock")) && counter.setupType !== "Physical" };
|
|
4758
|
+
return { cull: (moves.has("psychic") || moves.has("psyshock")) && counter.setupType !== "Physical" || abilities.has("Contrary") && !counter.setupType && !!counter.get("physicalpool") };
|
|
4754
4759
|
case "psyshock":
|
|
4755
4760
|
const psychic = movePool.indexOf("psychic");
|
|
4756
4761
|
if (psychic >= 0)
|
|
@@ -4800,11 +4805,11 @@ var RandomGen6Teams = class extends RandomGen7Teams {
|
|
|
4800
4805
|
case "recover":
|
|
4801
4806
|
case "roost":
|
|
4802
4807
|
case "synthesis":
|
|
4803
|
-
return { cull: ["leechseed", "rest"].some((m) => moves.has(m) || moves.has("wish") && moves.has("protect")) };
|
|
4808
|
+
return { cull: ["leechseed", "rest"].some((m) => moves.has(m)) || moves.has("wish") && (moves.has("protect") || movePool.includes("protect")) };
|
|
4804
4809
|
case "safeguard":
|
|
4805
4810
|
return { cull: moves.has("destinybond") };
|
|
4806
4811
|
case "substitute":
|
|
4807
|
-
return { cull: ["dracometeor", "pursuit", "rest", "taunt", "uturn", "voltswitch", "whirlwind"].some((m) => moves.has(m)) || moves.has("leafstorm") && !abilities.has("Contrary") || movePool.includes("copycat") };
|
|
4812
|
+
return { cull: ["dracometeor", "pursuit", "rest", "taunt", "uturn", "voltswitch", "whirlwind"].some((m) => moves.has(m)) || moves.has("leafstorm") && !abilities.has("Contrary") || movePool.includes("copycat") || movePool.includes("dragondance") };
|
|
4808
4813
|
}
|
|
4809
4814
|
return { cull: false };
|
|
4810
4815
|
}
|
|
@@ -4852,7 +4857,7 @@ var RandomGen6Teams = class extends RandomGen7Teams {
|
|
|
4852
4857
|
case "Hydration":
|
|
4853
4858
|
case "Rain Dish":
|
|
4854
4859
|
case "Swift Swim":
|
|
4855
|
-
return species.baseStats.spe > 100 || !moves.has("raindance") && !teamDetails.rain;
|
|
4860
|
+
return species.baseStats.spe > 100 || !moves.has("raindance") && !teamDetails.rain || !moves.has("raindance") && ["Rock Head", "Water Absorb"].some((abil) => abilities.has(abil));
|
|
4856
4861
|
case "Ice Body":
|
|
4857
4862
|
return !teamDetails.hail;
|
|
4858
4863
|
case "Immunity":
|
|
@@ -5041,12 +5046,14 @@ var RandomGen6Teams = class extends RandomGen7Teams {
|
|
|
5041
5046
|
if (species.name === "Palkia" && (moves.has("dracometeor") || moves.has("spacialrend")) && moves.has("hydropump")) {
|
|
5042
5047
|
return "Lustrous Orb";
|
|
5043
5048
|
}
|
|
5049
|
+
if (species.types.includes("Normal") && moves.has("fakeout") && counter.get("Normal") >= 2)
|
|
5050
|
+
return "Silk Scarf";
|
|
5044
5051
|
if (counter.damagingMoves.size >= 4) {
|
|
5045
5052
|
return counter.get("Dragon") || moves.has("suckerpunch") || counter.get("Normal") ? "Life Orb" : "Expert Belt";
|
|
5046
5053
|
}
|
|
5047
5054
|
if (counter.damagingMoves.size >= 3 && counter.get("speedsetup") && defensiveStatTotal >= 300)
|
|
5048
5055
|
return "Weakness Policy";
|
|
5049
|
-
if (isLead && ability !== "Regenerator" && ability !== "Sturdy" && !counter.get("recoil") && !counter.get("recovery") && defensiveStatTotal
|
|
5056
|
+
if (isLead && ability !== "Regenerator" && ability !== "Sturdy" && !counter.get("recoil") && !counter.get("recovery") && defensiveStatTotal < 255) {
|
|
5050
5057
|
return "Focus Sash";
|
|
5051
5058
|
}
|
|
5052
5059
|
}
|
|
@@ -5062,7 +5069,7 @@ var RandomGen6Teams = class extends RandomGen7Teams {
|
|
|
5062
5069
|
return "Custap Berry";
|
|
5063
5070
|
if (ability === "Super Luck")
|
|
5064
5071
|
return "Scope Lens";
|
|
5065
|
-
if (counter.damagingMoves.size >= 3 && ability !== "Sturdy" && ["acidspray", "dragontail", "foulplay", "rapidspin", "superfang", "uturn"].every((m) => !moves.has(m))) {
|
|
5072
|
+
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))) {
|
|
5066
5073
|
return counter.get("speedsetup") || moves.has("trickroom") || species.baseStats.spe > 40 && defensiveStatTotal <= 275 ? "Life Orb" : "Leftovers";
|
|
5067
5074
|
}
|
|
5068
5075
|
}
|
|
@@ -5151,7 +5158,7 @@ var RandomGen6Teams = class extends RandomGen7Teams {
|
|
|
5151
5158
|
teamDetails
|
|
5152
5159
|
);
|
|
5153
5160
|
};
|
|
5154
|
-
if (!cull && !isSetup && !move.weather && !move.damage && (move.category !== "Status" || !move.flags.heal) && !["judgment", "sleeptalk", "toxic", "lightscreen", "reflect"].includes(moveid) && (counter.get("physicalsetup") + counter.get("specialsetup") < 2 && (!counter.setupType || counter.setupType === "Mixed" || move.category !== counter.setupType && move.category !== "Status" || counter.get(counter.setupType) + counter.get("Status") > 3)) && (move.category === "Status" || !types.has(move.type) || move.basePower && move.basePower < 40 && !move.multihit)) {
|
|
5161
|
+
if (!cull && !isSetup && !move.weather && !move.stallingMove && !move.damage && (move.category !== "Status" || !move.flags.heal) && !["judgment", "sleeptalk", "toxic", "lightscreen", "reflect"].includes(moveid) && (counter.get("physicalsetup") + counter.get("specialsetup") < 2 && (!counter.setupType || counter.setupType === "Mixed" || move.category !== counter.setupType && move.category !== "Status" || counter.get(counter.setupType) + counter.get("Status") > 3)) && (move.category === "Status" || !types.has(move.type) || move.basePower && move.basePower < 40 && !move.multihit)) {
|
|
5155
5162
|
if (!counter.get("stab") && !moves.has("nightshade") && !moves.has("seismictoss") && (species.types.length > 1 || species.types[0] !== "Normal" && species.types[0] !== "Psychic" || !moves.has("icebeam") || species.baseStats.spa >= species.baseStats.spd) || !counter.get("recovery") && !counter.setupType && ["healingwish", "switcheroo", "trick", "trickroom"].every((m) => !moves.has(m)) && ["recover", "roost", "slackoff", "softboiled"].some((m) => movePool.includes(m)) && counter.get("Status") || movePool.includes("milkdrink") || movePool.includes("moonlight") && types.size < 2 || movePool.includes("stickyweb") && !counter.setupType && !teamDetails.stickyWeb || species.requiredMove && movePool.includes(toID3(species.requiredMove)) || moves.has("suckerpunch") && counter.get("stab") < species.types.length || movePool.includes("quiverdance") && ["defog", "uturn", "stickyweb"].every((m) => !moves.has(m)) && counter.get("Special") < 4) {
|
|
5156
5163
|
cull = true;
|
|
5157
5164
|
} else {
|
|
@@ -5165,6 +5172,11 @@ var RandomGen6Teams = class extends RandomGen7Teams {
|
|
|
5165
5172
|
cull = true;
|
|
5166
5173
|
}
|
|
5167
5174
|
}
|
|
5175
|
+
for (const m of moves) {
|
|
5176
|
+
if (runEnforcementChecker(m)) {
|
|
5177
|
+
cull = true;
|
|
5178
|
+
}
|
|
5179
|
+
}
|
|
5168
5180
|
}
|
|
5169
5181
|
}
|
|
5170
5182
|
if (moveid === "rest" && cull) {
|
|
@@ -5577,7 +5589,7 @@ var RandomGen5Teams = class extends RandomGen6Teams {
|
|
|
5577
5589
|
Fire: (movePool, moves, abilities, types, counter) => !counter.get("Fire"),
|
|
5578
5590
|
Flying: (movePool, moves, abilities, types, counter) => !counter.get("Flying") && (types.has("Normal") || abilities.has("Serene Grace")),
|
|
5579
5591
|
Ghost: (movePool, moves, abilities, types, counter) => !types.has("Dark") && !counter.get("Ghost"),
|
|
5580
|
-
Grass: (movePool) =>
|
|
5592
|
+
Grass: (movePool) => ["hornleech", "seedflare", "woodhammer"].some((m) => movePool.includes(m)),
|
|
5581
5593
|
Ground: (movePool, moves, abilities, types, counter) => !counter.get("Ground") && !moves.has("rest") && !moves.has("sleeptalk"),
|
|
5582
5594
|
Ice: (movePool, moves, abilities, types, counter) => !counter.get("Ice"),
|
|
5583
5595
|
Normal: (movePool, moves, abilities, types, counter, species) => movePool.includes("return") && species.baseStats.atk > 80,
|
|
@@ -5942,12 +5954,12 @@ var RandomGen5Teams = class extends RandomGen6Teams {
|
|
|
5942
5954
|
return "Air Balloon";
|
|
5943
5955
|
if (counter.get("Dark") >= 3)
|
|
5944
5956
|
return "Black Glasses";
|
|
5957
|
+
if (species.name === "Palkia" && (moves.has("dracometeor") || moves.has("spacialrend"))) {
|
|
5958
|
+
return "Lustrous Orb";
|
|
5959
|
+
}
|
|
5945
5960
|
if (types.has("Poison") || ["bodyslam", "dragontail", "protect", "scald", "sleeptalk", "substitute"].some((m) => moves.has(m))) {
|
|
5946
5961
|
return "Leftovers";
|
|
5947
5962
|
}
|
|
5948
|
-
if (species.name === "Palkia" && (moves.has("dracometeor") || moves.has("spacialrend")) && moves.has("hydropump")) {
|
|
5949
|
-
return "Lustrous Orb";
|
|
5950
|
-
}
|
|
5951
5963
|
if (counter.damagingMoves.size >= 4 && ability !== "Sturdy") {
|
|
5952
5964
|
return moves.has("uturn") ? "Expert Belt" : "Life Orb";
|
|
5953
5965
|
}
|
|
@@ -6383,7 +6395,9 @@ var RandomGen4Teams = class extends RandomGen5Teams {
|
|
|
6383
6395
|
Water: (movePool, moves, abilities, types, counter) => !counter.get("Water") && (moves.has("raindance") || !types.has("Ice") || !counter.get("Ice")),
|
|
6384
6396
|
Adaptability: (movePool, moves, abilities, types, counter, species) => !counter.setupType && species.types.length > 1 && (!counter.get(species.types[0]) || !counter.get(species.types[1])),
|
|
6385
6397
|
Guts: (movePool, moves, abilities, types) => types.has("Normal") && movePool.includes("facade"),
|
|
6386
|
-
"Slow Start": (movePool) => movePool.includes("substitute")
|
|
6398
|
+
"Slow Start": (movePool) => movePool.includes("substitute"),
|
|
6399
|
+
protect: (movePool) => movePool.includes("wish"),
|
|
6400
|
+
wish: (movePool) => movePool.includes("protect")
|
|
6387
6401
|
};
|
|
6388
6402
|
}
|
|
6389
6403
|
shouldCullMove(move, types, moves, abilities, counter, movePool, teamDetails, species, isLead) {
|
|
@@ -6463,7 +6477,9 @@ var RandomGen4Teams = class extends RandomGen5Teams {
|
|
|
6463
6477
|
case "protect":
|
|
6464
6478
|
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)) };
|
|
6465
6479
|
case "wish":
|
|
6466
|
-
return { cull: !["batonpass", "ironhead", "protect", "softboiled", "uturn"].some((m) => moves.has(m))
|
|
6480
|
+
return { cull: !["batonpass", "ironhead", "moonlight", "protect", "softboiled", "uturn"].some((m) => moves.has(m)) && !movePool.includes("protect") };
|
|
6481
|
+
case "moonlight":
|
|
6482
|
+
return { cull: moves.has("wish") && (moves.has("protect") || movePool.includes("protect")) };
|
|
6467
6483
|
case "rapidspin":
|
|
6468
6484
|
return { cull: !!teamDetails.rapidSpin || !!counter.setupType && counter.get("Physical") + counter.get("Special") < 2 };
|
|
6469
6485
|
case "fakeout":
|
|
@@ -6495,9 +6511,8 @@ var RandomGen4Teams = class extends RandomGen5Teams {
|
|
|
6495
6511
|
return { cull: moves.has("substitute") };
|
|
6496
6512
|
case "headbutt":
|
|
6497
6513
|
return { cull: !moves.has("bodyslam") && !moves.has("thunderwave") };
|
|
6498
|
-
case "judgment":
|
|
6499
6514
|
case "swift":
|
|
6500
|
-
return { cull: counter.setupType !== "Special"
|
|
6515
|
+
return { cull: counter.setupType !== "Special" };
|
|
6501
6516
|
case "quickattack":
|
|
6502
6517
|
return { cull: moves.has("thunderwave") };
|
|
6503
6518
|
case "firepunch":
|
|
@@ -6667,7 +6682,9 @@ var RandomGen4Teams = class extends RandomGen5Teams {
|
|
|
6667
6682
|
return species.requiredItem;
|
|
6668
6683
|
if (species.requiredItems)
|
|
6669
6684
|
return this.sample(species.requiredItems);
|
|
6670
|
-
if (species.name === "
|
|
6685
|
+
if (species.name === "Ditto")
|
|
6686
|
+
return this.sample(["Salac Berry", "Sitrus Berry"]);
|
|
6687
|
+
if (species.name === "Farfetch\u2019d" && counter.get("Physical") < 4)
|
|
6671
6688
|
return "Stick";
|
|
6672
6689
|
if (species.name === "Marowak")
|
|
6673
6690
|
return "Thick Club";
|
|
@@ -6858,6 +6875,10 @@ var RandomGen4Teams = class extends RandomGen5Teams {
|
|
|
6858
6875
|
if (runEnforcementChecker(abil))
|
|
6859
6876
|
cull = true;
|
|
6860
6877
|
}
|
|
6878
|
+
for (const m of moves) {
|
|
6879
|
+
if (runEnforcementChecker(m))
|
|
6880
|
+
cull = true;
|
|
6881
|
+
}
|
|
6861
6882
|
}
|
|
6862
6883
|
}
|
|
6863
6884
|
if (moveid === "rest" && cull) {
|
|
@@ -7223,7 +7244,7 @@ var RandomGen3Teams = class extends RandomGen4Teams {
|
|
|
7223
7244
|
return "Petaya Berry";
|
|
7224
7245
|
if (counter.get("Physical") >= 4 && !moves.has("fakeout"))
|
|
7225
7246
|
return "Choice Band";
|
|
7226
|
-
if (counter.get("Physical") >= 3 && !moves.has("rapidspin") && (["
|
|
7247
|
+
if (counter.get("Physical") >= 3 && !moves.has("rapidspin") && (["fireblast", "icebeam", "overheat"].some((m) => moves.has(m)) || Array.from(moves).some((m) => {
|
|
7227
7248
|
const moveData = this.dex.moves.get(m);
|
|
7228
7249
|
return moveData.category === "Special" && types.has(moveData.type);
|
|
7229
7250
|
}))) {
|
|
@@ -7312,7 +7333,7 @@ var RandomGen3Teams = class extends RandomGen4Teams {
|
|
|
7312
7333
|
cull = true;
|
|
7313
7334
|
}
|
|
7314
7335
|
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);
|
|
7315
|
-
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;
|
|
7336
|
+
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;
|
|
7316
7337
|
const runEnforcementChecker = (checkerName) => {
|
|
7317
7338
|
if (!this.moveEnforcementCheckers[checkerName])
|
|
7318
7339
|
return false;
|
|
@@ -8200,7 +8221,7 @@ import {
|
|
|
8200
8221
|
Tags as Tags2,
|
|
8201
8222
|
toID as toID6
|
|
8202
8223
|
} from "@pkmn/sim";
|
|
8203
|
-
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", "Substitute"], "teraTypes": ["Water"] }, { "role": "Wallbreaker", "movepool": ["Aqua Jet", "Bulk Up", "Close Combat", "Liquidation", "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"] }] }, "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", "Swords Dance", "Throat Chop"], "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", "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": 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"] }, { "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": 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": ["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": ["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": 71, "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": 71, "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": 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": ["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": 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"] }] }, "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": ["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": 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": ["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": 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", "Grass"] }] }, "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": ["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": 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"] }] }, "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": "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": 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": ["Steel", "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", "Toxic Spikes"], "teraTypes": ["Water"] }] }, "kingambit": { "level": 80, "sets": [{ "role": "Wallbreaker", "movepool": ["Iron Head", "Kowtow Cleave", "Stealth Rock", "Sucker Punch", "Swords Dance"], "teraTypes": ["Dark", "Flying"] }] } };
|
|
8224
|
+
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"], "teraTypes": ["Ghost", "Fighting", "Steel"] }] }, "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 Support", "movepool": ["Calm Mind", "Freeze-Dry", "Protect", "Wish", "Yawn"], "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", "Rock"] }, { "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": "Setup Sweeper", "movepool": ["Dark Pulse", "Focus Blast", "Nasty Plot", "Psyshock"], "teraTypes": ["Dark", "Fighting", "Psychic"] }, { "role": "Bulky Attacker", "movepool": ["Focus Blast", "Gunk Shot", "Hyperspace Fury", "Psychic", "Trick"], "teraTypes": ["Fighting", "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", "Grass"] }] }, "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", "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", "Play Rough", "Protect", "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": ["Calm Mind", "Close Combat", "Moonblast", "Psychic"], "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"] }] } };
|
|
8204
8225
|
var MoveCounter3 = class extends Utils.Multiset {
|
|
8205
8226
|
constructor() {
|
|
8206
8227
|
super();
|
|
@@ -8507,21 +8528,7 @@ var RandomTeams = class {
|
|
|
8507
8528
|
const categories = { Physical: 0, Special: 0, Status: 0 };
|
|
8508
8529
|
for (const moveid of moves) {
|
|
8509
8530
|
const move = this.dex.moves.get(moveid);
|
|
8510
|
-
|
|
8511
|
-
if (["judgment", "revelationdance"].includes(moveid))
|
|
8512
|
-
moveType = types[0];
|
|
8513
|
-
if (moveType === "Normal") {
|
|
8514
|
-
if (abilities.has("Aerilate"))
|
|
8515
|
-
moveType = "Flying";
|
|
8516
|
-
if (abilities.has("Galvanize"))
|
|
8517
|
-
moveType = "Electric";
|
|
8518
|
-
if (abilities.has("Pixilate"))
|
|
8519
|
-
moveType = "Fairy";
|
|
8520
|
-
if (abilities.has("Refrigerate"))
|
|
8521
|
-
moveType = "Ice";
|
|
8522
|
-
}
|
|
8523
|
-
if (moveid === "terablast")
|
|
8524
|
-
moveType = teraType;
|
|
8531
|
+
const moveType = this.getMoveType(move, species, abilities, teraType);
|
|
8525
8532
|
if (move.damage || move.damageCallback) {
|
|
8526
8533
|
counter.add("damage");
|
|
8527
8534
|
counter.damagingMoves.add(move);
|
|
@@ -8642,7 +8649,7 @@ var RandomTeams = class {
|
|
|
8642
8649
|
this.incompatibleMoves(moves, movePool, "dragondance", "dracometeor");
|
|
8643
8650
|
this.incompatibleMoves(moves, movePool, "psychic", "psyshock");
|
|
8644
8651
|
this.incompatibleMoves(moves, movePool, "surf", "hydropump");
|
|
8645
|
-
this.incompatibleMoves(moves, movePool, "
|
|
8652
|
+
this.incompatibleMoves(moves, movePool, ["liquidation", "ragingbull"], ["liquidation", "wavecrash"]);
|
|
8646
8653
|
this.incompatibleMoves(moves, movePool, ["airslash", "bravebird", "hurricane"], ["airslash", "bravebird", "hurricane"]);
|
|
8647
8654
|
this.incompatibleMoves(moves, movePool, "knockoff", "foulplay");
|
|
8648
8655
|
this.incompatibleMoves(moves, movePool, "doubleedge", "headbutt");
|
|
@@ -8704,6 +8711,32 @@ var RandomTeams = class {
|
|
|
8704
8711
|
this.cullMovePool(types, moves, abilities, counter, movePool, teamDetails, species, isLead, isDoubles, teraType, role);
|
|
8705
8712
|
return counter;
|
|
8706
8713
|
}
|
|
8714
|
+
getMoveType(move, species, abilities, teraType) {
|
|
8715
|
+
if (move.id === "terablast")
|
|
8716
|
+
return teraType;
|
|
8717
|
+
if (["judgment", "revelationdance"].includes(move.id))
|
|
8718
|
+
return species.types[0];
|
|
8719
|
+
if (move.name === "Raging Bull" && species.name.startsWith("Tauros-Paldea")) {
|
|
8720
|
+
if (species.name.endsWith("Combat"))
|
|
8721
|
+
return "Fighting";
|
|
8722
|
+
if (species.name.endsWith("Blaze"))
|
|
8723
|
+
return "Fire";
|
|
8724
|
+
if (species.name.endsWith("Aqua"))
|
|
8725
|
+
return "Water";
|
|
8726
|
+
}
|
|
8727
|
+
const moveType = move.type;
|
|
8728
|
+
if (moveType === "Normal") {
|
|
8729
|
+
if (abilities.has("Aerilate"))
|
|
8730
|
+
return "Flying";
|
|
8731
|
+
if (abilities.has("Galvanize"))
|
|
8732
|
+
return "Electric";
|
|
8733
|
+
if (abilities.has("Pixilate"))
|
|
8734
|
+
return "Fairy";
|
|
8735
|
+
if (abilities.has("Refrigerate"))
|
|
8736
|
+
return "Ice";
|
|
8737
|
+
}
|
|
8738
|
+
return moveType;
|
|
8739
|
+
}
|
|
8707
8740
|
randomMoveset(types, abilities, teamDetails, species, isLead, isDoubles, movePool, teraType, role) {
|
|
8708
8741
|
const moves = /* @__PURE__ */ new Set();
|
|
8709
8742
|
let counter = this.queryMoves(moves, species, teraType, abilities);
|
|
@@ -8841,17 +8874,7 @@ var RandomTeams = class {
|
|
|
8841
8874
|
const priorityMoves = [];
|
|
8842
8875
|
for (const moveid of movePool) {
|
|
8843
8876
|
const move = this.dex.moves.get(moveid);
|
|
8844
|
-
|
|
8845
|
-
if (moveType === "Normal") {
|
|
8846
|
-
if (abilities.has("Aerilate"))
|
|
8847
|
-
moveType = "Flying";
|
|
8848
|
-
if (abilities.has("Galvanize"))
|
|
8849
|
-
moveType = "Electric";
|
|
8850
|
-
if (abilities.has("Pixilate"))
|
|
8851
|
-
moveType = "Fairy";
|
|
8852
|
-
if (abilities.has("Refrigerate"))
|
|
8853
|
-
moveType = "Ice";
|
|
8854
|
-
}
|
|
8877
|
+
const moveType = this.getMoveType(move, species, abilities, teraType);
|
|
8855
8878
|
if (types.includes(moveType) && move.priority > 0 && move.category !== "Status") {
|
|
8856
8879
|
priorityMoves.push(moveid);
|
|
8857
8880
|
}
|
|
@@ -8878,21 +8901,7 @@ var RandomTeams = class {
|
|
|
8878
8901
|
const stabMoves = [];
|
|
8879
8902
|
for (const moveid of movePool) {
|
|
8880
8903
|
const move = this.dex.moves.get(moveid);
|
|
8881
|
-
|
|
8882
|
-
if (["judgment", "revelationdance"].includes(moveid))
|
|
8883
|
-
moveType = types[0];
|
|
8884
|
-
if (moveType === "Normal") {
|
|
8885
|
-
if (abilities.has("Aerilate"))
|
|
8886
|
-
moveType = "Flying";
|
|
8887
|
-
if (abilities.has("Galvanize"))
|
|
8888
|
-
moveType = "Electric";
|
|
8889
|
-
if (abilities.has("Pixilate"))
|
|
8890
|
-
moveType = "Fairy";
|
|
8891
|
-
if (abilities.has("Refrigerate"))
|
|
8892
|
-
moveType = "Ice";
|
|
8893
|
-
}
|
|
8894
|
-
if (moveid === "terablast")
|
|
8895
|
-
moveType = teraType;
|
|
8904
|
+
const moveType = this.getMoveType(move, species, abilities, teraType);
|
|
8896
8905
|
if (type === moveType && (move.basePower > 30 || move.multihit || move.basePowerCallback) && (!this.noStab.includes(moveid) || abilities.has("Technician") && moveid === "machpunch")) {
|
|
8897
8906
|
stabMoves.push(moveid);
|
|
8898
8907
|
}
|
|
@@ -8919,21 +8928,7 @@ var RandomTeams = class {
|
|
|
8919
8928
|
const stabMoves = [];
|
|
8920
8929
|
for (const moveid of movePool) {
|
|
8921
8930
|
const move = this.dex.moves.get(moveid);
|
|
8922
|
-
|
|
8923
|
-
if (["judgment", "revelationdance"].includes(moveid))
|
|
8924
|
-
moveType = types[0];
|
|
8925
|
-
if (moveType === "Normal") {
|
|
8926
|
-
if (abilities.has("Aerilate"))
|
|
8927
|
-
moveType = "Flying";
|
|
8928
|
-
if (abilities.has("Galvanize"))
|
|
8929
|
-
moveType = "Electric";
|
|
8930
|
-
if (abilities.has("Pixilate"))
|
|
8931
|
-
moveType = "Fairy";
|
|
8932
|
-
if (abilities.has("Refrigerate"))
|
|
8933
|
-
moveType = "Ice";
|
|
8934
|
-
}
|
|
8935
|
-
if (moveid === "terablast")
|
|
8936
|
-
moveType = teraType;
|
|
8931
|
+
const moveType = this.getMoveType(move, species, abilities, teraType);
|
|
8937
8932
|
if (!this.noStab.includes(moveid) && (move.basePower > 30 || move.multihit || move.basePowerCallback)) {
|
|
8938
8933
|
if (types.includes(moveType)) {
|
|
8939
8934
|
stabMoves.push(moveid);
|
|
@@ -8961,9 +8956,7 @@ var RandomTeams = class {
|
|
|
8961
8956
|
const stabMoves = [];
|
|
8962
8957
|
for (const moveid of movePool) {
|
|
8963
8958
|
const move = this.dex.moves.get(moveid);
|
|
8964
|
-
|
|
8965
|
-
if (["judgment", "revelationdance"].includes(moveid))
|
|
8966
|
-
moveType = types[0];
|
|
8959
|
+
const moveType = this.getMoveType(move, species, abilities, teraType);
|
|
8967
8960
|
if (!this.noStab.includes(moveid) && (move.basePower > 30 || move.multihit || move.basePowerCallback)) {
|
|
8968
8961
|
if (teraType === moveType) {
|
|
8969
8962
|
stabMoves.push(moveid);
|
|
@@ -9049,40 +9042,14 @@ var RandomTeams = class {
|
|
|
9049
9042
|
for (const moveid of moves) {
|
|
9050
9043
|
const move = this.dex.moves.get(moveid);
|
|
9051
9044
|
if (move.basePower > 30 || move.multihit || move.basePowerCallback) {
|
|
9052
|
-
|
|
9053
|
-
|
|
9054
|
-
moveType = types[0];
|
|
9055
|
-
if (moveType === "Normal") {
|
|
9056
|
-
if (abilities.has("Aerilate"))
|
|
9057
|
-
moveType = "Flying";
|
|
9058
|
-
if (abilities.has("Galvanize"))
|
|
9059
|
-
moveType = "Electric";
|
|
9060
|
-
if (abilities.has("Pixilate"))
|
|
9061
|
-
moveType = "Fairy";
|
|
9062
|
-
if (abilities.has("Refrigerate"))
|
|
9063
|
-
moveType = "Ice";
|
|
9064
|
-
}
|
|
9065
|
-
if (moveid === "terablast")
|
|
9066
|
-
moveType = teraType;
|
|
9067
|
-
currentAttackType = move.type;
|
|
9045
|
+
const moveType = this.getMoveType(move, species, abilities, teraType);
|
|
9046
|
+
currentAttackType = moveType;
|
|
9068
9047
|
}
|
|
9069
9048
|
}
|
|
9070
9049
|
const coverageMoves = [];
|
|
9071
9050
|
for (const moveid of movePool) {
|
|
9072
9051
|
const move = this.dex.moves.get(moveid);
|
|
9073
|
-
|
|
9074
|
-
if (["judgment", "revelationdance"].includes(moveid))
|
|
9075
|
-
moveType = types[0];
|
|
9076
|
-
if (moveType === "Normal") {
|
|
9077
|
-
if (abilities.has("Aerilate"))
|
|
9078
|
-
moveType = "Flying";
|
|
9079
|
-
if (abilities.has("Galvanize"))
|
|
9080
|
-
moveType = "Electric";
|
|
9081
|
-
if (abilities.has("Pixilate"))
|
|
9082
|
-
moveType = "Fairy";
|
|
9083
|
-
if (abilities.has("Refrigerate"))
|
|
9084
|
-
moveType = "Ice";
|
|
9085
|
-
}
|
|
9052
|
+
const moveType = this.getMoveType(move, species, abilities, teraType);
|
|
9086
9053
|
if (!this.noStab.includes(moveid) && (move.basePower > 30 || move.multihit || move.basePowerCallback)) {
|
|
9087
9054
|
if (currentAttackType !== moveType)
|
|
9088
9055
|
coverageMoves.push(moveid);
|
|
@@ -9251,6 +9218,8 @@ var RandomTeams = class {
|
|
|
9251
9218
|
return !counter.get("sheerforce") || moves.has("bellydrum") || braviaryCase || abilitiesCase;
|
|
9252
9219
|
case "Slush Rush":
|
|
9253
9220
|
return !teamDetails.snow;
|
|
9221
|
+
case "Sniper":
|
|
9222
|
+
return abilities.has("Torrent");
|
|
9254
9223
|
case "Solar Power":
|
|
9255
9224
|
return !teamDetails.sun || !counter.get("Special");
|
|
9256
9225
|
case "Stakeout":
|
|
@@ -9506,7 +9475,9 @@ var RandomTeams = class {
|
|
|
9506
9475
|
if (role === "Fast Support" || role === "Fast Bulky Setup") {
|
|
9507
9476
|
return counter.damagingMoves.size >= 3 && !moves.has("nuzzle") ? "Life Orb" : "Leftovers";
|
|
9508
9477
|
}
|
|
9509
|
-
if (
|
|
9478
|
+
if (role === "Tera Blast user" && counter.get("recovery") && counter.damagingMoves.size < 3)
|
|
9479
|
+
return "Leftovers";
|
|
9480
|
+
if (["flamecharge", "rapidspin"].every((m) => !moves.has(m)) && ["Fast Attacker", "Setup Sweeper", "Tera Blast user", "Wallbreaker"].some((m) => role === m))
|
|
9510
9481
|
return "Life Orb";
|
|
9511
9482
|
if (isDoubles)
|
|
9512
9483
|
return "Sitrus Berry";
|
|
@@ -9627,13 +9598,15 @@ var RandomTeams = class {
|
|
|
9627
9598
|
evs.spe = 0;
|
|
9628
9599
|
ivs.spe = 0;
|
|
9629
9600
|
}
|
|
9601
|
+
const shuffledMoves = Array.from(moves);
|
|
9602
|
+
this.prng.shuffle(shuffledMoves);
|
|
9630
9603
|
return {
|
|
9631
9604
|
name: species.baseSpecies,
|
|
9632
9605
|
species: forme,
|
|
9633
9606
|
gender: species.gender,
|
|
9634
9607
|
shiny: this.randomChance(1, 1024),
|
|
9635
9608
|
level,
|
|
9636
|
-
moves:
|
|
9609
|
+
moves: shuffledMoves,
|
|
9637
9610
|
ability,
|
|
9638
9611
|
evs,
|
|
9639
9612
|
ivs,
|