@pkmn/randoms 0.7.12 → 0.7.14
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 +201 -153
- package/build/index.js.map +1 -1
- package/build/index.mjs +201 -153
- package/build/index.mjs.map +1 -1
- package/package.json +2 -2
package/build/index.js
CHANGED
|
@@ -1525,9 +1525,9 @@ var RandomGen8Teams = class {
|
|
|
1525
1525
|
return "Life Orb";
|
|
1526
1526
|
if (moves.has("bellydrum") && moves.has("substitute"))
|
|
1527
1527
|
return "Salac Berry";
|
|
1528
|
-
const HDBBetterThanEviolite = !isLead && this.dex.getEffectiveness("Rock", species) >= 2
|
|
1529
|
-
if (species.nfe
|
|
1530
|
-
return "Eviolite";
|
|
1528
|
+
const HDBBetterThanEviolite = !isDoubles && (!isLead || moves.has("uturn")) && this.dex.getEffectiveness("Rock", species) >= 2;
|
|
1529
|
+
if (species.nfe)
|
|
1530
|
+
return HDBBetterThanEviolite ? "Heavy-Duty Boots" : "Eviolite";
|
|
1531
1531
|
if (species.name === "Wobbuffet" || ["Cheek Pouch", "Harvest", "Ripen"].includes(ability))
|
|
1532
1532
|
return "Sitrus Berry";
|
|
1533
1533
|
if (ability === "Gluttony")
|
|
@@ -1646,6 +1646,87 @@ var RandomGen8Teams = class {
|
|
|
1646
1646
|
if (!isDoubles && !moves.has("substitute") && (moves.has("dragondance") || moves.has("swordsdance")) && (moves.has("outrage") || ["Bug", "Fire", "Ground", "Normal", "Poison"].every((type) => !types.has(type)) && !["Pastel Veil", "Storm Drain"].includes(ability)))
|
|
1647
1647
|
return "Lum Berry";
|
|
1648
1648
|
}
|
|
1649
|
+
getLevel(species, isDoubles, isNoDynamax) {
|
|
1650
|
+
if (this.adjustLevel)
|
|
1651
|
+
return this.adjustLevel;
|
|
1652
|
+
if (isDoubles && species.randomDoubleBattleLevel)
|
|
1653
|
+
return species.randomDoubleBattleLevel;
|
|
1654
|
+
if (isNoDynamax) {
|
|
1655
|
+
const tier = species.name.endsWith("-Gmax") ? this.dex.species.get(species.changesFrom).tier : species.tier;
|
|
1656
|
+
const tierScale = {
|
|
1657
|
+
Uber: 76,
|
|
1658
|
+
OU: 80,
|
|
1659
|
+
UUBL: 81,
|
|
1660
|
+
UU: 82,
|
|
1661
|
+
RUBL: 83,
|
|
1662
|
+
RU: 84,
|
|
1663
|
+
NUBL: 85,
|
|
1664
|
+
NU: 86,
|
|
1665
|
+
PUBL: 87,
|
|
1666
|
+
PU: 88,
|
|
1667
|
+
"(PU)": 88,
|
|
1668
|
+
NFE: 88
|
|
1669
|
+
};
|
|
1670
|
+
const customScale = {
|
|
1671
|
+
zaciancrowned: 65,
|
|
1672
|
+
calyrexshadow: 68,
|
|
1673
|
+
xerneas: 70,
|
|
1674
|
+
necrozmaduskmane: 72,
|
|
1675
|
+
zacian: 72,
|
|
1676
|
+
kyogre: 73,
|
|
1677
|
+
eternatus: 73,
|
|
1678
|
+
zekrom: 74,
|
|
1679
|
+
marshadow: 75,
|
|
1680
|
+
glalie: 78,
|
|
1681
|
+
urshifurapidstrike: 79,
|
|
1682
|
+
haxorus: 80,
|
|
1683
|
+
inteleon: 80,
|
|
1684
|
+
cresselia: 83,
|
|
1685
|
+
octillery: 84,
|
|
1686
|
+
jolteon: 84,
|
|
1687
|
+
swoobat: 84,
|
|
1688
|
+
dugtrio: 84,
|
|
1689
|
+
slurpuff: 84,
|
|
1690
|
+
polteageist: 84,
|
|
1691
|
+
wobbuffet: 86,
|
|
1692
|
+
scrafty: 86,
|
|
1693
|
+
delibird: 100,
|
|
1694
|
+
vespiquen: 96,
|
|
1695
|
+
pikachu: 92,
|
|
1696
|
+
shedinja: 92,
|
|
1697
|
+
solrock: 90,
|
|
1698
|
+
arctozolt: 88,
|
|
1699
|
+
reuniclus: 87,
|
|
1700
|
+
decidueye: 87,
|
|
1701
|
+
noivern: 85,
|
|
1702
|
+
magnezone: 82,
|
|
1703
|
+
slowking: 81
|
|
1704
|
+
};
|
|
1705
|
+
return customScale[species.id] || tierScale[tier] || 80;
|
|
1706
|
+
}
|
|
1707
|
+
if (this.dex.currentMod === "gen8bdsp") {
|
|
1708
|
+
const tierScale = {
|
|
1709
|
+
Uber: 76,
|
|
1710
|
+
Unreleased: 76,
|
|
1711
|
+
OU: 80,
|
|
1712
|
+
UUBL: 81,
|
|
1713
|
+
UU: 82,
|
|
1714
|
+
RUBL: 83,
|
|
1715
|
+
RU: 84,
|
|
1716
|
+
NUBL: 85,
|
|
1717
|
+
NU: 86,
|
|
1718
|
+
PUBL: 87,
|
|
1719
|
+
PU: 88,
|
|
1720
|
+
"(PU)": 88,
|
|
1721
|
+
NFE: 88
|
|
1722
|
+
};
|
|
1723
|
+
const customScale = { delibird: 100, glalie: 76, luvdisc: 100, spinda: 100, unown: 100 };
|
|
1724
|
+
return customScale[species.id] || tierScale[species.tier] || 80;
|
|
1725
|
+
}
|
|
1726
|
+
if (species.randomBattleLevel)
|
|
1727
|
+
return species.randomBattleLevel;
|
|
1728
|
+
return 80;
|
|
1729
|
+
}
|
|
1649
1730
|
randomSet(species, teamDetails = {}, isLead = false, isDoubles = false, isNoDynamax = false) {
|
|
1650
1731
|
species = this.dex.species.get(species);
|
|
1651
1732
|
let forme = species.name;
|
|
@@ -1730,10 +1811,10 @@ var RandomGen8Teams = class {
|
|
|
1730
1811
|
cull = true;
|
|
1731
1812
|
}
|
|
1732
1813
|
const isLowBP = move.basePower && move.basePower < 50;
|
|
1733
|
-
const moveIsRejectable = !(species.id === "genesectdouse" && move.id === "technoblast") && !(species.id === "togekiss" && move.id === "nastyplot") && (move.category === "Status" || !types.has(move.type) && move.id !== "judgment" || isLowBP && !move.multihit && !abilities.has("Technician"));
|
|
1814
|
+
const moveIsRejectable = !(species.id === "genesectdouse" && move.id === "technoblast") && !(species.id === "togekiss" && move.id === "nastyplot") && !(species.id === "shuckle" && ["stealthrock", "stickyweb"].includes(move.id)) && (move.category === "Status" || !types.has(move.type) && move.id !== "judgment" || isLowBP && !move.multihit && !abilities.has("Technician"));
|
|
1734
1815
|
const notImportantSetup = !counter.setupType || counter.setupType === "Mixed" || counter.get(counter.setupType) + counter.get("Status") > 3 && !counter.get("hazards") || move.category !== counter.setupType && move.category !== "Status";
|
|
1735
1816
|
if (moveIsRejectable && (!cull && !isSetup && !move.weather && !move.stallingMove && notImportantSetup && !move.damage && (isDoubles ? this.unrejectableMovesInDoubles(move) : this.unrejectableMovesInSingles(move)))) {
|
|
1736
|
-
if (!counter.get("stab") && counter.get("physicalpool") + counter.get("specialpool") > 0 && move.id !== "stickyweb" || moves.has("swordsdance") && species.id === "mew" && runEnforcementChecker("Flying") || abilities.has("Steelworker") && runEnforcementChecker("Steel") || !isDoubles && runEnforcementChecker("recovery") && move.id !== "stickyweb" || runEnforcementChecker("screens") || runEnforcementChecker("misc") || isLead && runEnforcementChecker("lead") || moves.has("leechseed") && runEnforcementChecker("leechseed")) {
|
|
1817
|
+
if (!counter.get("stab") && counter.get("physicalpool") + counter.get("specialpool") > 0 && move.id !== "stickyweb" || moves.has("swordsdance") && species.id === "mew" && runEnforcementChecker("Flying") || abilities.has("Steelworker") && runEnforcementChecker("Steel") || !isDoubles && runEnforcementChecker("recovery") && move.id !== "stickyweb" || runEnforcementChecker("screens") || runEnforcementChecker("misc") || (isLead || species.id === "shuckle") && runEnforcementChecker("lead") || moves.has("leechseed") && runEnforcementChecker("leechseed")) {
|
|
1737
1818
|
cull = true;
|
|
1738
1819
|
} else if (move.id !== "stickyweb" && !(species.id === "azumarill" && move.id === "aquajet")) {
|
|
1739
1820
|
for (const type of types) {
|
|
@@ -1893,86 +1974,7 @@ var RandomGen8Teams = class {
|
|
|
1893
1974
|
if (species.baseSpecies === "Pikachu" && !gmax && this.dex.currentMod !== "gen8bdsp") {
|
|
1894
1975
|
forme = "Pikachu" + this.sample(["", "-Original", "-Hoenn", "-Sinnoh", "-Unova", "-Kalos", "-Alola", "-Partner", "-World"]);
|
|
1895
1976
|
}
|
|
1896
|
-
|
|
1897
|
-
if (this.adjustLevel) {
|
|
1898
|
-
level = this.adjustLevel;
|
|
1899
|
-
} else if (isDoubles && species.randomDoubleBattleLevel) {
|
|
1900
|
-
level = species.randomDoubleBattleLevel;
|
|
1901
|
-
} else if (isNoDynamax) {
|
|
1902
|
-
const tier = species.name.endsWith("-Gmax") ? this.dex.species.get(species.changesFrom).tier : species.tier;
|
|
1903
|
-
const tierScale = {
|
|
1904
|
-
Uber: 76,
|
|
1905
|
-
OU: 80,
|
|
1906
|
-
UUBL: 81,
|
|
1907
|
-
UU: 82,
|
|
1908
|
-
RUBL: 83,
|
|
1909
|
-
RU: 84,
|
|
1910
|
-
NUBL: 85,
|
|
1911
|
-
NU: 86,
|
|
1912
|
-
PUBL: 87,
|
|
1913
|
-
PU: 88,
|
|
1914
|
-
"(PU)": 88,
|
|
1915
|
-
NFE: 88
|
|
1916
|
-
};
|
|
1917
|
-
const customScale = {
|
|
1918
|
-
zaciancrowned: 65,
|
|
1919
|
-
calyrexshadow: 68,
|
|
1920
|
-
xerneas: 70,
|
|
1921
|
-
necrozmaduskmane: 72,
|
|
1922
|
-
zacian: 72,
|
|
1923
|
-
kyogre: 73,
|
|
1924
|
-
eternatus: 73,
|
|
1925
|
-
zekrom: 74,
|
|
1926
|
-
marshadow: 75,
|
|
1927
|
-
glalie: 78,
|
|
1928
|
-
urshifurapidstrike: 79,
|
|
1929
|
-
haxorus: 80,
|
|
1930
|
-
inteleon: 80,
|
|
1931
|
-
cresselia: 83,
|
|
1932
|
-
octillery: 84,
|
|
1933
|
-
jolteon: 84,
|
|
1934
|
-
swoobat: 84,
|
|
1935
|
-
dugtrio: 84,
|
|
1936
|
-
slurpuff: 84,
|
|
1937
|
-
polteageist: 84,
|
|
1938
|
-
wobbuffet: 86,
|
|
1939
|
-
scrafty: 86,
|
|
1940
|
-
delibird: 100,
|
|
1941
|
-
vespiquen: 96,
|
|
1942
|
-
pikachu: 92,
|
|
1943
|
-
shedinja: 92,
|
|
1944
|
-
solrock: 90,
|
|
1945
|
-
arctozolt: 88,
|
|
1946
|
-
reuniclus: 87,
|
|
1947
|
-
decidueye: 87,
|
|
1948
|
-
noivern: 85,
|
|
1949
|
-
magnezone: 82,
|
|
1950
|
-
slowking: 81
|
|
1951
|
-
};
|
|
1952
|
-
level = customScale[species.id] || tierScale[tier] || 80;
|
|
1953
|
-
} else if (this.dex.currentMod === "gen8bdsp") {
|
|
1954
|
-
const tierScale = {
|
|
1955
|
-
Uber: 76,
|
|
1956
|
-
Unreleased: 76,
|
|
1957
|
-
OU: 80,
|
|
1958
|
-
UUBL: 81,
|
|
1959
|
-
UU: 82,
|
|
1960
|
-
RUBL: 83,
|
|
1961
|
-
RU: 84,
|
|
1962
|
-
NUBL: 85,
|
|
1963
|
-
NU: 86,
|
|
1964
|
-
PUBL: 87,
|
|
1965
|
-
PU: 88,
|
|
1966
|
-
"(PU)": 88,
|
|
1967
|
-
NFE: 88
|
|
1968
|
-
};
|
|
1969
|
-
const customScale = { delibird: 100, glalie: 76, luvdisc: 100, spinda: 100, unown: 100 };
|
|
1970
|
-
level = customScale[species.id] || tierScale[species.tier] || 80;
|
|
1971
|
-
} else if (species.randomBattleLevel) {
|
|
1972
|
-
level = species.randomBattleLevel;
|
|
1973
|
-
} else {
|
|
1974
|
-
level = 80;
|
|
1975
|
-
}
|
|
1977
|
+
const level = this.getLevel(species, isDoubles, isNoDynamax);
|
|
1976
1978
|
const srImmunity = ability === "Magic Guard" || item === "Heavy-Duty Boots";
|
|
1977
1979
|
const srWeakness = srImmunity ? 0 : this.dex.getEffectiveness("Rock", species);
|
|
1978
1980
|
while (evs.hp > 1) {
|
|
@@ -2127,7 +2129,11 @@ var RandomGen8Teams = class {
|
|
|
2127
2129
|
}
|
|
2128
2130
|
if (species.name === "Zoroark" && pokemon.length >= this.maxTeamSize - 1)
|
|
2129
2131
|
continue;
|
|
2130
|
-
if (pokemon.some((pkmn) => pkmn.
|
|
2132
|
+
if (pokemon.some((pkmn) => pkmn.name === "Zoroark") && pokemon.length >= this.maxTeamSize - 1 && (this.getLevel(
|
|
2133
|
+
species,
|
|
2134
|
+
this.format.gameType !== "singles",
|
|
2135
|
+
this.dex.formats.getRuleTable(this.format).has("dynamaxclause")
|
|
2136
|
+
) < 72 && !this.adjustLevel || ["Zacian", "Zacian-Crowned", "Zamazenta", "Zamazenta-Crowned", "Eternatus"].includes(species.name))) {
|
|
2131
2137
|
continue;
|
|
2132
2138
|
}
|
|
2133
2139
|
const tier = species.tier;
|
|
@@ -2733,7 +2739,7 @@ var RandomGen7Teams = class extends RandomGen8Teams {
|
|
|
2733
2739
|
Electric: (movePool, moves, abilities, types, counter) => !counter.get("Electric") || movePool.includes("thunder"),
|
|
2734
2740
|
Fairy: (movePool, moves, abilities, types, counter) => !counter.get("Fairy") && !types.has("Flying") && !abilities.has("Pixilate"),
|
|
2735
2741
|
Fighting: (movePool, moves, abilities, types, counter) => !counter.get("Fighting") || !counter.get("stab"),
|
|
2736
|
-
Fire: (movePool, moves, abilities, types, counter) => !counter.get("Fire") || ["eruption", "
|
|
2742
|
+
Fire: (movePool, moves, abilities, types, counter) => !counter.get("Fire") || ["eruption", "quiverdance"].some((m) => movePool.includes(m)) || moves.has("flamecharge") && movePool.includes("flareblitz"),
|
|
2737
2743
|
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"))),
|
|
2738
2744
|
Ghost: (movePool, moves, abilities, types, counter) => (!counter.get("Ghost") || movePool.includes("spectralthief")) && !types.has("Dark") && !abilities.has("Steelworker"),
|
|
2739
2745
|
Grass: (movePool, moves, abilities, types, counter, species) => !counter.get("Grass") && (species.baseStats.atk >= 100 || movePool.includes("leafstorm")),
|
|
@@ -2741,7 +2747,7 @@ var RandomGen7Teams = class extends RandomGen8Teams {
|
|
|
2741
2747
|
Ice: (movePool, moves, abilities, types, counter) => !abilities.has("Refrigerate") && (!counter.get("Ice") || movePool.includes("iciclecrash") || abilities.has("Snow Warning") && movePool.includes("blizzard")),
|
|
2742
2748
|
Normal: (movePool) => movePool.includes("facade"),
|
|
2743
2749
|
Poison: (movePool, moves, abilities, types, counter) => !counter.get("Poison") && (!!counter.setupType || abilities.has("Adaptability") || abilities.has("Sheer Force") || movePool.includes("gunkshot")),
|
|
2744
|
-
Psychic: (movePool, moves, abilities, types, counter, species) => !counter.get("Psychic") && (abilities.has("Psychic Surge") || movePool.includes("psychicfangs") || !types.has("Flying") && !abilities.has("Pixilate") && counter.get("stab") < species.types.length),
|
|
2750
|
+
Psychic: (movePool, moves, abilities, types, counter, species) => !counter.get("Psychic") && (abilities.has("Psychic Surge") || movePool.includes("psychicfangs") || !types.has("Steel") && !types.has("Flying") && !abilities.has("Pixilate") && counter.get("stab") < species.types.length),
|
|
2745
2751
|
Rock: (movePool, moves, abilities, types, counter, species) => !counter.get("Rock") && !types.has("Fairy") && (counter.setupType === "Physical" || species.baseStats.atk >= 105 || abilities.has("Rock Head")),
|
|
2746
2752
|
Steel: (movePool, moves, abilities, types, counter, species) => !counter.get("Steel") && (species.baseStats.atk >= 100 || abilities.has("Steelworker")),
|
|
2747
2753
|
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"),
|
|
@@ -2844,6 +2850,7 @@ var RandomGen7Teams = class extends RandomGen8Teams {
|
|
|
2844
2850
|
case "memento":
|
|
2845
2851
|
return { cull: !!counter.setupType || !!counter.get("recovery") || moves.has("substitute") };
|
|
2846
2852
|
case "helpinghand":
|
|
2853
|
+
case "superfang":
|
|
2847
2854
|
case "yawn":
|
|
2848
2855
|
return { cull: !!counter.setupType };
|
|
2849
2856
|
case "icywind":
|
|
@@ -2864,7 +2871,6 @@ var RandomGen7Teams = class extends RandomGen8Teams {
|
|
|
2864
2871
|
case "reversal":
|
|
2865
2872
|
return { cull: moves.has("substitute") && !!teamDetails.zMove };
|
|
2866
2873
|
case "seismictoss":
|
|
2867
|
-
case "superfang":
|
|
2868
2874
|
return { cull: !abilities.has("Parental Bond") && (counter.damagingMoves.size > 1 || !!counter.setupType) };
|
|
2869
2875
|
case "stealthrock":
|
|
2870
2876
|
return { cull: !!counter.setupType || !!counter.get("speedsetup") || ["rest", "substitute", "trickroom"].some((m) => moves.has(m)) || !!teamDetails.stealthRock };
|
|
@@ -2898,7 +2904,7 @@ var RandomGen7Teams = class extends RandomGen8Teams {
|
|
|
2898
2904
|
case "outrage":
|
|
2899
2905
|
return { cull: moves.has("dragonclaw") || moves.has("dracometeor") && counter.damagingMoves.size < 3 || moves.has("clangingscales") && !teamDetails.zMove };
|
|
2900
2906
|
case "thunderbolt":
|
|
2901
|
-
return { cull: ["discharge", "
|
|
2907
|
+
return { cull: ["discharge", "wildcharge"].some((m) => moves.has(m)) };
|
|
2902
2908
|
case "moonblast":
|
|
2903
2909
|
return { cull: isDoubles && moves.has("dazzlinggleam") };
|
|
2904
2910
|
case "aurasphere":
|
|
@@ -2962,7 +2968,7 @@ var RandomGen7Teams = class extends RandomGen8Teams {
|
|
|
2962
2968
|
case "earthquake":
|
|
2963
2969
|
return { cull: isDoubles && moves.has("highhorsepower") };
|
|
2964
2970
|
case "freezedry":
|
|
2965
|
-
return { cull: moves.has("icebeam") || moves.has("icywind") || counter.get("stab") <
|
|
2971
|
+
return { cull: moves.has("icebeam") || moves.has("icywind") || counter.get("stab") < species.types.length };
|
|
2966
2972
|
case "bodyslam":
|
|
2967
2973
|
case "return":
|
|
2968
2974
|
return { cull: moves.has("doubleedge") || moves.has("glare") && moves.has("headbutt") || move.id === "return" && moves.has("bodyslam") };
|
|
@@ -3006,7 +3012,7 @@ var RandomGen7Teams = class extends RandomGen8Teams {
|
|
|
3006
3012
|
case "rockslide":
|
|
3007
3013
|
return { cull: (moves.has("headsmash") || moves.has("stoneedge")) && !isDoubles };
|
|
3008
3014
|
case "stoneedge":
|
|
3009
|
-
return { cull: moves.has("rockslide") ||
|
|
3015
|
+
return { cull: moves.has("rockslide") || species.id === "machamp" && !moves.has("dynamicpunch") };
|
|
3010
3016
|
case "bulletpunch":
|
|
3011
3017
|
return { cull: types.has("Steel") && counter.get("stab") < 2 && !abilities.has("Technician") };
|
|
3012
3018
|
case "flashcannon":
|
|
@@ -3030,8 +3036,6 @@ var RandomGen7Teams = class extends RandomGen8Teams {
|
|
|
3030
3036
|
case "toxic":
|
|
3031
3037
|
const otherStatus = ["hypnosis", "sleeppowder", "toxicspikes", "willowisp", "yawn"].some((m) => moves.has(m));
|
|
3032
3038
|
return { cull: otherStatus || !!counter.setupType || moves.has("flamecharge") || moves.has("raindance") };
|
|
3033
|
-
case "willowisp":
|
|
3034
|
-
return { cull: moves.has("scald") };
|
|
3035
3039
|
case "raindance":
|
|
3036
3040
|
return { cull: counter.get("Physical") + counter.get("Special") < 2 || hasRestTalk || moves.has("rest") || !types.has("Water") && !counter.get("Water") };
|
|
3037
3041
|
case "sunnyday":
|
|
@@ -3123,7 +3127,7 @@ var RandomGen7Teams = class extends RandomGen8Teams {
|
|
|
3123
3127
|
case "Intimidate":
|
|
3124
3128
|
return moves.has("bodyslam") || moves.has("rest") || abilities.has("Reckless") && counter.get("recoil") > 1;
|
|
3125
3129
|
case "Lightning Rod":
|
|
3126
|
-
return species.types.includes("Ground");
|
|
3130
|
+
return species.types.includes("Ground") || (!!teamDetails.rain || moves.has("raindance")) && abilities.has("Swift Swim");
|
|
3127
3131
|
case "Limber":
|
|
3128
3132
|
return species.types.includes("Electric");
|
|
3129
3133
|
case "Liquid Voice":
|
|
@@ -3522,7 +3526,7 @@ var RandomGen7Teams = class extends RandomGen8Teams {
|
|
|
3522
3526
|
}
|
|
3523
3527
|
const singlesEnforcement = !["judgment", "lightscreen", "reflect", "sleeptalk", "toxic"].includes(moveid) && (move.category !== "Status" || !(move.flags.heal && species.id !== "meganium"));
|
|
3524
3528
|
if (!cull && !move.damage && !isSetup && !move.weather && !move.stallingMove && (isDoubles || singlesEnforcement) && (!counter.setupType || counter.setupType === "Mixed" || move.category !== counter.setupType && move.category !== "Status" || counter.get(counter.setupType) + counter.get("Status") > 3 && !counter.get("hazards")) && (move.category === "Status" || !types.has(move.type) || move.basePower && move.basePower < 40 && !move.multihit)) {
|
|
3525
|
-
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) || moves.has("suckerpunch") && !abilities.has("Contrary") && counter.get("stab") < species.types.length || ["recover", "roost", "slackoff", "softboiled"].some((m) => movePool.includes(m)) && counter.get("Status") && !counter.setupType && ["healingwish", "trick", "trickroom"].every((m) => !moves.has(m)) || (movePool.includes("milkdrink") || movePool.includes("shoreup") || movePool.includes("stickyweb") && !counter.setupType && !teamDetails.stickyWeb) || isLead && movePool.includes("stealthrock") && counter.get("Status") && !counter.setupType && !counter.get("speedsetup") && !moves.has("substitute") || species.requiredMove && movePool.includes(_sim.toID.call(void 0, species.requiredMove)) || !counter.get("Normal") && (abilities.has("Aerilate") || abilities.has("Pixilate") || abilities.has("Refrigerate") && !moves.has("blizzard"))) {
|
|
3529
|
+
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) || moves.has("suckerpunch") && !abilities.has("Contrary") && counter.get("stab") < species.types.length && species.id !== "honchkrow" || ["recover", "roost", "slackoff", "softboiled"].some((m) => movePool.includes(m)) && counter.get("Status") && !counter.setupType && ["healingwish", "switcheroo", "trick", "trickroom"].every((m) => !moves.has(m)) || (movePool.includes("milkdrink") || movePool.includes("shoreup") || movePool.includes("stickyweb") && !counter.setupType && !teamDetails.stickyWeb) || isLead && movePool.includes("stealthrock") && counter.get("Status") && !counter.setupType && !counter.get("speedsetup") && !moves.has("substitute") || species.requiredMove && movePool.includes(_sim.toID.call(void 0, species.requiredMove)) || !counter.get("Normal") && (abilities.has("Aerilate") || abilities.has("Pixilate") || abilities.has("Refrigerate") && !moves.has("blizzard"))) {
|
|
3526
3530
|
cull = true;
|
|
3527
3531
|
} else {
|
|
3528
3532
|
for (const type of types) {
|
|
@@ -3565,14 +3569,9 @@ var RandomGen7Teams = class extends RandomGen8Teams {
|
|
|
3565
3569
|
}
|
|
3566
3570
|
}
|
|
3567
3571
|
} while (moves.size < this.maxMoveCount && (movePool.length || rejectedPool.length));
|
|
3568
|
-
if (moves.has("autotomize") && moves.has("heavyslam")) {
|
|
3569
|
-
|
|
3570
|
-
|
|
3571
|
-
moves.add("flashcannon");
|
|
3572
|
-
} else {
|
|
3573
|
-
moves.delete("autotomize");
|
|
3574
|
-
moves.add("rockpolish");
|
|
3575
|
-
}
|
|
3572
|
+
if (species.id === "celesteela" && moves.has("autotomize") && moves.has("heavyslam")) {
|
|
3573
|
+
moves.delete("heavyslam");
|
|
3574
|
+
moves.add("flashcannon");
|
|
3576
3575
|
}
|
|
3577
3576
|
if (moves.has("raindance") && moves.has("thunderbolt") && !isDoubles) {
|
|
3578
3577
|
moves.delete("thunderbolt");
|
|
@@ -4574,8 +4573,7 @@ var RandomGen6Teams = class extends RandomGen7Teams {
|
|
|
4574
4573
|
return { cull: !!counter.setupType || !!counter.get("speedsetup") || moves.has("dragontail") };
|
|
4575
4574
|
case "nightshade":
|
|
4576
4575
|
case "seismictoss":
|
|
4577
|
-
|
|
4578
|
-
return { cull: counter.damagingMoves.size > 1 || !!counter.setupType };
|
|
4576
|
+
return { cull: !abilities.has("Parental Bond") && (counter.damagingMoves.size > 1 || !!counter.setupType) };
|
|
4579
4577
|
case "protect":
|
|
4580
4578
|
const screens = moves.has("lightscreen") && moves.has("reflect");
|
|
4581
4579
|
return { cull: moves.has("rest") || screens || !!counter.setupType && !moves.has("wish") };
|
|
@@ -4583,6 +4581,8 @@ var RandomGen6Teams = class extends RandomGen7Teams {
|
|
|
4583
4581
|
return { cull: moves.has("nightslash") || !!counter.setupType || counter.get("Status") > 1 || counter.get("Dark") > 2 || moves.has("knockoff") && !types.has("Dark") };
|
|
4584
4582
|
case "rapidspin":
|
|
4585
4583
|
return { cull: !!counter.setupType || !!teamDetails.rapidSpin };
|
|
4584
|
+
case "superfang":
|
|
4585
|
+
return { cull: !!counter.setupType };
|
|
4586
4586
|
case "stealthrock":
|
|
4587
4587
|
return { cull: !!counter.setupType || !!counter.get("speedsetup") || ["rest", "substitute", "trickroom"].some((m) => moves.has(m)) || !!teamDetails.stealthRock };
|
|
4588
4588
|
case "stickyweb":
|
|
@@ -4592,7 +4592,7 @@ var RandomGen6Teams = class extends RandomGen7Teams {
|
|
|
4592
4592
|
case "trickroom":
|
|
4593
4593
|
return { cull: moves.has("lightscreen") || moves.has("reflect") || !!counter.setupType || !!counter.get("speedsetup") || counter.damagingMoves.size < 2 };
|
|
4594
4594
|
case "uturn":
|
|
4595
|
-
return { cull: !!counter.setupType || !!counter.get("speedsetup") || abilities.has("Speed Boost") && moves.has("protect") || abilities.has("Protean") && counter.get("Status") > 2
|
|
4595
|
+
return { cull: !!counter.setupType || !!counter.get("speedsetup") || abilities.has("Speed Boost") && moves.has("protect") || abilities.has("Protean") && counter.get("Status") > 2 };
|
|
4596
4596
|
case "voltswitch":
|
|
4597
4597
|
return { cull: !!counter.setupType || !!counter.get("speedsetup") || moves.has("raindance") || moves.has("uturn") };
|
|
4598
4598
|
case "bugbite":
|
|
@@ -4625,7 +4625,7 @@ var RandomGen6Teams = class extends RandomGen7Teams {
|
|
|
4625
4625
|
case "highjumpkick":
|
|
4626
4626
|
return { cull: moves.has("bulkup") && moves.has("drainpunch") || counter.setupType === "Special" && (moves.has("aurasphere") || moves.has("focusblast") || movePool.includes("aurasphere")) };
|
|
4627
4627
|
case "machpunch":
|
|
4628
|
-
return { cull: types.has("Fighting") && counter.get("stab") <
|
|
4628
|
+
return { cull: types.has("Fighting") && counter.get("stab") < species.types.length && !abilities.has("Technician") };
|
|
4629
4629
|
case "stormthrow":
|
|
4630
4630
|
return { cull: moves.has("circlethrow") && restTalk };
|
|
4631
4631
|
case "superpower":
|
|
@@ -4667,7 +4667,7 @@ var RandomGen6Teams = class extends RandomGen7Teams {
|
|
|
4667
4667
|
case "precipiceblades":
|
|
4668
4668
|
return { cull: moves.has("earthquake") };
|
|
4669
4669
|
case "freezedry":
|
|
4670
|
-
return { cull: moves.has("icebeam") || moves.has("icywind") || counter.get("stab") <
|
|
4670
|
+
return { cull: moves.has("icebeam") || moves.has("icywind") || counter.get("stab") < species.types.length };
|
|
4671
4671
|
case "bodyslam":
|
|
4672
4672
|
case "return":
|
|
4673
4673
|
return { cull: moves.has("doubleedge") || moves.has("glare") && moves.has("headbutt") || move.id === "return" && moves.has("bodyslam") };
|
|
@@ -4725,8 +4725,6 @@ var RandomGen6Teams = class extends RandomGen7Teams {
|
|
|
4725
4725
|
return { cull: !!counter.setupType || !!counter.get("speedsetup") || restTalk || otherStatus };
|
|
4726
4726
|
case "toxic":
|
|
4727
4727
|
return { cull: !!counter.setupType || ["hypnosis", "sleeppowder", "toxicspikes", "willowisp", "yawn", "raindance", "flamecharge"].some((m) => moves.has(m)) };
|
|
4728
|
-
case "willowisp":
|
|
4729
|
-
return { cull: moves.has("scald") };
|
|
4730
4728
|
case "raindance":
|
|
4731
4729
|
return { cull: counter.get("Physical") + counter.get("Special") < 2 || !types.has("Water") && !counter.get("Water") || restTalk };
|
|
4732
4730
|
case "sunnyday":
|
|
@@ -4809,7 +4807,7 @@ var RandomGen6Teams = class extends RandomGen7Teams {
|
|
|
4809
4807
|
case "Intimidate":
|
|
4810
4808
|
return moves.has("bodyslam") || moves.has("rest") || abilities.has("Reckless") && counter.get("recoil") > 1;
|
|
4811
4809
|
case "Lightning Rod":
|
|
4812
|
-
return species.types.includes("Ground");
|
|
4810
|
+
return species.types.includes("Ground") || (!!teamDetails.rain || moves.has("raindance")) && abilities.has("Swift Swim");
|
|
4813
4811
|
case "Limber":
|
|
4814
4812
|
return species.types.includes("Electric");
|
|
4815
4813
|
case "Magnet Pull":
|
|
@@ -5097,7 +5095,7 @@ var RandomGen6Teams = class extends RandomGen7Teams {
|
|
|
5097
5095
|
teamDetails
|
|
5098
5096
|
);
|
|
5099
5097
|
};
|
|
5100
|
-
if (!cull && !isSetup && !move.weather && !move.damage && (move.category !== "Status" || !move.flags.heal) && !["judgment", "sleeptalk", "toxic"].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)) {
|
|
5098
|
+
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)) {
|
|
5101
5099
|
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 && !moves.has("healingwish") && (movePool.includes("recover") || movePool.includes("roost") || movePool.includes("softboiled")) && (counter.get("Status") > 1 || species.nfe && !!counter.get("Status")) || movePool.includes("stickyweb") && !counter.setupType && !teamDetails.stickyWeb || species.requiredMove && movePool.includes(_sim.toID.call(void 0, species.requiredMove)) || moves.has("suckerpunch") && counter.get("stab") < species.types.length) {
|
|
5102
5100
|
cull = true;
|
|
5103
5101
|
} else {
|
|
@@ -5642,12 +5640,18 @@ var RandomGen5Teams = class extends RandomGen6Teams {
|
|
|
5642
5640
|
case "bravebird":
|
|
5643
5641
|
case "pluck":
|
|
5644
5642
|
return { cull: moves.has("acrobatics") || moves.has("hurricane") };
|
|
5643
|
+
case "acrobatics":
|
|
5644
|
+
return { cull: !counter.setupType && moves.has("hurricane") };
|
|
5645
|
+
case "hurricane":
|
|
5646
|
+
return { cull: !!counter.setupType && moves.has("acrobatics") };
|
|
5645
5647
|
case "gigadrain":
|
|
5646
|
-
return { cull: !counter.setupType && moves.has("leafstorm") ||
|
|
5648
|
+
return { cull: !counter.setupType && moves.has("leafstorm") || ["leafblade", "petaldance", "powerwhip"].some((m) => moves.has(m)) };
|
|
5647
5649
|
case "solarbeam":
|
|
5648
5650
|
return { cull: !abilities.has("Drought") && !moves.has("sunnyday") || moves.has("gigadrain") };
|
|
5649
5651
|
case "leafstorm":
|
|
5650
|
-
return { cull: !!counter.setupType && moves.has("gigadrain") };
|
|
5652
|
+
return { cull: !!counter.setupType && (moves.has("gigadrain") || moves.has("seedbomb")) };
|
|
5653
|
+
case "seedbomb":
|
|
5654
|
+
return { cull: !counter.setupType && moves.has("leafstorm") };
|
|
5651
5655
|
case "bonemerang":
|
|
5652
5656
|
case "earthpower":
|
|
5653
5657
|
return { cull: moves.has("earthquake") };
|
|
@@ -5656,10 +5660,14 @@ var RandomGen5Teams = class extends RandomGen6Teams {
|
|
|
5656
5660
|
return { cull: moves.has("roost") };
|
|
5657
5661
|
case "facade":
|
|
5658
5662
|
return { cull: moves.has("suckerpunch") && !types.has("Normal") };
|
|
5663
|
+
case "hydropump":
|
|
5664
|
+
return { cull: moves.has("waterfall") && !!counter.setupType };
|
|
5659
5665
|
case "judgment":
|
|
5660
5666
|
return { cull: counter.setupType !== "Special" && counter.get("stab") > 1 };
|
|
5661
5667
|
case "return":
|
|
5662
5668
|
return { cull: moves.has("doubleedge") };
|
|
5669
|
+
case "rockblast":
|
|
5670
|
+
return { cull: moves.has("stoneedge") };
|
|
5663
5671
|
case "poisonjab":
|
|
5664
5672
|
return { cull: moves.has("gunkshot") };
|
|
5665
5673
|
case "psychic":
|
|
@@ -5667,6 +5675,8 @@ var RandomGen5Teams = class extends RandomGen6Teams {
|
|
|
5667
5675
|
case "scald":
|
|
5668
5676
|
case "surf":
|
|
5669
5677
|
return { cull: moves.has("hydropump") || moves.has("waterfall") };
|
|
5678
|
+
case "waterfall":
|
|
5679
|
+
return { cull: moves.has("hydropump") && !counter.setupType && !moves.has("raindance") && !teamDetails.rain };
|
|
5670
5680
|
case "waterspout":
|
|
5671
5681
|
return { cull: !!counter.get("Status") };
|
|
5672
5682
|
case "encore":
|
|
@@ -5685,7 +5695,8 @@ var RandomGen5Teams = class extends RandomGen6Teams {
|
|
|
5685
5695
|
case "roost":
|
|
5686
5696
|
case "softboiled":
|
|
5687
5697
|
case "synthesis":
|
|
5688
|
-
|
|
5698
|
+
const gliscorCase = species.id === "gliscor" && moves.has("protect");
|
|
5699
|
+
return { cull: ["leechseed", "rest", "wish"].some((m) => moves.has(m)) || gliscorCase };
|
|
5689
5700
|
case "substitute":
|
|
5690
5701
|
return { cull: moves.has("doubleedge") && !abilities.has("rockhead") || ["pursuit", "rest", "superpower", "uturn", "voltswitch"].some((m) => moves.has(m)) };
|
|
5691
5702
|
case "thunderwave":
|
|
@@ -5725,6 +5736,8 @@ var RandomGen5Teams = class extends RandomGen6Teams {
|
|
|
5725
5736
|
return !counter.get("Physical") && !moves.has("batonpass");
|
|
5726
5737
|
case "Flash Fire":
|
|
5727
5738
|
return abilities.has("Drought");
|
|
5739
|
+
case "Guts":
|
|
5740
|
+
return species.id === "heracross";
|
|
5728
5741
|
case "Hydration":
|
|
5729
5742
|
case "Rain Dish":
|
|
5730
5743
|
case "Swift Swim":
|
|
@@ -5954,7 +5967,7 @@ var RandomGen5Teams = class extends RandomGen6Teams {
|
|
|
5954
5967
|
);
|
|
5955
5968
|
};
|
|
5956
5969
|
if (!cull && !["judgment", "quiverdance", "sleeptalk"].includes(moveid) && !isSetup && !move.weather && !move.damage && (move.category !== "Status" || !move.flags.heal) && (move.category === "Status" || !types.has(move.type) || move.basePower && move.basePower < 40 && !move.multihit) && (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))) {
|
|
5957
|
-
if (!counter.get("stab") && !counter.get("damage") && (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 && !moves.has("
|
|
5970
|
+
if (!counter.get("stab") && !counter.get("damage") && (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", "trick", "trickroom"].every((m) => !moves.has(m)) && !abilities.has("Poison Heal") && (counter.get("Status") || species.nfe && !!counter.get("Status")) && ["recover", "roost", "slackoff", "softboiled"].some((m) => movePool.includes(m)) || (movePool.includes("darkvoid") || movePool.includes("quiverdance") || species.requiredMove && movePool.includes(_sim.toID.call(void 0, species.requiredMove))) || isLead && runEnforcementChecker("lead")) {
|
|
5958
5971
|
cull = true;
|
|
5959
5972
|
} else {
|
|
5960
5973
|
for (const type of types) {
|
|
@@ -7078,6 +7091,8 @@ var RandomGen3Teams = class extends RandomGen4Teams {
|
|
|
7078
7091
|
}))) {
|
|
7079
7092
|
return "Choice Band";
|
|
7080
7093
|
}
|
|
7094
|
+
if (moves.has("psychoboost"))
|
|
7095
|
+
return "White Herb";
|
|
7081
7096
|
return "Leftovers";
|
|
7082
7097
|
}
|
|
7083
7098
|
shouldCullAbility(ability, types, moves, abilities, counter, movePool, teamDetails, species) {
|
|
@@ -7260,11 +7275,12 @@ var RandomGen3Teams = class extends RandomGen4Teams {
|
|
|
7260
7275
|
UU: 84,
|
|
7261
7276
|
NUBL: 86,
|
|
7262
7277
|
NU: 88,
|
|
7278
|
+
PU: 90,
|
|
7263
7279
|
NFE: 90
|
|
7264
7280
|
};
|
|
7265
7281
|
const customScale = {
|
|
7266
|
-
Ditto:
|
|
7267
|
-
Unown:
|
|
7282
|
+
Ditto: 100,
|
|
7283
|
+
Unown: 100
|
|
7268
7284
|
};
|
|
7269
7285
|
const tier = species.tier;
|
|
7270
7286
|
const level = this.adjustLevel || customScale[species.name] || levelScale[tier] || (species.nfe ? 90 : 80);
|
|
@@ -7432,8 +7448,6 @@ var RandomGen2Teams = class extends RandomGen3Teams {
|
|
|
7432
7448
|
return { cull: moves.has("bodyslam") || restTalk };
|
|
7433
7449
|
case "hyperbeam":
|
|
7434
7450
|
return { cull: moves.has("rockslide") };
|
|
7435
|
-
case "quickattack":
|
|
7436
|
-
return { cull: moves.has("rest") };
|
|
7437
7451
|
case "rapidspin":
|
|
7438
7452
|
return { cull: !!teamDetails.rapidSpin || moves.has("sleeptalk") };
|
|
7439
7453
|
case "return":
|
|
@@ -7442,8 +7456,8 @@ var RandomGen2Teams = class extends RandomGen3Teams {
|
|
|
7442
7456
|
return { cull: moves.has("hydropump") };
|
|
7443
7457
|
case "thunder":
|
|
7444
7458
|
return { cull: moves.has("thunderbolt") };
|
|
7445
|
-
case "
|
|
7446
|
-
return { cull: moves.has("
|
|
7459
|
+
case "razorleaf":
|
|
7460
|
+
return { cull: moves.has("swordsdance") && movePool.includes("sludgebomb") };
|
|
7447
7461
|
case "icebeam":
|
|
7448
7462
|
return { cull: moves.has("dragonbreath") };
|
|
7449
7463
|
case "seismictoss":
|
|
@@ -7469,7 +7483,7 @@ var RandomGen2Teams = class extends RandomGen3Teams {
|
|
|
7469
7483
|
case "softboiled":
|
|
7470
7484
|
return { cull: movePool.includes("swordsdance") };
|
|
7471
7485
|
case "spikes":
|
|
7472
|
-
return { cull: !!teamDetails.spikes
|
|
7486
|
+
return { cull: !!teamDetails.spikes };
|
|
7473
7487
|
case "substitute":
|
|
7474
7488
|
return { cull: moves.has("agility") || moves.has("rest") };
|
|
7475
7489
|
case "synthesis":
|
|
@@ -7890,13 +7904,23 @@ var RandomGen1Teams = class extends RandomGen2Teams {
|
|
|
7890
7904
|
Ditto: 100
|
|
7891
7905
|
};
|
|
7892
7906
|
const level = this.adjustLevel || customScale[species.name] || levelScale[species.tier] || 80;
|
|
7907
|
+
const evs = { hp: 255, atk: 255, def: 255, spa: 255, spd: 255, spe: 255 };
|
|
7908
|
+
const ivs = { hp: 30, atk: 30, def: 30, spa: 30, spd: 30, spe: 30 };
|
|
7909
|
+
if (moves.has("substitute")) {
|
|
7910
|
+
while (evs.hp > 3) {
|
|
7911
|
+
const hp = Math.floor(Math.floor(2 * species.baseStats.hp + ivs.hp + Math.floor(evs.hp / 4) + 100) * level / 100 + 10);
|
|
7912
|
+
if (hp % 4 !== 0)
|
|
7913
|
+
break;
|
|
7914
|
+
evs.hp -= 4;
|
|
7915
|
+
}
|
|
7916
|
+
}
|
|
7893
7917
|
return {
|
|
7894
7918
|
name: species.name,
|
|
7895
7919
|
species: species.name,
|
|
7896
7920
|
moves: Array.from(moves),
|
|
7897
7921
|
ability: "No Ability",
|
|
7898
|
-
evs
|
|
7899
|
-
ivs
|
|
7922
|
+
evs,
|
|
7923
|
+
ivs,
|
|
7900
7924
|
item: "",
|
|
7901
7925
|
level,
|
|
7902
7926
|
shiny: false,
|
|
@@ -8020,7 +8044,7 @@ var RandomGen1Teams = class extends RandomGen2Teams {
|
|
|
8020
8044
|
|
|
8021
8045
|
|
|
8022
8046
|
|
|
8023
|
-
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": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Fake Out", "Play Rough", "Surf", "Volt Switch", "Volt Tackle"], "teraTypes": ["Water"] }] }, "raichu": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Encore", "Focus Blast", "Grass Knot", "Nasty Plot", "Nuzzle", "Surf", "Thunderbolt", "Volt Switch"], "teraTypes": ["Water", "Grass", "Electric"] }] }, "raichualola": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Focus Blast", "Grass Knot", "Nasty Plot", "Psychic", "Psyshock", "Surf", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric"] }] }, "wigglytuff": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Dazzling Gleam", "Fire Blast", "Light Screen", "Protect", "Reflect", "Stealth Rock", "Thunder Wave", "Wish"], "teraTypes": ["Steel"] }] }, "venomoth": { "level": 84, "sets": [{ "role": "Setup Sweeper", "movepool": ["Bug Buzz", "Quiver Dance", "Sleep Powder", "Sludge Bomb", "Substitute"], "teraTypes": ["Bug", "Poison"] }] }, "dugtrio": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Earthquake", "Memento", "Stealth Rock", "Stone Edge", "Sucker Punch", "Swords Dance"], "teraTypes": ["Ground", "Ghost", "Fairy", "Flying"] }] }, "dugtrioalola": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Earthquake", "Iron Head", "Stealth Rock", "Stone Edge", "Sucker Punch", "Swords Dance"], "teraTypes": ["Ground", "Steel"] }] }, "persian": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Aerial Ace", "Body Slam", "Fake Out", "Foul Play", "Gunk Shot", "Switcheroo", "U-turn"], "teraTypes": ["Normal", "Poison", "Flying"] }] }, "persianalola": { "level": 88, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Dark Pulse", "Hypnosis", "Nasty Plot", "Power Gem", "Thunderbolt"], "teraTypes": ["Dark", "Electric"] }] }, "golduck": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Encore", "Grass Knot", "Hydro Pump", "Ice Beam", "Nasty Plot", "Psyshock", "Taunt"], "teraTypes": ["Water"] }] }, "annihilape": { "level": 80, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Bulk Up", "Drain Punch", "Rage Fist", "Rest"], "teraTypes": ["Ghost", "Water", "Fairy", "Steel"] }, { "role": "Bulky Attacker", "movepool": ["Bulk Up", "Close Combat", "Rage Fist", "Stone Edge", "U-turn"], "teraTypes": ["Ghost", "Fighting"] }] }, "arcanine": { "level": 84, "sets": [{ "role": "Bulky Attacker", "movepool": ["Close Combat", "Extreme Speed", "Flare Blitz", "Morning Sun", "Roar", "Wild Charge", "Will-O-Wisp"], "teraTypes": ["Fighting", "Normal"] }, { "role": "Fast Attacker", "movepool": ["Close Combat", "Extreme Speed", "Flare Blitz", "Morning Sun", "Wild Charge"], "teraTypes": ["Fighting", "Normal"] }] }, "arcaninehisui": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Extreme Speed", "Flare Blitz", "Head Smash", "Morning Sun", "Wild Charge"], "teraTypes": ["Rock"] }] }, "slowbro": { "level": 84, "sets": [{ "role": "Bulky Attacker", "movepool": ["Calm Mind", "Psyshock", "Slack Off", "Surf", "Thunder Wave"], "teraTypes": ["Water", "Fairy"] }, { "role": "AV Pivot", "movepool": ["Body Press", "Fire Blast", "Future Sight", "Ice Beam", "Psychic", "Surf"], "teraTypes": ["Fighting", "Water"] }] }, "slowbrogalar": { "level": 84, "sets": [{ "role": "AV Pivot", "movepool": ["Earthquake", "Fire Blast", "Foul Play", "Psychic", "Shell Side Arm", "Surf"], "teraTypes": ["Ground", "Water", "Poison", "Dark"] }, { "role": "Wallbreaker", "movepool": ["Fire Blast", "Psyshock", "Sludge Bomb", "Trick", "Trick Room"], "teraTypes": ["Psychic", "Poison"] }] }, "muk": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Fire Punch", "Gunk Shot", "Haze", "Ice Punch", "Shadow Sneak", "Toxic", "Toxic Spikes"], "teraTypes": ["Poison", "Dark"] }] }, "mukalola": { "level": 86, "sets": [{ "role": "AV Pivot", "movepool": ["Fire Punch", "Gunk Shot", "Ice Punch", "Knock Off", "Poison Jab"], "teraTypes": ["Dark"] }] }, "cloyster": { "level": 80, "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": 82, "sets": [{ "role": "Wallbreaker", "movepool": ["Focus Blast", "Nasty Plot", "Shadow Ball", "Sludge Bomb", "Trick"], "teraTypes": ["Ghost"] }, { "role": "Fast Attacker", "movepool": ["Encore", "Focus Blast", "Shadow Ball", "Sludge Bomb", "Toxic Spikes", "Will-O-Wisp"], "teraTypes": ["Ghost"] }] }, "hypno": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Encore", "Focus Blast", "Foul Play", "Light Screen", "Psychic", "Reflect", "Thunder Wave"], "teraTypes": ["Dark", "Steel"] }] }, "electrode": { "level": 88, "sets": [{ "role": "Fast Support", "movepool": ["Explosion", "Foul Play", "Light Screen", "Taunt", "Thunder Wave", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric"] }] }, "electrodehisui": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Chloroblast", "Energy Ball", "Taunt", "Thunder Wave", "Thunderbolt", "Volt Switch"], "teraTypes": ["Grass"] }, { "role": "Fast Support", "movepool": ["Giga Drain", "Leech Seed", "Substitute", "Thunderbolt"], "teraTypes": ["Poison"] }] }, "scyther": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Aerial Ace", "Close Combat", "Pounce", "Swords Dance", "U-turn"], "teraTypes": ["Fighting"] }] }, "tauros": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Body Slam", "Close Combat", "Earthquake", "Rock Slide", "Zen Headbutt"], "teraTypes": ["Normal", "Fighting", "Ground"] }, { "role": "Wallbreaker", "movepool": ["Close Combat", "Double-Edge", "Earthquake", "Stone Edge"], "teraTypes": ["Normal", "Fighting", "Ground"] }] }, "taurospaldea": { "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"] }] }, "taurospaldeafire": { "level": 84, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Bulk Up", "Close Combat", "Raging Bull", "Substitute"], "teraTypes": ["Fire"] }, { "role": "Wallbreaker", "movepool": ["Close Combat", "Flare Blitz", "Stone Edge", "Wild Charge"], "teraTypes": ["Fighting"] }] }, "taurospaldeawater": { "level": 84, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Bulk Up", "Close Combat", "Liquidation", "Substitute"], "teraTypes": ["Water"] }, { "role": "Wallbreaker", "movepool": ["Aqua Jet", "Bulk Up", "Close Combat", "Liquidation", "Stone Edge", "Wave Crash"], "teraTypes": ["Water"] }] }, "gyarados": { "level": 82, "sets": [{ "role": "Setup Sweeper", "movepool": ["Dragon Dance", "Earthquake", "Stone Edge", "Waterfall"], "teraTypes": ["Ground"] }, { "role": "Tera Blast user", "movepool": ["Dragon Dance", "Earthquake", "Tera Blast", "Waterfall"], "teraTypes": ["Flying"] }] }, "ditto": { "level": 88, "sets": [{ "role": "Fast Support", "movepool": ["Transform"], "teraTypes": ["Flying", "Dark", "Fire", "Bug", "Water", "Ice", "Fighting", "Electric", "Psychic", "Poison", "Grass", "Ghost", "Ground", "Rock", "Fairy", "Steel", "Normal", "Dragon"] }] }, "vaporeon": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Calm Mind", "Ice Beam", "Protect", "Surf", "Wish"], "teraTypes": ["Ghost", "Ground"] }] }, "jolteon": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Calm Mind", "Hyper Voice", "Shadow Ball", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric", "Ghost"] }, { "role": "Tera Blast user", "movepool": ["Calm Mind", "Substitute", "Tera Blast", "Thunderbolt"], "teraTypes": ["Ice"] }] }, "flareon": { "level": 86, "sets": [{ "role": "Wallbreaker", "movepool": ["Facade", "Flare Blitz", "Quick Attack", "Trailblaze", "Will-O-Wisp"], "teraTypes": ["Normal"] }] }, "articuno": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Air Slash", "Freeze-Dry", "Haze", "Hurricane", "Roost", "Substitute", "U-turn"], "teraTypes": ["Flying", "Steel"] }] }, "articunogalar": { "level": 86, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Air Slash", "Calm Mind", "Freezing Glare", "Hurricane", "Recover"], "teraTypes": ["Psychic", "Steel"] }] }, "zapdos": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Discharge", "Heat Wave", "Hurricane", "Roost", "U-turn"], "teraTypes": ["Electric"] }] }, "zapdosgalar": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Brave Bird", "Bulk Up", "Close Combat", "Stomping Tantrum", "U-turn"], "teraTypes": ["Fighting"] }] }, "moltres": { "level": 84, "sets": [{ "role": "Bulky Attacker", "movepool": ["Brave Bird", "Fire Blast", "Roost", "U-turn", "Will-O-Wisp"], "teraTypes": ["Fire", "Ground"] }] }, "moltresgalar": { "level": 82, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Agility", "Fiery Wrath", "Hurricane", "Nasty Plot", "Rest"], "teraTypes": ["Dark"] }] }, "dragonite": { "level": 80, "sets": [{ "role": "Bulky Attacker", "movepool": ["Dragon Dance", "Earthquake", "Extreme Speed", "Fire Punch", "Outrage"], "teraTypes": ["Normal"] }, { "role": "Tera Blast user", "movepool": ["Dragon Dance", "Earthquake", "Outrage", "Tera Blast"], "teraTypes": ["Flying"] }] }, "mewtwo": { "level": 72, "sets": [{ "role": "Fast Attacker", "movepool": ["Aura Sphere", "Fire Blast", "Nasty Plot", "Psystrike", "Recover", "Shadow Ball"], "teraTypes": ["Psychic", "Fighting", "Fire", "Ghost"] }] }, "mew": { "level": 80, "sets": [{ "role": "Bulky Support", "movepool": ["Psychic", "Spikes", "Stealth Rock", "Taunt", "Thunder Wave", "Toxic Spikes", "Will-O-Wisp"], "teraTypes": ["Steel", "Fairy"] }, { "role": "Fast Attacker", "movepool": ["Brave Bird", "Close Combat", "Dragon Dance", "Flare Blitz", "Psychic Fangs", "Swords Dance", "U-turn"], "teraTypes": ["Fighting", "Fire"] }, { "role": "Setup Sweeper", "movepool": ["Aura Sphere", "Dazzling Gleam", "Earth Power", "Fire Blast", "Nasty Plot", "Psyshock", "Shadow Ball"], "teraTypes": ["Psychic", "Fighting", "Fire", "Ghost", "Ground", "Fairy"] }] }, "typhlosion": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Eruption", "Fire Blast", "Focus Blast", "Shadow Ball"], "teraTypes": ["Fire", "Ghost"] }] }, "typhlosionhisui": { "level": 86, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Calm Mind", "Flamethrower", "Shadow Ball", "Substitute", "Will-O-Wisp"], "teraTypes": ["Ghost"] }, { "role": "Fast Attacker", "movepool": ["Eruption", "Fire Blast", "Focus Blast", "Shadow Ball"], "teraTypes": ["Fire", "Ghost"] }] }, "ampharos": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Agility", "Dazzling Gleam", "Focus Blast", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric", "Fairy"] }] }, "azumarill": { "level": 82, "sets": [{ "role": "Bulky Setup", "movepool": ["Aqua Jet", "Belly Drum", "Liquidation", "Play Rough"], "teraTypes": ["Water"] }, { "role": "Bulky Attacker", "movepool": ["Aqua Jet", "Ice Spinner", "Liquidation", "Play Rough", "Superpower"], "teraTypes": ["Water"] }] }, "sudowoodo": { "level": 86, "sets": [{ "role": "Bulky Attacker", "movepool": ["Earthquake", "Head Smash", "Spikes", "Stealth Rock", "Sucker Punch", "Wood Hammer"], "teraTypes": ["Rock", "Grass"] }] }, "jumpluff": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Acrobatics", "Leech Seed", "Strength Sap", "Substitute"], "teraTypes": ["Steel"] }, { "role": "Fast Support", "movepool": ["Acrobatics", "Encore", "Sleep Powder", "Strength Sap", "U-turn"], "teraTypes": ["Steel"] }] }, "sunflora": { "level": 90, "sets": [{ "role": "Wallbreaker", "movepool": ["Dazzling Gleam", "Earth Power", "Leaf Storm", "Sludge Bomb"], "teraTypes": ["Grass", "Ground", "Fairy", "Poison"] }] }, "quagsire": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Ice Beam", "Liquidation", "Recover", "Spikes", "Toxic"], "teraTypes": ["Poison", "Steel", "Ground", "Fairy"] }] }, "clodsire": { "level": 80, "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": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Calm Mind", "Dazzling Gleam", "Morning Sun", "Psychic", "Shadow Ball", "Trick"], "teraTypes": ["Fairy", "Psychic"] }] }, "umbreon": { "level": 86, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Dark Pulse", "Protect", "Wish"], "teraTypes": ["Dark", "Poison"] }, { "role": "Bulky Support", "movepool": ["Foul Play", "Protect", "Thunder Wave", "Wish", "Yawn"], "teraTypes": ["Poison"] }] }, "slowking": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Chilly Reception", "Psyshock", "Slack Off", "Surf", "Thunder Wave"], "teraTypes": ["Water", "Fairy", "Dragon"] }, { "role": "Wallbreaker", "movepool": ["Fire Blast", "Hydro Pump", "Ice Beam", "Psychic", "Psyshock", "Trick", "Trick Room"], "teraTypes": ["Water", "Psychic"] }] }, "slowkinggalar": { "level": 82, "sets": [{ "role": "Bulky Support", "movepool": ["Chilly Reception", "Fire Blast", "Psyshock", "Slack Off", "Sludge Bomb", "Thunder Wave", "Toxic"], "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": ["Fighting", "Water"] }] }, "dunsparce": { "level": 88, "sets": [{ "role": "Bulky Setup", "movepool": ["Body Slam", "Coil", "Earthquake", "Roost"], "teraTypes": ["Ground"] }] }, "qwilfish": { "level": 86, "sets": [{ "role": "Fast Support", "movepool": ["Destiny Bond", "Gunk Shot", "Spikes", "Taunt", "Thunder Wave", "Toxic Spikes", "Waterfall"], "teraTypes": ["Water", "Dark"] }] }, "qwilfishhisui": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Crunch", "Gunk Shot", "Spikes", "Taunt", "Toxic Spikes"], "teraTypes": ["Poison", "Flying"] }] }, "overqwil": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Aqua Jet", "Crunch", "Gunk Shot", "Liquidation", "Swords Dance"], "teraTypes": ["Water"] }] }, "scizor": { "level": 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": 88, "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": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Dark Pulse", "Fire Blast", "Flamethrower", "Nasty Plot", "Sludge Bomb", "Sucker Punch"], "teraTypes": ["Dark", "Poison"] }] }, "donphan": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Ice Spinner", "Knock Off", "Rapid Spin", "Stealth Rock"], "teraTypes": ["Dark", "Ground"] }, { "role": "Bulky Attacker", "movepool": ["Earthquake", "Gunk Shot", "Ice Shard", "Ice Spinner", "Knock Off", "Rapid Spin", "Stone Edge"], "teraTypes": ["Ice", "Poison", "Dark"] }] }, "blissey": { "level": 82, "sets": [{ "role": "Bulky Support", "movepool": ["Seismic Toss", "Soft-Boiled", "Stealth Rock", "Thunder Wave"], "teraTypes": ["Steel", "Fairy", "Ghost", "Poison"] }] }, "tyranitar": { "level": 80, "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", "Taunt"], "teraTypes": ["Rock"] }] }, "pelipper": { "level": 82, "sets": [{ "role": "Bulky Attacker", "movepool": ["Hurricane", "Hydro Pump", "Ice Beam", "Knock Off", "Roost", "Surf", "U-turn"], "teraTypes": ["Water", "Ground"] }, { "role": "Wallbreaker", "movepool": ["Hurricane", "Hydro Pump", "Ice Beam", "Surf", "U-turn"], "teraTypes": ["Water", "Flying"] }] }, "gardevoir": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Calm Mind", "Focus Blast", "Healing Wish", "Moonblast", "Mystical Fire", "Psychic", "Psyshock", "Trick"], "teraTypes": ["Fairy", "Fire", "Fighting"] }] }, "masquerain": { "level": 88, "sets": [{ "role": "Setup Sweeper", "movepool": ["Bug Buzz", "Hurricane", "Hydro Pump", "Quiver Dance"], "teraTypes": ["Water"] }, { "role": "Fast Support", "movepool": ["Bug Buzz", "Hurricane", "Hydro Pump", "Ice Beam", "Sticky Web", "Stun Spore", "U-turn"], "teraTypes": ["Flying"] }] }, "breloom": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Bullet Seed", "Close Combat", "Mach Punch", "Rock Tomb", "Spore", "Swords Dance"], "teraTypes": ["Fighting"] }] }, "slaking": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Body Slam", "Earthquake", "Fire Punch", "Giga Impact", "Hammer Arm", "Throat Chop"], "teraTypes": ["Normal", "Ground"] }] }, "hariyama": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Bulk Up", "Bullet Punch", "Close Combat", "Facade", "Headlong Rush", "Knock Off"], "teraTypes": ["Normal"] }, { "role": "AV Pivot", "movepool": ["Bullet Punch", "Close Combat", "Headlong Rush", "Heavy Slam", "Knock Off"], "teraTypes": ["Steel"] }] }, "sableye": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Encore", "Foul Play", "Knock Off", "Recover", "Taunt", "Thunder Wave", "Will-O-Wisp"], "teraTypes": ["Steel"] }] }, "medicham": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Bullet Punch", "Close Combat", "Ice Punch", "Poison Jab", "Zen Headbutt"], "teraTypes": ["Fighting"] }] }, "swalot": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Encore", "Ice Beam", "Pain Split", "Protect", "Sludge Bomb", "Toxic", "Toxic Spikes"], "teraTypes": ["Dark"] }, { "role": "Bulky Setup", "movepool": ["Earthquake", "Gunk Shot", "Seed Bomb", "Swords Dance"], "teraTypes": ["Poison", "Ground"] }] }, "camerupt": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Lava Plume", "Stealth Rock", "Yawn"], "teraTypes": ["Water"] }] }, "torkoal": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Lava Plume", "Rapid Spin", "Solar Beam", "Stealth Rock", "Yawn"], "teraTypes": ["Dragon", "Fire"] }] }, "grumpig": { "level": 88, "sets": [{ "role": "Bulky Attacker", "movepool": ["Dazzling Gleam", "Earth Power", "Focus Blast", "Nasty Plot", "Psychic", "Psyshock", "Shadow Ball", "Trick"], "teraTypes": ["Psychic", "Fairy", "Ground", "Ghost", "Fighting"] }] }, "cacturne": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Dark Pulse", "Focus Blast", "Leaf Storm", "Sucker Punch", "Toxic Spikes"], "teraTypes": ["Dark", "Poison", "Grass"] }, { "role": "Setup Sweeper", "movepool": ["Drain Punch", "Seed Bomb", "Sucker Punch", "Swords Dance"], "teraTypes": ["Dark", "Fighting"] }] }, "altaria": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Brave Bird", "Defog", "Earthquake", "Haze", "Roost", "Will-O-Wisp"], "teraTypes": ["Steel"] }, { "role": "Bulky Setup", "movepool": ["Brave Bird", "Dragon Dance", "Earthquake", "Roost"], "teraTypes": ["Flying", "Ground"] }] }, "zangoose": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Facade", "Night Slash", "Quick Attack", "Swords Dance"], "teraTypes": ["Normal"] }] }, "seviper": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Earthquake", "Flamethrower", "Giga Drain", "Glare", "Gunk Shot", "Switcheroo"], "teraTypes": ["Ground", "Fire", "Poison", "Grass"] }] }, "whiscash": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Liquidation", "Spikes", "Stealth Rock", "Stone Edge"], "teraTypes": ["Ground", "Steel"] }, { "role": "Setup Sweeper", "movepool": ["Dragon Dance", "Earthquake", "Liquidation", "Stone Edge"], "teraTypes": ["Ground", "Water"] }] }, "banette": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Gunk Shot", "Knock Off", "Shadow Claw", "Shadow Sneak", "Swords Dance", "Thunder Wave", "Will-O-Wisp"], "teraTypes": ["Poison", "Dark"] }] }, "tropius": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Air Slash", "Leech Seed", "Protect", "Substitute"], "teraTypes": ["Steel"] }] }, "glalie": { "level": 80, "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": ["Water"] }] }, "salamence": { "level": 82, "sets": [{ "role": "Setup Sweeper", "movepool": ["Dragon Dance", "Dual Wingbeat", "Earthquake", "Outrage", "Roost"], "teraTypes": ["Flying", "Ground", "Dragon"] }] }, "kyogre": { "level": 72, "sets": [{ "role": "Bulky Attacker", "movepool": ["Calm Mind", "Ice Beam", "Origin Pulse", "Thunder", "Water Spout"], "teraTypes": ["Water"] }] }, "groudon": { "level": 74, "sets": [{ "role": "Bulky Support", "movepool": ["Lava Plume", "Precipice Blades", "Spikes", "Stealth Rock", "Stone Edge", "Thunder Wave"], "teraTypes": ["Ground", "Fire"] }, { "role": "Bulky Setup", "movepool": ["Fire Punch", "Precipice Blades", "Stone Edge", "Swords Dance", "Thunder Wave"], "teraTypes": ["Ground", "Fire"] }] }, "rayquaza": { "level": 72, "sets": [{ "role": "Fast Attacker", "movepool": ["Dragon Ascent", "Dragon Dance", "Earthquake", "Extreme Speed", "Swords Dance", "U-turn"], "teraTypes": ["Flying", "Normal"] }] }, "staraptor": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Brave Bird", "Close Combat", "Double-Edge", "Quick Attack", "U-turn"], "teraTypes": ["Fighting", "Flying"] }] }, "kricketune": { "level": 90, "sets": [{ "role": "Fast Support", "movepool": ["Brick Break", "Pounce", "Sticky Web", "Taunt"], "teraTypes": ["Ghost"] }] }, "luxray": { "level": 86, "sets": [{ "role": "Wallbreaker", "movepool": ["Crunch", "Facade", "Play Rough", "Trailblaze", "Wild Charge"], "teraTypes": ["Normal"] }, { "role": "AV Pivot", "movepool": ["Crunch", "Ice Fang", "Play Rough", "Trailblaze", "Volt Switch", "Wild Charge"], "teraTypes": ["Electric", "Fairy"] }] }, "vespiquen": { "level": 90, "sets": [{ "role": "Bulky Support", "movepool": ["Air Slash", "Roost", "Spikes", "Toxic", "Toxic Spikes", "U-turn"], "teraTypes": ["Steel"] }] }, "pachirisu": { "level": 94, "sets": [{ "role": "AV Pivot", "movepool": ["Nuzzle", "Super Fang", "Thunderbolt", "U-turn"], "teraTypes": ["Flying"] }] }, "floatzel": { "level": 86, "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": ["Ground", "Steel", "Poison"] }] }, "drifblim": { "level": 86, "sets": [{ "role": "Fast Support", "movepool": ["Air Slash", "Defog", "Shadow Ball", "Strength Sap", "Will-O-Wisp"], "teraTypes": ["Ghost", "Fairy"] }, { "role": "Fast Bulky Setup", "movepool": ["Air Slash", "Calm Mind", "Shadow Ball", "Strength Sap"], "teraTypes": ["Ghost", "Fairy"] }] }, "mismagius": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Dazzling Gleam", "Energy Ball", "Mystical Fire", "Nasty Plot", "Shadow Ball", "Thunderbolt", "Trick"], "teraTypes": ["Ghost", "Fire", "Fairy", "Electric"] }] }, "honchkrow": { "level": 86, "sets": [{ "role": "Wallbreaker", "movepool": ["Brave Bird", "Heat Wave", "Sucker Punch", "U-turn"], "teraTypes": ["Dark", "Flying"] }] }, "skuntank": { "level": 88, "sets": [{ "role": "Fast Support", "movepool": ["Crunch", "Fire Blast", "Gunk Shot", "Sucker Punch", "Taunt", "Toxic Spikes"], "teraTypes": ["Dark", "Poison"] }] }, "bronzong": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Hypnosis", "Iron Head", "Light Screen", "Psychic", "Reflect", "Stealth Rock"], "teraTypes": ["Water", "Electric"] }] }, "spiritomb": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Foul Play", "Pain Split", "Shadow Sneak", "Sucker Punch", "Will-O-Wisp"], "teraTypes": ["Dark"] }, { "role": "Bulky Setup", "movepool": ["Calm Mind", "Dark Pulse", "Rest", "Sleep Talk"], "teraTypes": ["Dark"] }] }, "garchomp": { "level": 80, "sets": [{ "role": "Fast Support", "movepool": ["Draco Meteor", "Earthquake", "Fire Blast", "Stealth Rock", "Stone Edge"], "teraTypes": ["Ground", "Steel"] }, { "role": "Fast Attacker", "movepool": ["Earthquake", "Fire Fang", "Outrage", "Stone Edge", "Swords Dance"], "teraTypes": ["Ground", "Dragon"] }] }, "lucario": { "level": 82, "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"] }] }, "toxicroak": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Gunk Shot", "Ice Punch", "Sucker Punch", "Swords Dance"], "teraTypes": ["Dark", "Fighting"] }, { "role": "Setup Sweeper", "movepool": ["Dark Pulse", "Focus Blast", "Nasty Plot", "Sludge Bomb", "Vacuum Wave"], "teraTypes": ["Dark", "Fighting", "Poison"] }] }, "lumineon": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Dazzling Gleam", "Encore", "Hydro Pump", "Ice Beam", "U-turn"], "teraTypes": ["Water", "Fairy"] }] }, "abomasnow": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Aurora Veil", "Blizzard", "Earthquake", "Ice Shard", "Wood Hammer"], "teraTypes": ["Ice"] }] }, "weavile": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Ice Shard", "Ice Spinner", "Low Kick", "Night Slash", "Swords Dance"], "teraTypes": ["Ice", "Fighting"] }] }, "sneasler": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Dire Claw", "Gunk Shot", "Night Slash", "U-turn"], "teraTypes": ["Dark", "Fighting"] }, { "role": "Setup Sweeper", "movepool": ["Acrobatics", "Close Combat", "Gunk Shot", "Swords Dance"], "teraTypes": ["Flying"] }] }, "magnezone": { "level": 84, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Press", "Flash Cannon", "Mirror Coat", "Steel Beam", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric", "Water", "Flying"] }, { "role": "Tera Blast user", "movepool": ["Flash Cannon", "Tera Blast", "Thunderbolt", "Volt Switch"], "teraTypes": ["Fire"] }] }, "leafeon": { "level": 86, "sets": [{ "role": "Setup Sweeper", "movepool": ["Double-Edge", "Leaf Blade", "Substitute", "Swords Dance", "Synthesis", "X-Scissor"], "teraTypes": ["Normal"] }] }, "glaceon": { "level": 88, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Freeze-Dry", "Protect", "Wish"], "teraTypes": ["Water"] }] }, "gallade": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Leaf Blade", "Night Slash", "Psycho Cut", "Sacred Sword", "Swords Dance"], "teraTypes": ["Fighting", "Grass", "Dark"] }] }, "froslass": { "level": 86, "sets": [{ "role": "Fast Support", "movepool": ["Destiny Bond", "Ice Beam", "Shadow Ball", "Spikes", "Taunt", "Will-O-Wisp"], "teraTypes": ["Ghost"] }] }, "rotom": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Nasty Plot", "Shadow Ball", "Thunderbolt", "Trick", "Volt Switch", "Will-O-Wisp"], "teraTypes": ["Ghost", "Electric"] }] }, "rotomwash": { "level": 82, "sets": [{ "role": "Bulky Attacker", "movepool": ["Discharge", "Hydro Pump", "Nasty Plot", "Trick", "Volt Switch", "Will-O-Wisp"], "teraTypes": ["Water", "Electric"] }] }, "rotomheat": { "level": 82, "sets": [{ "role": "Bulky Attacker", "movepool": ["Nasty Plot", "Overheat", "Thunderbolt", "Trick", "Volt Switch", "Will-O-Wisp"], "teraTypes": ["Fire", "Electric"] }] }, "rotomfrost": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Blizzard", "Nasty Plot", "Thunderbolt", "Volt Switch", "Will-O-Wisp"], "teraTypes": ["Electric"] }] }, "rotomfan": { "level": 86, "sets": [{ "role": "Bulky Attacker", "movepool": ["Air Slash", "Nasty Plot", "Thunderbolt", "Volt Switch", "Will-O-Wisp"], "teraTypes": ["Electric"] }] }, "rotommow": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Leaf Storm", "Nasty Plot", "Thunderbolt", "Trick", "Volt Switch", "Will-O-Wisp"], "teraTypes": ["Grass", "Electric"] }] }, "uxie": { "level": 88, "sets": [{ "role": "Fast Support", "movepool": ["Encore", "Light Screen", "Psychic", "Reflect", "Stealth Rock", "Thunder Wave", "U-turn", "Yawn"], "teraTypes": ["Steel", "Electric"] }] }, "mesprit": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Dazzling Gleam", "Energy Ball", "Healing Wish", "Ice Beam", "Nasty Plot", "Psychic", "Thunderbolt", "Trick", "U-turn"], "teraTypes": ["Psychic", "Fairy", "Electric"] }] }, "azelf": { "level": 82, "sets": [{ "role": "Fast Support", "movepool": ["Explosion", "Fire Blast", "Psychic", "Stealth Rock", "Taunt", "U-turn"], "teraTypes": ["Psychic", "Fire"] }, { "role": "Fast Attacker", "movepool": ["Dazzling Gleam", "Energy Ball", "Fire Blast", "Nasty Plot", "Psychic", "Psyshock", "Trick", "U-turn"], "teraTypes": ["Psychic", "Fairy", "Fire"] }] }, "dialga": { "level": 76, "sets": [{ "role": "Bulky Attacker", "movepool": ["Draco Meteor", "Fire Blast", "Flash Cannon", "Stealth Rock", "Thunder Wave", "Thunderbolt", "Trick"], "teraTypes": ["Dragon", "Steel", "Fire"] }] }, "dialgaorigin": { "level": 76, "sets": [{ "role": "Bulky Attacker", "movepool": ["Draco Meteor", "Fire Blast", "Flash Cannon", "Stealth Rock", "Thunder Wave", "Thunderbolt"], "teraTypes": ["Dragon", "Steel", "Fire"] }] }, "palkia": { "level": 76, "sets": [{ "role": "Bulky Attacker", "movepool": ["Draco Meteor", "Fire Blast", "Hydro Pump", "Spacial Rend", "Thunder Wave"], "teraTypes": ["Dragon", "Water"] }] }, "palkiaorigin": { "level": 76, "sets": [{ "role": "Wallbreaker", "movepool": ["Draco Meteor", "Fire Blast", "Hydro Pump", "Spacial Rend"], "teraTypes": ["Dragon", "Water"] }] }, "heatran": { "level": 80, "sets": [{ "role": "Bulky Support", "movepool": ["Earth Power", "Flash Cannon", "Lava Plume", "Magma Storm", "Stealth Rock"], "teraTypes": ["Flying", "Grass", "Steel"] }] }, "giratina": { "level": 76, "sets": [{ "role": "Bulky Support", "movepool": ["Dragon Tail", "Rest", "Shadow Ball", "Sleep Talk", "Will-O-Wisp"], "teraTypes": ["Ghost"] }, { "role": "Bulky Setup", "movepool": ["Calm Mind", "Dragon Pulse", "Rest", "Sleep Talk"], "teraTypes": ["Dragon"] }] }, "giratinaorigin": { "level": 76, "sets": [{ "role": "Bulky Support", "movepool": ["Defog", "Draco Meteor", "Dragon Tail", "Earthquake", "Outrage", "Shadow Ball", "Shadow Sneak", "Will-O-Wisp"], "teraTypes": ["Dragon", "Ghost"] }] }, "cresselia": { "level": 84, "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", "Fire Blast", "Judgment", "Recover"], "teraTypes": ["Ground"] }] }, "arceusdark": { "level": 70, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Fire Blast", "Judgment", "Recover", "Sludge Bomb"], "teraTypes": ["Dark"] }] }, "arceusdragon": { "level": 70, "sets": [{ "role": "Setup Sweeper", "movepool": ["Earthquake", "Extreme Speed", "Gunk Shot", "Outrage", "Swords Dance"], "teraTypes": ["Dragon"] }] }, "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"] }] }, "arceusfighting": { "level": 70, "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"] }] }, "arceusflying": { "level": 72, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Earth Power", "Fire Blast", "Judgment", "Recover"], "teraTypes": ["Flying", "Ground"] }] }, "arceusghost": { "level": 70, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Focus Blast", "Judgment", "Recover"], "teraTypes": ["Ghost"] }] }, "arceusgrass": { "level": 72, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Earth Power", "Fire Blast", "Judgment", "Recover"], "teraTypes": ["Grass"] }] }, "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", "Ice"] }] }, "arceuspoison": { "level": 72, "sets": [{ "role": "Setup Sweeper", "movepool": ["Earthquake", "Flare Blitz", "Gunk Shot", "Liquidation", "Recover", "Swords Dance"], "teraTypes": ["Poison"] }] }, "arceuspsychic": { "level": 70, "sets": [{ "role": "Bulky Setup", "movepool": ["Body Press", "Cosmic Power", "Recover", "Stored Power"], "teraTypes": ["Steel"] }] }, "arceusrock": { "level": 70, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Earth Power", "Fire Blast", "Ice Beam", "Judgment", "Recover"], "teraTypes": ["Ground", "Rock"] }] }, "arceussteel": { "level": 70, "sets": [{ "role": "Setup Sweeper", "movepool": ["Calm Mind", "Earth Power", "Judgment", "Recover", "Will-O-Wisp"], "teraTypes": ["Ghost"] }] }, "arceuswater": { "level": 70, "sets": [{ "role": "Bulky Support", "movepool": ["Judgment", "Recover", "Taunt", "Will-O-Wisp"], "teraTypes": ["Steel"] }] }, "samurott": { "level": 88, "sets": [{ "role": "AV Pivot", "movepool": ["Aqua Jet", "Grass Knot", "Hydro Pump", "Ice Beam", "Knock Off", "Megahorn", "Sacred Sword"], "teraTypes": ["Water", "Dark"] }, { "role": "Fast Attacker", "movepool": ["Aqua Jet", "Knock Off", "Liquidation", "Megahorn", "Sacred Sword", "Swords Dance"], "teraTypes": ["Water", "Dark"] }] }, "samurotthisui": { "level": 86, "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": 76, "sets": [{ "role": "Fast Attacker", "movepool": ["Agility", "Aqua Jet", "Last Respects", "Psychic Fangs", "Wave Crash"], "teraTypes": ["Ghost"] }] }, "basculegionf": { "level": 76, "sets": [{ "role": "Wallbreaker", "movepool": ["Agility", "Hydro Pump", "Ice Beam", "Last Respects"], "teraTypes": ["Ghost"] }] }, "krookodile": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Bulk Up", "Close Combat", "Crunch", "Earthquake", "Stealth Rock", "Stone Edge"], "teraTypes": ["Fighting", "Ground"] }] }, "zoroark": { "sets": [{ "role": "Fast Attacker", "movepool": ["Dark Pulse", "Flamethrower", "Focus Blast", "Nasty Plot", "Sludge Bomb", "Trick", "U-turn"], "teraTypes": ["Poison"] }] }, "zoroarkhisui": { "sets": [{ "role": "Wallbreaker", "movepool": ["Bitter Malice", "Flamethrower", "Focus Blast", "Hyper Voice", "Nasty Plot", "Shadow Ball", "Trick", "U-turn"], "teraTypes": ["Normal"] }] }, "gothitelle": { "level": 82, "sets": [{ "role": "Bulky Attacker", "movepool": ["Nasty Plot", "Psychic", "Shadow Ball", "Thunderbolt", "Trick"], "teraTypes": ["Psychic", "Ghost", "Electric"] }] }, "sawsbuck": { "level": 88, "sets": [{ "role": "Setup Sweeper", "movepool": ["Double-Edge", "Headbutt", "Horn Leech", "Stomping Tantrum", "Swords Dance"], "teraTypes": ["Normal"] }] }, "amoonguss": { "level": 80, "sets": [{ "role": "Bulky Support", "movepool": ["Clear Smog", "Giga Drain", "Sludge Bomb", "Spore", "Toxic"], "teraTypes": ["Steel", "Water"] }] }, "alomomola": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Body Slam", "Liquidation", "Mirror Coat", "Protect", "Wish"], "teraTypes": ["Steel"] }] }, "eelektross": { "level": 86, "sets": [{ "role": "Bulky Setup", "movepool": ["Close Combat", "Coil", "Fire Punch", "Liquidation", "Wild Charge"], "teraTypes": ["Electric"] }, { "role": "AV Pivot", "movepool": ["Close Combat", "Flamethrower", "Giga Drain", "Thunderbolt", "U-turn"], "teraTypes": ["Electric"] }] }, "haxorus": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Dragon Dance", "Earthquake", "Outrage", "Poison Jab", "Swords Dance"], "teraTypes": ["Fighting", "Ground"] }] }, "beartic": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Aqua Jet", "Close Combat", "Earthquake", "Icicle Crash", "Snowscape", "Swords Dance"], "teraTypes": ["Fighting", "Ice", "Ground"] }] }, "cryogonal": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Flash Cannon", "Freeze-Dry", "Haze", "Rapid Spin", "Recover"], "teraTypes": ["Steel"] }] }, "braviary": { "level": 86, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Brave Bird", "Bulk Up", "Close Combat", "Roost"], "teraTypes": ["Flying", "Fighting"] }] }, "braviaryhisui": { "level": 80, "sets": [{ "role": "Fast Support", "movepool": ["Calm Mind", "Defog", "Heat Wave", "Hurricane", "Psychic"], "teraTypes": ["Psychic", "Flying"] }, { "role": "Wallbreaker", "movepool": ["Calm Mind", "Esper Wing", "Heat Wave", "Hurricane", "U-turn"], "teraTypes": ["Psychic", "Flying"] }] }, "hydreigon": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Dark Pulse", "Draco Meteor", "Fire Blast", "Flash Cannon", "Nasty Plot", "U-turn"], "teraTypes": ["Dark", "Dragon", "Fire", "Steel"] }] }, "volcarona": { "level": 80, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Bug Buzz", "Fiery Dance", "Fire Blast", "Giga Drain", "Morning Sun", "Quiver Dance"], "teraTypes": ["Fire", "Grass", "Water"] }] }, "tornadus": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Bleakwind Storm", "Focus Blast", "Grass Knot", "Heat Wave", "Nasty Plot", "U-turn"], "teraTypes": ["Flying", "Fire"] }] }, "tornadustherian": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Bleakwind Storm", "Focus Blast", "Grass Knot", "Heat Wave", "Nasty Plot", "U-turn"], "teraTypes": ["Flying", "Fire"] }] }, "thundurus": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Focus Blast", "Grass Knot", "Nasty Plot", "Sludge Bomb", "Taunt", "Thunder Wave", "Thunderbolt", "U-turn"], "teraTypes": ["Electric", "Grass"] }, { "role": "Tera Blast user", "movepool": ["Focus Blast", "Nasty Plot", "Tera Blast", "Thunderbolt"], "teraTypes": ["Flying"] }] }, "thundurustherian": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Focus Blast", "Grass Knot", "Nasty Plot", "Psychic", "Sludge Bomb", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric", "Psychic", "Poison"] }, { "role": "Tera Blast user", "movepool": ["Focus Blast", "Nasty Plot", "Tera Blast", "Thunderbolt"], "teraTypes": ["Flying"] }] }, "landorus": { "level": 76, "sets": [{ "role": "Fast Attacker", "movepool": ["Earth Power", "Focus Blast", "Nasty Plot", "Psychic", "Rock Slide", "Sludge Bomb", "Stealth Rock"], "teraTypes": ["Ground", "Psychic", "Poison"] }] }, "landorustherian": { "level": 80, "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": 86, "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": 80, "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": 84, "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": 86, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Moonblast", "Protect", "Wish"], "teraTypes": ["Fairy", "Steel"] }] }, "gogoat": { "level": 88, "sets": [{ "role": "Bulky Setup", "movepool": ["Bulk Up", "Earthquake", "Horn Leech", "Milk Drink"], "teraTypes": ["Ground"] }] }, "dragalge": { "level": 84, "sets": [{ "role": "Bulky Attacker", "movepool": ["Draco Meteor", "Focus Blast", "Sludge Bomb", "Thunderbolt", "Toxic", "Toxic Spikes"], "teraTypes": ["Dragon", "Poison"] }] }, "clawitzer": { "level": 86, "sets": [{ "role": "Wallbreaker", "movepool": ["Aura Sphere", "Dark Pulse", "Dragon Pulse", "U-turn", "Water Pulse"], "teraTypes": ["Dark", "Dragon", "Fighting"] }] }, "sylveon": { "level": 82, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Hyper Voice", "Protect", "Wish"], "teraTypes": ["Fairy", "Steel"] }, { "role": "Tera Blast user", "movepool": ["Calm Mind", "Hyper Voice", "Tera Blast", "Trailblaze"], "teraTypes": ["Ground"] }] }, "hawlucha": { "level": 82, "sets": [{ "role": "Setup Sweeper", "movepool": ["Acrobatics", "Brave Bird", "Close Combat", "Stone Edge", "Swords Dance"], "teraTypes": ["Fighting", "Flying"] }] }, "dedenne": { "level": 88, "sets": [{ "role": "Fast Support", "movepool": ["Dazzling Gleam", "Nuzzle", "Super Fang", "Thunderbolt", "U-turn"], "teraTypes": ["Electric"] }] }, "carbink": { "level": 88, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Press", "Moonblast", "Power Gem", "Spikes", "Stealth Rock"], "teraTypes": ["Fighting"] }, { "role": "Bulky Support", "movepool": ["Body Press", "Light Screen", "Moonblast", "Reflect", "Stealth Rock"], "teraTypes": ["Fighting"] }] }, "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": 86, "sets": [{ "role": "AV Pivot", "movepool": ["Draco Meteor", "Dragon Tail", "Earthquake", "Fire Blast", "Heavy Slam", "Hydro Pump", "Thunderbolt"], "teraTypes": ["Dragon", "Ground", "Fire", "Steel", "Water", "Electric"] }, { "role": "Bulky Setup", "movepool": ["Body Press", "Curse", "Heavy Slam", "Rest"], "teraTypes": ["Fighting"] }] }, "klefki": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Foul Play", "Magnet Rise", "Play Rough", "Spikes", "Thunder Wave"], "teraTypes": ["Water"] }] }, "avalugg": { "level": 86, "sets": [{ "role": "Bulky Attacker", "movepool": ["Avalanche", "Body Press", "Curse", "Rapid Spin", "Recover"], "teraTypes": ["Fighting"] }] }, "avalugghisui": { "level": 88, "sets": [{ "role": "Bulky Attacker", "movepool": ["Avalanche", "Body Press", "Curse", "Recover", "Stone Edge"], "teraTypes": ["Poison", "Flying"] }] }, "noivern": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Boomburst", "Draco Meteor", "Flamethrower", "Hurricane", "Roost", "U-turn"], "teraTypes": ["Normal"] }, { "role": "Fast Support", "movepool": ["Defog", "Draco Meteor", "Flamethrower", "Hurricane", "Roost", "U-turn"], "teraTypes": ["Fire"] }] }, "diancie": { "level": 84, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Press", "Diamond Storm", "Earth Power", "Moonblast", "Stealth Rock"], "teraTypes": ["Fighting"] }] }, "hoopa": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Focus Blast", "Nasty Plot", "Psyshock", "Shadow Ball", "Substitute", "Trick"], "teraTypes": ["Psychic", "Ghost", "Fighting"] }] }, "hoopaunbound": { "level": 80, "sets": [{ "role": "Wallbreaker", "movepool": ["Drain Punch", "Gunk Shot", "Hyperspace Fury", "Trick", "Zen Headbutt"], "teraTypes": ["Dark", "Fighting", "Poison"] }, { "role": "Fast Attacker", "movepool": ["Dark Pulse", "Focus Blast", "Nasty Plot", "Psyshock", "Trick"], "teraTypes": ["Dark", "Fighting", "Psychic"] }, { "role": "AV Pivot", "movepool": ["Focus Blast", "Gunk Shot", "Hyperspace Fury", "Psychic"], "teraTypes": ["Dark", "Fighting", "Psychic", "Poison"] }] }, "volcanion": { "level": 82, "sets": [{ "role": "Bulky Attacker", "movepool": ["Earth Power", "Flame Charge", "Flamethrower", "Sludge Bomb", "Steam Eruption"], "teraTypes": ["Water", "Fire"] }] }, "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": 86, "sets": [{ "role": "Bulky Attacker", "movepool": ["Leaf Blade", "Sucker Punch", "Swords Dance", "Synthesis", "Triple Arrows", "U-turn"], "teraTypes": ["Fighting", "Steel"] }] }, "gumshoos": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Body Slam", "Crunch", "Earthquake", "Psychic Fangs", "U-turn"], "teraTypes": ["Ground"] }] }, "crabominable": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Close Combat", "Drain Punch", "Earthquake", "Gunk Shot", "Ice Hammer"], "teraTypes": ["Fighting", "Ground"] }] }, "oricorio": { "level": 82, "sets": [{ "role": "Setup Sweeper", "movepool": ["Hurricane", "Quiver Dance", "Revelation Dance", "Roost", "Substitute"], "teraTypes": ["Ground"] }, { "role": "Fast Support", "movepool": ["Defog", "Hurricane", "Revelation Dance", "Roost", "U-turn"], "teraTypes": ["Ground"] }] }, "oricoriopompom": { "level": 82, "sets": [{ "role": "Setup Sweeper", "movepool": ["Hurricane", "Quiver Dance", "Revelation Dance", "Roost", "Substitute"], "teraTypes": ["Electric", "Ground"] }, { "role": "Fast Support", "movepool": ["Defog", "Hurricane", "Revelation Dance", "Roost", "U-turn"], "teraTypes": ["Electric"] }] }, "oricoriopau": { "level": 82, "sets": [{ "role": "Setup Sweeper", "movepool": ["Hurricane", "Quiver Dance", "Revelation Dance", "Roost", "Substitute"], "teraTypes": ["Ground"] }, { "role": "Fast Support", "movepool": ["Defog", "Hurricane", "Revelation Dance", "Roost", "U-turn"], "teraTypes": ["Ground"] }] }, "oricoriosensu": { "level": 82, "sets": [{ "role": "Setup Sweeper", "movepool": ["Hurricane", "Quiver Dance", "Revelation Dance", "Roost", "Substitute"], "teraTypes": ["Ghost", "Fighting"] }, { "role": "Fast Support", "movepool": ["Defog", "Hurricane", "Revelation Dance", "Roost", "U-turn"], "teraTypes": ["Ghost"] }] }, "lycanroc": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Accelerock", "Close Combat", "Crunch", "Drill Run", "Psychic Fangs", "Stealth Rock", "Stone Edge", "Swords Dance", "Taunt"], "teraTypes": ["Fighting"] }] }, "lycanrocmidnight": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Psychic Fangs", "Stealth Rock", "Stone Edge", "Swords Dance"], "teraTypes": ["Rock", "Fighting"] }] }, "lycanrocdusk": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Accelerock", "Close Combat", "Crunch", "Drill Run", "Psychic Fangs", "Stone Edge", "Swords Dance"], "teraTypes": ["Fighting"] }] }, "toxapex": { "level": 82, "sets": [{ "role": "Bulky Support", "movepool": ["Haze", "Liquidation", "Recover", "Toxic", "Toxic Spikes"], "teraTypes": ["Steel", "Flying", "Grass", "Fairy"] }] }, "mudsdale": { "level": 86, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Press", "Earthquake", "Heavy Slam", "Stealth Rock", "Stone Edge"], "teraTypes": ["Fighting"] }] }, "lurantis": { "level": 88, "sets": [{ "role": "Bulky Attacker", "movepool": ["Defog", "Leaf Storm", "Pollen Puff", "Synthesis"], "teraTypes": ["Steel", "Water"] }] }, "salazzle": { "level": 82, "sets": [{ "role": "Fast Support", "movepool": ["Flamethrower", "Protect", "Substitute", "Toxic"], "teraTypes": ["Water", "Flying"] }] }, "tsareena": { "level": 84, "sets": [{ "role": "Fast Support", "movepool": ["High Jump Kick", "Play Rough", "Power Whip", "Rapid Spin", "Synthesis", "U-turn"], "teraTypes": ["Fighting", "Grass"] }] }, "oranguru": { "level": 88, "sets": [{ "role": "Bulky Attacker", "movepool": ["Focus Blast", "Nasty Plot", "Psychic", "Psyshock", "Thunderbolt"], "teraTypes": ["Psychic", "Electric", "Fighting"] }, { "role": "Wallbreaker", "movepool": ["Focus Blast", "Hyper Voice", "Psyshock", "Thunderbolt", "Trick", "Trick Room"], "teraTypes": ["Psychic", "Electric", "Fighting"] }] }, "passimian": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Gunk Shot", "Knock Off", "Rock Slide", "U-turn"], "teraTypes": ["Dark"] }] }, "palossand": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Earth Power", "Hypnosis", "Shadow Ball", "Shore Up", "Stealth Rock"], "teraTypes": ["Water"] }] }, "komala": { "level": 88, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Slam", "Earthquake", "Gunk Shot", "Ice Spinner", "Play Rough", "Rapid Spin", "Sucker Punch", "Superpower", "U-turn", "Wood Hammer"], "teraTypes": ["Normal", "Ground", "Poison", "Fairy", "Fighting", "Grass"] }] }, "mimikyu": { "level": 86, "sets": [{ "role": "Setup Sweeper", "movepool": ["Drain Punch", "Play Rough", "Shadow Claw", "Shadow Sneak", "Swords Dance", "Wood Hammer"], "teraTypes": ["Fighting", "Grass", "Fairy", "Ghost"] }] }, "bruxish": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Aqua Jet", "Crunch", "Ice Fang", "Psychic Fangs", "Swords Dance", "Wave Crash"], "teraTypes": ["Dark", "Psychic"] }] }, "magearna": { "level": 80, "sets": [{ "role": "Bulky Attacker", "movepool": ["Aura Sphere", "Flash Cannon", "Fleur Cannon", "Ice Beam", "Spikes", "Volt Switch"], "teraTypes": ["Fairy", "Steel", "Fighting", "Water"] }, { "role": "Bulky Setup", "movepool": ["Agility", "Calm Mind", "Flash Cannon", "Fleur Cannon"], "teraTypes": ["Steel"] }] }, "rillaboom": { "level": 82, "sets": [{ "role": "Setup Sweeper", "movepool": ["Acrobatics", "Knock Off", "Stomping Tantrum", "Swords Dance", "Wood Hammer"], "teraTypes": ["Flying", "Grass"] }, { "role": "Fast Attacker", "movepool": ["Knock Off", "Stomping Tantrum", "U-turn", "Wood Hammer"], "teraTypes": ["Grass"] }] }, "cinderace": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Court Change", "Gunk Shot", "High Jump Kick", "Pyro Ball", "Sucker Punch", "U-turn"], "teraTypes": ["Fire", "Fighting", "Poison"] }] }, "inteleon": { "level": 86, "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": 82, "sets": [{ "role": "Setup Sweeper", "movepool": ["Crunch", "Earthquake", "Liquidation", "Shell Smash", "Stone Edge"], "teraTypes": ["Water", "Rock", "Ground", "Dark"] }] }, "coalossal": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Overheat", "Rapid Spin", "Spikes", "Stealth Rock", "Stone Edge", "Will-O-Wisp"], "teraTypes": ["Water"] }] }, "flapple": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Dragon Dance", "Grav Apple", "Outrage", "Sucker Punch", "U-turn"], "teraTypes": ["Dragon", "Grass"] }] }, "appletun": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Apple Acid", "Draco Meteor", "Dragon Pulse", "Leech Seed", "Recover"], "teraTypes": ["Grass", "Steel"] }] }, "sandaconda": { "level": 86, "sets": [{ "role": "Bulky Setup", "movepool": ["Coil", "Earthquake", "Glare", "Rest", "Stone Edge"], "teraTypes": ["Ground"] }, { "role": "Bulky Support", "movepool": ["Earthquake", "Glare", "Rest", "Stealth Rock", "Stone Edge"], "teraTypes": ["Ground"] }] }, "barraskewda": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Aqua Jet", "Close Combat", "Crunch", "Liquidation", "Poison Jab", "Psychic Fangs"], "teraTypes": ["Fighting"] }] }, "toxtricity": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Boomburst", "Overdrive", "Shift Gear", "Sludge Bomb", "Volt Switch"], "teraTypes": ["Normal"] }] }, "toxtricitylowkey": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Boomburst", "Overdrive", "Sludge Bomb", "Toxic Spikes", "Volt Switch"], "teraTypes": ["Normal"] }] }, "polteageist": { "level": 82, "sets": [{ "role": "Tera Blast user", "movepool": ["Giga Drain", "Shadow Ball", "Shell Smash", "Stored Power", "Strength Sap", "Tera Blast"], "teraTypes": ["Fighting"] }, { "role": "Setup Sweeper", "movepool": ["Giga Drain", "Shadow Ball", "Shell Smash", "Stored Power", "Strength Sap"], "teraTypes": ["Psychic"] }] }, "hatterene": { "level": 84, "sets": [{ "role": "Wallbreaker", "movepool": ["Dazzling Gleam", "Mystical Fire", "Psychic", "Psyshock", "Trick", "Trick Room"], "teraTypes": ["Psychic", "Fairy", "Fire"] }] }, "grimmsnarl": { "level": 82, "sets": [{ "role": "Bulky Support", "movepool": ["Light Screen", "Parting Shot", "Reflect", "Spirit Break", "Thunder Wave"], "teraTypes": ["Fairy"] }, { "role": "Fast Bulky Setup", "movepool": ["Bulk Up", "Crunch", "Rest", "Spirit Break", "Sucker Punch", "Thunder Wave"], "teraTypes": ["Dark"] }, { "role": "Bulky Attacker", "movepool": ["Parting Shot", "Spirit Break", "Sucker Punch", "Taunt", "Thunder Wave"], "teraTypes": ["Fairy"] }] }, "perrserker": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Close Combat", "Crunch", "Iron Head", "Stealth Rock", "U-turn"], "teraTypes": ["Steel", "Fighting"] }] }, "falinks": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Megahorn", "No Retreat", "Poison Jab", "Rock Slide"], "teraTypes": ["Fighting"] }] }, "pincurchin": { "level": 88, "sets": [{ "role": "Bulky Attacker", "movepool": ["Discharge", "Liquidation", "Spikes", "Sucker Punch", "Toxic Spikes"], "teraTypes": ["Electric", "Water"] }] }, "frosmoth": { "level": 86, "sets": [{ "role": "Tera Blast user", "movepool": ["Bug Buzz", "Giga Drain", "Hurricane", "Ice Beam", "Quiver Dance", "Tera Blast"], "teraTypes": ["Ground"] }, { "role": "Setup Sweeper", "movepool": ["Bug Buzz", "Giga Drain", "Hurricane", "Ice Beam", "Quiver Dance"], "teraTypes": ["Water"] }] }, "stonjourner": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Earthquake", "Heavy Slam", "Rock Polish", "Stealth Rock", "Stone Edge"], "teraTypes": ["Ground"] }] }, "eiscue": { "level": 86, "sets": [{ "role": "Setup Sweeper", "movepool": ["Belly Drum", "Ice Spinner", "Iron Head", "Liquidation", "Substitute", "Zen Headbutt"], "teraTypes": ["Water"] }, { "role": "Tera Blast user", "movepool": ["Belly Drum", "Ice Spinner", "Liquidation", "Substitute", "Tera Blast"], "teraTypes": ["Ground"] }] }, "indeedee": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Calm Mind", "Dazzling Gleam", "Healing Wish", "Hyper Voice", "Psychic", "Psyshock", "Shadow Ball"], "teraTypes": ["Psychic"] }] }, "indeedeef": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Calm Mind", "Dazzling Gleam", "Healing Wish", "Hyper Voice", "Psychic", "Psyshock", "Shadow Ball"], "teraTypes": ["Psychic"] }] }, "copperajah": { "level": 86, "sets": [{ "role": "Wallbreaker", "movepool": ["Earthquake", "Iron Head", "Play Rough", "Rock Slide", "Stealth Rock", "Superpower"], "teraTypes": ["Steel", "Fairy"] }] }, "dragapult": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Draco Meteor", "Fire Blast", "Shadow Ball", "Thunderbolt", "U-turn"], "teraTypes": ["Ghost", "Dragon"] }, { "role": "Tera Blast user", "movepool": ["Dragon Dance", "Dragon Darts", "Fire Blast", "Tera Blast"], "teraTypes": ["Ghost"] }] }, "zacian": { "level": 70, "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": 72, "sets": [{ "role": "Bulky Attacker", "movepool": ["Dynamax Cannon", "Fire Blast", "Recover", "Sludge Bomb"], "teraTypes": ["Dragon"] }, { "role": "Bulky Support", "movepool": ["Dynamax Cannon", "Flamethrower", "Recover", "Toxic", "Toxic Spikes"], "teraTypes": ["Dragon"] }] }, "urshifu": { "level": 76, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Poison Jab", "Sucker Punch", "Swords Dance", "U-turn", "Wicked Blow"], "teraTypes": ["Dark", "Fighting"] }] }, "urshifurapidstrike": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Aqua Jet", "Close Combat", "Ice Spinner", "Surging Strikes", "Swords Dance", "U-turn"], "teraTypes": ["Water"] }] }, "zarude": { "level": 86, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Close Combat", "Crunch", "Power Whip", "Swords Dance", "Synthesis"], "teraTypes": ["Dark", "Grass", "Fighting"] }, { "role": "Fast Attacker", "movepool": ["Close Combat", "Crunch", "Power Whip", "U-turn"], "teraTypes": ["Dark", "Grass", "Fighting"] }] }, "regieleki": { "level": 80, "sets": [{ "role": "Fast Support", "movepool": ["Explosion", "Rapid Spin", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric"] }, { "role": "Tera Blast user", "movepool": ["Rapid Spin", "Tera Blast", "Thunderbolt", "Volt Switch"], "teraTypes": ["Ice"] }] }, "regidrago": { "level": 84, "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": 76, "sets": [{ "role": "Setup Sweeper", "movepool": ["Nasty Plot", "Psychic", "Shadow Ball", "Substitute", "Will-O-Wisp"], "teraTypes": ["Ghost", "Psychic"] }, { "role": "Tera Blast user", "movepool": ["Nasty Plot", "Shadow Ball", "Substitute", "Tera Blast", "Will-O-Wisp"], "teraTypes": ["Fighting"] }] }, "calyrex": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Calm Mind", "Encore", "Energy Ball", "Leech Seed", "Psychic", "Psyshock"], "teraTypes": ["Steel"] }] }, "calyrexice": { "level": 74, "sets": [{ "role": "Wallbreaker", "movepool": ["Agility", "Close Combat", "Glacial Lance", "Stomping Tantrum", "Trick Room", "Zen Headbutt"], "teraTypes": ["Fighting"] }] }, "calyrexshadow": { "level": 68, "sets": [{ "role": "Fast Attacker", "movepool": ["Astral Barrage", "Nasty Plot", "Pollen Puff", "Psyshock", "Trick"], "teraTypes": ["Ghost"] }] }, "wyrdeer": { "level": 88, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Slam", "Earthquake", "Megahorn", "Psychic", "Thunder Wave", "Thunderbolt"], "teraTypes": ["Ground"] }] }, "kleavor": { "level": 86, "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": ["Close Combat", "Facade", "Headlong Rush", "Protect", "Swords Dance"], "teraTypes": ["Normal"] }] }, "enamorus": { "level": 82, "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": 80, "sets": [{ "role": "Bulky Attacker", "movepool": ["Flame Charge", "Shadow Ball", "Slack Off", "Torch Song"], "teraTypes": ["Fire"] }, { "role": "Bulky Support", "movepool": ["Hex", "Slack Off", "Torch Song", "Will-O-Wisp"], "teraTypes": ["Ghost", "Water"] }] }, "quaquaval": { "level": 80, "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": 88, "sets": [{ "role": "Bulky Setup", "movepool": ["Body Press", "Body Slam", "Stomping Tantrum", "Stuff Cheeks"], "teraTypes": ["Fighting"] }] }, "oinkolognef": { "level": 88, "sets": [{ "role": "Bulky Setup", "movepool": ["Body Press", "Body Slam", "Stomping Tantrum", "Stuff Cheeks"], "teraTypes": ["Fighting"] }] }, "dudunsparce": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Glare", "Headbutt", "Roost"], "teraTypes": ["Normal", "Ghost", "Ground"] }, { "role": "Bulky Setup", "movepool": ["Boomburst", "Calm Mind", "Earth Power", "Roost", "Thunder"], "teraTypes": ["Normal", "Ghost"] }] }, "dudunsparcethreesegment": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Glare", "Headbutt", "Roost"], "teraTypes": ["Normal", "Ghost", "Ground"] }, { "role": "Bulky Setup", "movepool": ["Boomburst", "Calm Mind", "Earth Power", "Roost", "Thunder"], "teraTypes": ["Normal"] }] }, "spidops": { "level": 90, "sets": [{ "role": "Bulky Support", "movepool": ["Circle Throw", "Memento", "Spikes", "Sticky Web", "Toxic Spikes"], "teraTypes": ["Ghost"] }] }, "lokix": { "level": 82, "sets": [{ "role": "Wallbreaker", "movepool": ["Axe Kick", "First Impression", "Leech Life", "Sucker Punch"], "teraTypes": ["Bug"] }, { "role": "Fast Attacker", "movepool": ["Axe Kick", "First Impression", "Sucker Punch", "U-turn"], "teraTypes": ["Bug"] }, { "role": "Setup Sweeper", "movepool": ["Leech Life", "Sucker Punch", "Swords Dance", "Throat Chop"], "teraTypes": ["Dark"] }] }, "rabsca": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Bug Buzz", "Earth Power", "Psychic", "Revival Blessing", "Trick Room"], "teraTypes": ["Steel"] }] }, "houndstone": { "level": 76, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Press", "Last Respects", "Trick", "Will-O-Wisp"], "teraTypes": ["Ghost"] }] }, "espathra": { "level": 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": ["Psychic", "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": 80, "sets": [{ "role": "Bulky Setup", "movepool": ["Curse", "Liquidation", "Rest", "Sleep Talk", "Wave Crash"], "teraTypes": ["Water", "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": 76, "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", "Leech Seed", "Strength Sap"], "teraTypes": ["Grass", "Fairy"] }, { "role": "Bulky Support", "movepool": ["Giga Drain", "Hyper Voice", "Leech Seed", "Substitute"], "teraTypes": ["Water"] }] }, "scovillain": { "level": 80, "sets": [{ "role": "Bulky Attacker", "movepool": ["Flamethrower", "Leech Seed", "Protect", "Substitute"], "teraTypes": ["Steel", "Water"] }] }, "bellibolt": { "level": 88, "sets": [{ "role": "Bulky Attacker", "movepool": ["Muddy Water", "Slack Off", "Thunder Wave", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric"] }] }, "revavroom": { "level": 82, "sets": [{ "role": "Tera Blast user", "movepool": ["Gunk Shot", "Iron Head", "Shift Gear", "Tera Blast"], "teraTypes": ["Water", "Ground"] }, { "role": "Fast Support", "movepool": ["Gunk Shot", "Haze", "Parting Shot", "Spin Out", "Toxic", "Toxic Spikes"], "teraTypes": ["Water"] }] }, "orthworm": { "level": 84, "sets": [{ "role": "Bulky Setup", "movepool": ["Body Press", "Coil", "Iron Tail", "Rest"], "teraTypes": ["Steel", "Fighting", "Electric"] }, { "role": "Bulky Support", "movepool": ["Body Press", "Iron Head", "Rest", "Shed Tail", "Spikes", "Stealth Rock"], "teraTypes": ["Steel", "Electric"] }] }, "maushold": { "level": 80, "sets": [{ "role": "Setup Sweeper", "movepool": ["Bite", "Encore", "Population Bomb", "Tidy Up"], "teraTypes": ["Normal"] }] }, "mausholdfour": { "level": 80, "sets": [{ "role": "Setup Sweeper", "movepool": ["Bite", "Encore", "Population Bomb", "Tidy Up"], "teraTypes": ["Normal"] }] }, "cetitan": { "level": 84, "sets": [{ "role": "Wallbreaker", "movepool": ["Earthquake", "Icicle Crash", "Liquidation", "Snowscape"], "teraTypes": ["Ground"] }, { "role": "Bulky Setup", "movepool": ["Belly Drum", "Earthquake", "Ice Shard", "Icicle Crash"], "teraTypes": ["Ice"] }] }, "baxcalibur": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Earthquake", "Glaive Rush", "Ice Shard", "Icicle Crash"], "teraTypes": ["Ice"] }, { "role": "Setup Sweeper", "movepool": ["Dragon Dance", "Earthquake", "Glaive Rush", "Icicle Crash"], "teraTypes": ["Dragon", "Ground"] }] }, "tatsugiri": { "level": 82, "sets": [{ "role": "Tera Blast user", "movepool": ["Draco Meteor", "Dragon Pulse", "Hydro Pump", "Nasty Plot", "Tera Blast"], "teraTypes": ["Fire"] }, { "role": "Fast Support", "movepool": ["Draco Meteor", "Hydro Pump", "Nasty Plot", "Rapid Spin", "Surf"], "teraTypes": ["Water"] }] }, "cyclizar": { "level": 80, "sets": [{ "role": "Fast Support", "movepool": ["Draco Meteor", "Rapid Spin", "Shed Tail", "Taunt"], "teraTypes": ["Dragon"] }, { "role": "Fast Attacker", "movepool": ["Body Slam", "Knock Off", "Outrage", "Shed Tail", "Shift Gear"], "teraTypes": ["Dark", "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": 82, "sets": [{ "role": "Wallbreaker", "movepool": ["Brave Bird", "Close Combat", "Swords Dance", "Throat Chop", "U-turn"], "teraTypes": ["Fighting"] }] }, "klawf": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Crabhammer", "High Horsepower", "Knock Off", "Stealth Rock", "Stone Edge", "Swords Dance"], "teraTypes": ["Water", "Ground", "Dark", "Rock"] }] }, "garganacl": { "level": 80, "sets": [{ "role": "Bulky Setup", "movepool": ["Body Press", "Curse", "Recover", "Stone Edge"], "teraTypes": ["Fighting"] }, { "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": 86, "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": 86, "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": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Power Whip", "Rapid Spin", "Shadow Sneak", "Spikes", "Strength Sap"], "teraTypes": ["Ghost"] }, { "role": "Fast Support", "movepool": ["Leech Seed", "Phantom Force", "Power Whip", "Substitute"], "teraTypes": ["Ghost"] }] }, "gholdengo": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Focus Blast", "Make It Rain", "Nasty Plot", "Recover", "Shadow Ball", "Trick"], "teraTypes": ["Steel", "Ghost"] }, { "role": "Bulky Attacker", "movepool": ["Make It Rain", "Recover", "Shadow Ball", "Thunder Wave"], "teraTypes": ["Steel", "Water"] }] }, "greattusk": { "level": 80, "sets": [{ "role": "Bulky Setup", "movepool": ["Bulk Up", "Close Combat", "Earthquake", "Ice Spinner", "Rapid Spin"], "teraTypes": ["Ground", "Fighting"] }, { "role": "Bulky Attacker", "movepool": ["Close Combat", "Headlong Rush", "Ice Spinner", "Knock Off", "Rapid Spin", "Stealth Rock"], "teraTypes": ["Ground", "Dark"] }] }, "brutebonnet": { "level": 82, "sets": [{ "role": "Bulky Attacker", "movepool": ["Close Combat", "Crunch", "Seed Bomb", "Spore", "Sucker Punch"], "teraTypes": ["Dark", "Fighting"] }] }, "sandyshocks": { "level": 82, "sets": [{ "role": "Bulky Attacker", "movepool": ["Earth Power", "Spikes", "Stealth Rock", "Thunder Wave", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric", "Ground"] }] }, "screamtail": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Encore", "Light Screen", "Play Rough", "Protect", "Reflect", "Thunder Wave", "Wish"], "teraTypes": ["Fairy", "Steel"] }] }, "fluttermane": { "level": 76, "sets": [{ "role": "Fast Attacker", "movepool": ["Calm Mind", "Moonblast", "Mystical Fire", "Psyshock", "Shadow Ball", "Thunderbolt"], "teraTypes": ["Ghost", "Fairy", "Fire", "Electric", "Psychic"] }] }, "slitherwing": { "level": 82, "sets": [{ "role": "Bulky Setup", "movepool": ["Bulk Up", "Close Combat", "Earthquake", "Flare Blitz", "Leech Life", "Wild Charge", "Will-O-Wisp"], "teraTypes": ["Fighting", "Electric", "Fire"] }, { "role": "Fast Attacker", "movepool": ["Close Combat", "Earthquake", "First Impression", "Flare Blitz", "U-turn", "Wild Charge"], "teraTypes": ["Bug", "Fighting", "Electric"] }] }, "roaringmoon": { "level": 80, "sets": [{ "role": "Setup Sweeper", "movepool": ["Crunch", "Dragon Dance", "Earthquake", "Outrage", "Roost"], "teraTypes": ["Dark", "Dragon", "Ground"] }, { "role": "Bulky Attacker", "movepool": ["Crunch", "Iron Head", "Outrage", "U-turn"], "teraTypes": ["Dark", "Dragon", "Steel"] }] }, "irontreads": { "level": 80, "sets": [{ "role": "Bulky Attacker", "movepool": ["Earthquake", "Heavy Slam", "Knock Off", "Rapid Spin", "Stealth Rock", "Stone Edge", "Volt Switch"], "teraTypes": ["Ground", "Steel"] }] }, "ironmoth": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Discharge", "Energy Ball", "Fiery Dance", "Fire Blast", "Sludge Wave", "U-turn"], "teraTypes": ["Fire", "Grass"] }, { "role": "Fast Support", "movepool": ["Energy Ball", "Fiery Dance", "Morning Sun", "Sludge Wave", "Toxic Spikes", "U-turn"], "teraTypes": ["Fire", "Grass"] }] }, "ironhands": { "level": 80, "sets": [{ "role": "Bulky Attacker", "movepool": ["Close Combat", "Drain Punch", "Fake Out", "Heavy Slam", "Ice Punch", "Thunder Punch", "Volt Switch", "Wild Charge"], "teraTypes": ["Electric", "Fighting"] }] }, "ironjugulis": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Dark Pulse", "Earth Power", "Fire Blast", "Hurricane", "Hydro Pump", "U-turn"], "teraTypes": ["Dark", "Flying", "Ground"] }] }, "ironthorns": { "level": 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": 80, "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": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Crunch", "Ice Shard", "Ice Spinner", "Sacred Sword", "Sucker Punch", "Swords Dance"], "teraTypes": ["Dark", "Ice", "Fighting"] }] }, "wochien": { "level": 82, "sets": [{ "role": "Bulky Support", "movepool": ["Energy Ball", "Knock Off", "Leech Seed", "Ruination", "Stun Spore"], "teraTypes": ["Poison"] }] }, "chiyu": { "level": 80, "sets": [{ "role": "Setup Sweeper", "movepool": ["Dark Pulse", "Fire Blast", "Nasty Plot", "Psychic", "Will-O-Wisp"], "teraTypes": ["Dark", "Fire"] }, { "role": "Wallbreaker", "movepool": ["Dark Pulse", "Flamethrower", "Overheat", "Psychic"], "teraTypes": ["Dark", "Fire"] }] }, "koraidon": { "level": 72, "sets": [{ "role": "Fast Attacker", "movepool": ["Collision Course", "Flare Blitz", "Outrage", "Swords Dance", "U-turn"], "teraTypes": ["Fire"] }] }, "miraidon": { "level": 70, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Calm Mind", "Dragon Pulse", "Electro Drift", "Substitute"], "teraTypes": ["Electric"] }, { "role": "Fast Attacker", "movepool": ["Draco Meteor", "Electro Drift", "Overheat", "Volt Switch"], "teraTypes": ["Electric"] }] }, "tinkaton": { "level": 86, "sets": [{ "role": "Bulky Attacker", "movepool": ["Gigaton Hammer", "Knock Off", "Play Rough", "Stealth Rock", "Thunder Wave"], "teraTypes": ["Steel"] }, { "role": "Setup Sweeper", "movepool": ["Gigaton Hammer", "Knock Off", "Play Rough", "Swords Dance"], "teraTypes": ["Steel"] }] }, "armarouge": { "level": 84, "sets": [{ "role": "Wallbreaker", "movepool": ["Armor Cannon", "Aura Sphere", "Energy Ball", "Focus Blast", "Psyshock"], "teraTypes": ["Fire", "Fighting", "Psychic", "Grass"] }] }, "ceruledge": { "level": 82, "sets": [{ "role": "Setup Sweeper", "movepool": ["Bitter Blade", "Close Combat", "Shadow Sneak", "Swords Dance"], "teraTypes": ["Fire", "Fighting"] }] }, "toedscruel": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Earth Power", "Giga Drain", "Knock Off", "Leaf Storm", "Rapid Spin", "Spore", "Toxic", "Toxic Spikes"], "teraTypes": ["Ground", "Water"] }] }, "kingambit": { "level": 82, "sets": [{ "role": "Wallbreaker", "movepool": ["Iron Head", "Kowtow Cleave", "Stealth Rock", "Sucker Punch", "Swords Dance"], "teraTypes": ["Dark"] }] } };
|
|
8047
|
+
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": 88, "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": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Dazzling Gleam", "Fire Blast", "Light Screen", "Protect", "Reflect", "Stealth Rock", "Thunder Wave", "Wish"], "teraTypes": ["Steel"] }] }, "venomoth": { "level": 84, "sets": [{ "role": "Setup Sweeper", "movepool": ["Bug Buzz", "Quiver Dance", "Sleep Powder", "Sludge Bomb", "Substitute"], "teraTypes": ["Bug", "Poison"] }] }, "dugtrio": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Earthquake", "Memento", "Stealth Rock", "Stone Edge", "Sucker Punch", "Swords Dance"], "teraTypes": ["Ground", "Ghost", "Fairy", "Flying", "Dark"] }] }, "dugtrioalola": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Earthquake", "Iron Head", "Stealth Rock", "Stone Edge", "Sucker Punch", "Swords Dance"], "teraTypes": ["Ground", "Steel"] }] }, "persian": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Aerial Ace", "Body Slam", "Fake Out", "Foul Play", "Gunk Shot", "Switcheroo", "U-turn"], "teraTypes": ["Normal", "Poison", "Flying"] }] }, "persianalola": { "level": 88, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Dark Pulse", "Hypnosis", "Nasty Plot", "Power Gem", "Thunderbolt"], "teraTypes": ["Dark", "Electric"] }] }, "golduck": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Encore", "Grass Knot", "Hydro Pump", "Ice Beam", "Nasty Plot", "Psyshock", "Taunt"], "teraTypes": ["Water"] }] }, "annihilape": { "level": 80, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Bulk Up", "Drain Punch", "Rage Fist", "Rest"], "teraTypes": ["Ghost", "Water", "Fairy", "Steel"] }, { "role": "Bulky Attacker", "movepool": ["Bulk Up", "Close Combat", "Rage Fist", "Stone Edge", "U-turn"], "teraTypes": ["Ghost", "Fighting"] }] }, "arcanine": { "level": 84, "sets": [{ "role": "Bulky Attacker", "movepool": ["Close Combat", "Extreme Speed", "Flare Blitz", "Morning Sun", "Roar", "Wild Charge", "Will-O-Wisp"], "teraTypes": ["Fighting", "Normal"] }, { "role": "Fast Attacker", "movepool": ["Close Combat", "Extreme Speed", "Flare Blitz", "Morning Sun", "Wild Charge"], "teraTypes": ["Fighting", "Normal"] }] }, "arcaninehisui": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Extreme Speed", "Flare Blitz", "Head Smash", "Morning Sun", "Wild Charge"], "teraTypes": ["Rock"] }] }, "slowbro": { "level": 84, "sets": [{ "role": "Bulky Attacker", "movepool": ["Calm Mind", "Psyshock", "Slack Off", "Surf", "Thunder Wave"], "teraTypes": ["Water", "Fairy"] }, { "role": "AV Pivot", "movepool": ["Body Press", "Fire Blast", "Future Sight", "Ice Beam", "Psychic", "Surf"], "teraTypes": ["Fighting", "Water"] }] }, "slowbrogalar": { "level": 84, "sets": [{ "role": "AV Pivot", "movepool": ["Earthquake", "Fire Blast", "Foul Play", "Psychic", "Shell Side Arm", "Surf"], "teraTypes": ["Ground", "Water", "Poison", "Dark"] }, { "role": "Wallbreaker", "movepool": ["Fire Blast", "Psyshock", "Sludge Bomb", "Trick", "Trick Room"], "teraTypes": ["Psychic", "Poison"] }] }, "muk": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Fire Punch", "Gunk Shot", "Haze", "Ice Punch", "Shadow Sneak", "Toxic", "Toxic Spikes"], "teraTypes": ["Poison", "Dark"] }] }, "mukalola": { "level": 86, "sets": [{ "role": "AV Pivot", "movepool": ["Fire Punch", "Gunk Shot", "Ice Punch", "Knock Off", "Poison Jab"], "teraTypes": ["Dark"] }] }, "cloyster": { "level": 80, "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": 82, "sets": [{ "role": "Wallbreaker", "movepool": ["Focus Blast", "Nasty Plot", "Shadow Ball", "Sludge Bomb", "Trick"], "teraTypes": ["Ghost"] }, { "role": "Fast Attacker", "movepool": ["Encore", "Focus Blast", "Shadow Ball", "Sludge Bomb", "Toxic Spikes", "Will-O-Wisp"], "teraTypes": ["Ghost"] }] }, "hypno": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Encore", "Focus Blast", "Foul Play", "Light Screen", "Psychic", "Reflect", "Thunder Wave"], "teraTypes": ["Dark", "Steel"] }] }, "electrode": { "level": 88, "sets": [{ "role": "Fast Support", "movepool": ["Explosion", "Foul Play", "Light Screen", "Taunt", "Thunder Wave", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric"] }] }, "electrodehisui": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Chloroblast", "Energy Ball", "Taunt", "Thunder Wave", "Thunderbolt", "Volt Switch"], "teraTypes": ["Grass"] }, { "role": "Fast Support", "movepool": ["Giga Drain", "Leech Seed", "Substitute", "Thunderbolt"], "teraTypes": ["Poison"] }] }, "scyther": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Aerial Ace", "Close Combat", "Pounce", "Swords Dance", "U-turn"], "teraTypes": ["Fighting"] }] }, "tauros": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Body Slam", "Close Combat", "Earthquake", "Rock Slide", "Zen Headbutt"], "teraTypes": ["Normal", "Fighting", "Ground"] }, { "role": "Wallbreaker", "movepool": ["Close Combat", "Double-Edge", "Earthquake", "Stone Edge"], "teraTypes": ["Normal", "Fighting", "Ground"] }] }, "taurospaldea": { "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"] }] }, "taurospaldeafire": { "level": 84, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Bulk Up", "Close Combat", "Raging Bull", "Substitute"], "teraTypes": ["Fire"] }, { "role": "Wallbreaker", "movepool": ["Close Combat", "Flare Blitz", "Stone Edge", "Wild Charge"], "teraTypes": ["Fighting"] }] }, "taurospaldeawater": { "level": 84, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Bulk Up", "Close Combat", "Liquidation", "Substitute"], "teraTypes": ["Water"] }, { "role": "Wallbreaker", "movepool": ["Aqua Jet", "Bulk Up", "Close Combat", "Liquidation", "Stone Edge", "Wave Crash"], "teraTypes": ["Water"] }] }, "gyarados": { "level": 82, "sets": [{ "role": "Setup Sweeper", "movepool": ["Dragon Dance", "Earthquake", "Stone Edge", "Waterfall"], "teraTypes": ["Ground"] }, { "role": "Tera Blast user", "movepool": ["Dragon Dance", "Earthquake", "Tera Blast", "Waterfall"], "teraTypes": ["Flying"] }] }, "ditto": { "level": 88, "sets": [{ "role": "Fast Support", "movepool": ["Transform"], "teraTypes": ["Flying", "Dark", "Fire", "Bug", "Water", "Ice", "Fighting", "Electric", "Psychic", "Poison", "Grass", "Ghost", "Ground", "Rock", "Fairy", "Steel", "Normal", "Dragon"] }] }, "vaporeon": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Calm Mind", "Ice Beam", "Protect", "Surf", "Wish"], "teraTypes": ["Ghost", "Ground"] }] }, "jolteon": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Calm Mind", "Hyper Voice", "Shadow Ball", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric", "Ghost"] }, { "role": "Tera Blast user", "movepool": ["Calm Mind", "Substitute", "Tera Blast", "Thunderbolt"], "teraTypes": ["Ice"] }] }, "flareon": { "level": 86, "sets": [{ "role": "Wallbreaker", "movepool": ["Facade", "Flare Blitz", "Quick Attack", "Trailblaze", "Will-O-Wisp"], "teraTypes": ["Normal"] }] }, "articuno": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Air Slash", "Freeze-Dry", "Haze", "Hurricane", "Roost", "Substitute", "U-turn"], "teraTypes": ["Flying", "Steel"] }] }, "articunogalar": { "level": 86, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Air Slash", "Calm Mind", "Freezing Glare", "Hurricane", "Recover"], "teraTypes": ["Psychic", "Steel"] }] }, "zapdos": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Discharge", "Heat Wave", "Hurricane", "Roost", "U-turn"], "teraTypes": ["Electric"] }] }, "zapdosgalar": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Brave Bird", "Bulk Up", "Close Combat", "Stomping Tantrum", "U-turn"], "teraTypes": ["Fighting"] }] }, "moltres": { "level": 84, "sets": [{ "role": "Bulky Attacker", "movepool": ["Brave Bird", "Fire Blast", "Roost", "U-turn", "Will-O-Wisp"], "teraTypes": ["Fire", "Ground"] }] }, "moltresgalar": { "level": 82, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Agility", "Fiery Wrath", "Hurricane", "Nasty Plot", "Rest"], "teraTypes": ["Dark"] }] }, "dragonite": { "level": 80, "sets": [{ "role": "Bulky Attacker", "movepool": ["Dragon Dance", "Earthquake", "Extreme Speed", "Fire Punch", "Outrage"], "teraTypes": ["Normal"] }, { "role": "Tera Blast user", "movepool": ["Dragon Dance", "Earthquake", "Outrage", "Tera Blast"], "teraTypes": ["Flying"] }] }, "mewtwo": { "level": 72, "sets": [{ "role": "Fast Attacker", "movepool": ["Aura Sphere", "Fire Blast", "Nasty Plot", "Psystrike", "Recover", "Shadow Ball"], "teraTypes": ["Psychic", "Fighting", "Fire", "Ghost"] }] }, "mew": { "level": 80, "sets": [{ "role": "Bulky Support", "movepool": ["Psychic", "Spikes", "Stealth Rock", "Taunt", "Thunder Wave", "Toxic Spikes", "Will-O-Wisp"], "teraTypes": ["Steel", "Fairy"] }, { "role": "Fast Attacker", "movepool": ["Brave Bird", "Close Combat", "Dragon Dance", "Flare Blitz", "Psychic Fangs", "Swords Dance", "U-turn"], "teraTypes": ["Fighting", "Fire"] }, { "role": "Setup Sweeper", "movepool": ["Aura Sphere", "Dazzling Gleam", "Earth Power", "Fire Blast", "Nasty Plot", "Psyshock", "Shadow Ball"], "teraTypes": ["Psychic", "Fighting", "Fire", "Ghost", "Ground", "Fairy"] }] }, "typhlosion": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Eruption", "Fire Blast", "Focus Blast", "Shadow Ball"], "teraTypes": ["Fire", "Ghost"] }] }, "typhlosionhisui": { "level": 86, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Calm Mind", "Flamethrower", "Shadow Ball", "Substitute", "Will-O-Wisp"], "teraTypes": ["Ghost"] }, { "role": "Fast Attacker", "movepool": ["Eruption", "Fire Blast", "Focus Blast", "Shadow Ball"], "teraTypes": ["Fire", "Ghost"] }] }, "ampharos": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Agility", "Dazzling Gleam", "Focus Blast", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric", "Fairy"] }] }, "azumarill": { "level": 82, "sets": [{ "role": "Bulky Setup", "movepool": ["Aqua Jet", "Belly Drum", "Liquidation", "Play Rough"], "teraTypes": ["Water"] }, { "role": "Bulky Attacker", "movepool": ["Aqua Jet", "Ice Spinner", "Liquidation", "Play Rough", "Superpower"], "teraTypes": ["Water"] }] }, "sudowoodo": { "level": 86, "sets": [{ "role": "Bulky Attacker", "movepool": ["Earthquake", "Head Smash", "Spikes", "Stealth Rock", "Sucker Punch", "Wood Hammer"], "teraTypes": ["Rock", "Grass"] }] }, "jumpluff": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Acrobatics", "Leech Seed", "Strength Sap", "Substitute"], "teraTypes": ["Steel"] }, { "role": "Fast Support", "movepool": ["Acrobatics", "Encore", "Sleep Powder", "Strength Sap", "U-turn"], "teraTypes": ["Steel"] }] }, "sunflora": { "level": 90, "sets": [{ "role": "Wallbreaker", "movepool": ["Dazzling Gleam", "Earth Power", "Leaf Storm", "Sludge Bomb"], "teraTypes": ["Grass", "Ground", "Fairy", "Poison"] }] }, "quagsire": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Ice Beam", "Liquidation", "Recover", "Spikes", "Toxic"], "teraTypes": ["Poison", "Steel", "Ground", "Fairy"] }] }, "clodsire": { "level": 80, "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": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Calm Mind", "Dazzling Gleam", "Morning Sun", "Psychic", "Shadow Ball", "Trick"], "teraTypes": ["Fairy", "Psychic"] }] }, "umbreon": { "level": 86, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Dark Pulse", "Protect", "Wish"], "teraTypes": ["Poison"] }, { "role": "Bulky Support", "movepool": ["Foul Play", "Protect", "Thunder Wave", "Wish", "Yawn"], "teraTypes": ["Poison"] }] }, "slowking": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Chilly Reception", "Psyshock", "Slack Off", "Surf", "Thunder Wave"], "teraTypes": ["Water", "Fairy", "Dragon"] }, { "role": "Wallbreaker", "movepool": ["Fire Blast", "Hydro Pump", "Ice Beam", "Psychic", "Psyshock", "Trick", "Trick Room"], "teraTypes": ["Water", "Psychic"] }] }, "slowkinggalar": { "level": 82, "sets": [{ "role": "Bulky Support", "movepool": ["Chilly Reception", "Fire Blast", "Psyshock", "Slack Off", "Sludge Bomb", "Thunder Wave"], "teraTypes": ["Poison", "Dark"] }, { "role": "AV Pivot", "movepool": ["Fire Blast", "Future Sight", "Ice Beam", "Psyshock", "Sludge Bomb"], "teraTypes": ["Poison", "Psychic"] }] }, "girafarig": { "level": 88, "sets": [{ "role": "Bulky Setup", "movepool": ["Dazzling Gleam", "Nasty Plot", "Psychic", "Psyshock", "Shadow Ball", "Thunderbolt"], "teraTypes": ["Psychic", "Fairy", "Electric"] }] }, "forretress": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Body Press", "Iron Head", "Rapid Spin", "Spikes", "Stealth Rock", "Volt Switch"], "teraTypes": ["Fighting", "Water"] }] }, "dunsparce": { "level": 88, "sets": [{ "role": "Bulky Setup", "movepool": ["Body Slam", "Coil", "Earthquake", "Roost"], "teraTypes": ["Ground"] }] }, "qwilfish": { "level": 86, "sets": [{ "role": "Fast Support", "movepool": ["Destiny Bond", "Gunk Shot", "Spikes", "Taunt", "Thunder Wave", "Toxic Spikes", "Waterfall"], "teraTypes": ["Water", "Dark"] }] }, "qwilfishhisui": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Crunch", "Gunk Shot", "Spikes", "Taunt", "Toxic Spikes"], "teraTypes": ["Poison", "Flying"] }] }, "overqwil": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Aqua Jet", "Crunch", "Gunk Shot", "Liquidation", "Swords Dance"], "teraTypes": ["Water"] }] }, "scizor": { "level": 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": 88, "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": ["Destiny Bond", "Freeze-Dry", "Memento", "Rapid Spin", "Spikes"], "teraTypes": ["Ghost"] }] }, "houndoom": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Dark Pulse", "Fire Blast", "Flamethrower", "Nasty Plot", "Sludge Bomb", "Sucker Punch"], "teraTypes": ["Dark", "Poison"] }] }, "donphan": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Ice Spinner", "Knock Off", "Rapid Spin", "Stealth Rock"], "teraTypes": ["Dark", "Ground"] }, { "role": "Bulky Attacker", "movepool": ["Earthquake", "Gunk Shot", "Ice Shard", "Ice Spinner", "Knock Off", "Rapid Spin", "Stone Edge"], "teraTypes": ["Ice", "Poison", "Dark"] }] }, "blissey": { "level": 82, "sets": [{ "role": "Bulky Support", "movepool": ["Seismic Toss", "Soft-Boiled", "Stealth Rock", "Thunder Wave"], "teraTypes": ["Steel", "Fairy", "Ghost", "Poison"] }] }, "tyranitar": { "level": 80, "sets": [{ "role": "Bulky Setup", "movepool": ["Crunch", "Dragon Dance", "Earthquake", "Fire Punch", "Stone Edge"], "teraTypes": ["Rock", "Ghost"] }, { "role": "Bulky Support", "movepool": ["Crunch", "Earthquake", "Fire Blast", "Ice Beam", "Stealth Rock", "Stone Edge", "Thunder Wave"], "teraTypes": ["Rock", "Poison"] }] }, "pelipper": { "level": 82, "sets": [{ "role": "Bulky Attacker", "movepool": ["Hurricane", "Hydro Pump", "Ice Beam", "Knock Off", "Roost", "Surf", "U-turn"], "teraTypes": ["Water", "Ground"] }, { "role": "Wallbreaker", "movepool": ["Hurricane", "Hydro Pump", "Ice Beam", "Surf", "U-turn"], "teraTypes": ["Water", "Flying"] }] }, "gardevoir": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Calm Mind", "Focus Blast", "Healing Wish", "Moonblast", "Mystical Fire", "Psychic", "Psyshock", "Trick"], "teraTypes": ["Fairy", "Fire", "Fighting"] }] }, "masquerain": { "level": 88, "sets": [{ "role": "Setup Sweeper", "movepool": ["Bug Buzz", "Hurricane", "Hydro Pump", "Quiver Dance"], "teraTypes": ["Water"] }, { "role": "Fast Support", "movepool": ["Bug Buzz", "Hurricane", "Hydro Pump", "Ice Beam", "Sticky Web", "Stun Spore", "U-turn"], "teraTypes": ["Ground", "Steel"] }] }, "breloom": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Bullet Seed", "Close Combat", "Mach Punch", "Rock Tomb", "Spore", "Swords Dance"], "teraTypes": ["Fighting"] }] }, "slaking": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Body Slam", "Earthquake", "Fire Punch", "Giga Impact", "Hammer Arm", "Throat Chop"], "teraTypes": ["Normal", "Ground"] }] }, "hariyama": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Bulk Up", "Bullet Punch", "Close Combat", "Facade", "Headlong Rush", "Knock Off"], "teraTypes": ["Normal"] }, { "role": "AV Pivot", "movepool": ["Bullet Punch", "Close Combat", "Headlong Rush", "Heavy Slam", "Knock Off"], "teraTypes": ["Steel"] }] }, "sableye": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Encore", "Foul Play", "Knock Off", "Recover", "Taunt", "Thunder Wave", "Will-O-Wisp"], "teraTypes": ["Steel"] }] }, "medicham": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Bullet Punch", "Close Combat", "Ice Punch", "Poison Jab", "Zen Headbutt"], "teraTypes": ["Fighting"] }] }, "swalot": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Encore", "Ice Beam", "Pain Split", "Protect", "Sludge Bomb", "Toxic", "Toxic Spikes"], "teraTypes": ["Dark"] }, { "role": "Bulky Setup", "movepool": ["Earthquake", "Gunk Shot", "Seed Bomb", "Swords Dance"], "teraTypes": ["Poison", "Ground"] }] }, "camerupt": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Lava Plume", "Stealth Rock", "Yawn"], "teraTypes": ["Water"] }] }, "torkoal": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Lava Plume", "Rapid Spin", "Solar Beam", "Stealth Rock", "Yawn"], "teraTypes": ["Dragon", "Fire"] }] }, "grumpig": { "level": 88, "sets": [{ "role": "Bulky Attacker", "movepool": ["Dazzling Gleam", "Earth Power", "Focus Blast", "Nasty Plot", "Psychic", "Psyshock", "Shadow Ball", "Trick"], "teraTypes": ["Psychic", "Fairy", "Ground", "Ghost", "Fighting"] }] }, "cacturne": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Dark Pulse", "Focus Blast", "Leaf Storm", "Sucker Punch", "Toxic Spikes"], "teraTypes": ["Dark", "Poison", "Grass"] }, { "role": "Setup Sweeper", "movepool": ["Drain Punch", "Seed Bomb", "Sucker Punch", "Swords Dance"], "teraTypes": ["Dark", "Fighting"] }] }, "altaria": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Brave Bird", "Defog", "Earthquake", "Haze", "Roost", "Will-O-Wisp"], "teraTypes": ["Steel"] }, { "role": "Bulky Setup", "movepool": ["Brave Bird", "Dragon Dance", "Earthquake", "Roost"], "teraTypes": ["Flying", "Ground"] }] }, "zangoose": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Facade", "Night Slash", "Quick Attack", "Swords Dance"], "teraTypes": ["Normal"] }] }, "seviper": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Earthquake", "Flamethrower", "Giga Drain", "Glare", "Gunk Shot", "Switcheroo"], "teraTypes": ["Ground", "Fire", "Poison", "Grass"] }] }, "whiscash": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Liquidation", "Spikes", "Stealth Rock", "Stone Edge"], "teraTypes": ["Ground", "Steel"] }, { "role": "Setup Sweeper", "movepool": ["Dragon Dance", "Earthquake", "Liquidation", "Stone Edge"], "teraTypes": ["Ground", "Water"] }] }, "banette": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Gunk Shot", "Knock Off", "Shadow Claw", "Shadow Sneak", "Swords Dance", "Thunder Wave", "Will-O-Wisp"], "teraTypes": ["Poison", "Dark"] }] }, "tropius": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Air Slash", "Leech Seed", "Protect", "Substitute"], "teraTypes": ["Steel"] }] }, "glalie": { "level": 80, "sets": [{ "role": "Fast Support", "movepool": ["Disable", "Earthquake", "Freeze-Dry", "Protect", "Substitute"], "teraTypes": ["Poison", "Steel", "Water"] }] }, "luvdisc": { "level": 100, "sets": [{ "role": "Bulky Support", "movepool": ["Charm", "Ice Beam", "Protect", "Surf", "Wish"], "teraTypes": ["Dragon", "Ghost"] }] }, "salamence": { "level": 82, "sets": [{ "role": "Setup Sweeper", "movepool": ["Dragon Dance", "Dual Wingbeat", "Earthquake", "Outrage", "Roost"], "teraTypes": ["Flying", "Ground", "Dragon"] }] }, "kyogre": { "level": 72, "sets": [{ "role": "Bulky Attacker", "movepool": ["Calm Mind", "Ice Beam", "Origin Pulse", "Thunder", "Water Spout"], "teraTypes": ["Water"] }] }, "groudon": { "level": 74, "sets": [{ "role": "Bulky Attacker", "movepool": ["Lava Plume", "Precipice Blades", "Spikes", "Stealth Rock", "Stone Edge", "Thunder Wave"], "teraTypes": ["Fire", "Dragon", "Water", "Ghost"] }, { "role": "Bulky Setup", "movepool": ["Fire Punch", "Precipice Blades", "Stone Edge", "Swords Dance", "Thunder Wave"], "teraTypes": ["Ground", "Fire"] }] }, "rayquaza": { "level": 72, "sets": [{ "role": "Fast Attacker", "movepool": ["Dragon Ascent", "Dragon Dance", "Earthquake", "Extreme Speed", "Swords Dance", "U-turn"], "teraTypes": ["Flying", "Normal"] }] }, "staraptor": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Brave Bird", "Close Combat", "Double-Edge", "Quick Attack", "U-turn"], "teraTypes": ["Fighting", "Flying"] }] }, "kricketune": { "level": 90, "sets": [{ "role": "Fast Support", "movepool": ["Brick Break", "Pounce", "Sticky Web", "Taunt"], "teraTypes": ["Ghost"] }] }, "luxray": { "level": 86, "sets": [{ "role": "Wallbreaker", "movepool": ["Crunch", "Facade", "Play Rough", "Trailblaze", "Wild Charge"], "teraTypes": ["Normal"] }, { "role": "AV Pivot", "movepool": ["Crunch", "Ice Fang", "Play Rough", "Volt Switch", "Wild Charge"], "teraTypes": ["Electric", "Fairy"] }] }, "vespiquen": { "level": 90, "sets": [{ "role": "Bulky Support", "movepool": ["Air Slash", "Roost", "Spikes", "Toxic", "Toxic Spikes", "U-turn"], "teraTypes": ["Steel"] }] }, "pachirisu": { "level": 94, "sets": [{ "role": "AV Pivot", "movepool": ["Nuzzle", "Super Fang", "Thunderbolt", "U-turn"], "teraTypes": ["Flying"] }] }, "floatzel": { "level": 86, "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": ["Ground", "Steel", "Poison"] }] }, "drifblim": { "level": 86, "sets": [{ "role": "Fast Support", "movepool": ["Air Slash", "Defog", "Shadow Ball", "Strength Sap", "Will-O-Wisp"], "teraTypes": ["Ghost", "Fairy"] }, { "role": "Fast Bulky Setup", "movepool": ["Air Slash", "Calm Mind", "Shadow Ball", "Strength Sap"], "teraTypes": ["Ghost", "Fairy"] }] }, "mismagius": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Dazzling Gleam", "Energy Ball", "Mystical Fire", "Nasty Plot", "Shadow Ball", "Thunderbolt", "Trick"], "teraTypes": ["Ghost", "Fire", "Fairy", "Electric"] }] }, "honchkrow": { "level": 86, "sets": [{ "role": "Wallbreaker", "movepool": ["Brave Bird", "Heat Wave", "Sucker Punch", "U-turn"], "teraTypes": ["Dark", "Flying"] }] }, "skuntank": { "level": 88, "sets": [{ "role": "Fast Support", "movepool": ["Crunch", "Fire Blast", "Gunk Shot", "Sucker Punch", "Taunt", "Toxic Spikes"], "teraTypes": ["Dark", "Poison"] }] }, "bronzong": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Hypnosis", "Iron Head", "Light Screen", "Psychic", "Reflect", "Stealth Rock"], "teraTypes": ["Water", "Electric"] }] }, "spiritomb": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Foul Play", "Pain Split", "Shadow Sneak", "Sucker Punch", "Will-O-Wisp"], "teraTypes": ["Dark"] }, { "role": "Bulky Setup", "movepool": ["Calm Mind", "Dark Pulse", "Rest", "Sleep Talk"], "teraTypes": ["Dark", "Steel"] }] }, "garchomp": { "level": 80, "sets": [{ "role": "Fast Support", "movepool": ["Draco Meteor", "Earthquake", "Fire Blast", "Stealth Rock", "Stone Edge"], "teraTypes": ["Ground", "Steel"] }, { "role": "Fast Attacker", "movepool": ["Earthquake", "Fire Fang", "Outrage", "Stone Edge", "Swords Dance"], "teraTypes": ["Ground", "Dragon"] }] }, "lucario": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Extreme Speed", "Meteor Mash", "Stone Edge", "Swords Dance"], "teraTypes": ["Normal", "Fighting", "Steel"] }, { "role": "Setup Sweeper", "movepool": ["Aura Sphere", "Dark Pulse", "Flash Cannon", "Focus Blast", "Nasty Plot", "Vacuum Wave"], "teraTypes": ["Fighting"] }] }, "hippowdon": { "level": 82, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Slack Off", "Stealth Rock", "Stone Edge", "Whirlwind", "Yawn"], "teraTypes": ["Fairy", "Rock", "Steel"] }] }, "toxicroak": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Gunk Shot", "Ice Punch", "Sucker Punch", "Swords Dance"], "teraTypes": ["Dark", "Fighting"] }, { "role": "Setup Sweeper", "movepool": ["Dark Pulse", "Focus Blast", "Nasty Plot", "Sludge Bomb", "Vacuum Wave"], "teraTypes": ["Dark", "Fighting", "Poison"] }] }, "lumineon": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Dazzling Gleam", "Encore", "Hydro Pump", "Ice Beam", "U-turn"], "teraTypes": ["Water", "Fairy"] }] }, "abomasnow": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Aurora Veil", "Blizzard", "Earthquake", "Ice Shard", "Wood Hammer"], "teraTypes": ["Ice"] }] }, "weavile": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Ice Shard", "Ice Spinner", "Low Kick", "Night Slash", "Swords Dance"], "teraTypes": ["Ice", "Fighting"] }] }, "sneasler": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Dire Claw", "Gunk Shot", "Night Slash", "U-turn"], "teraTypes": ["Dark", "Fighting"] }, { "role": "Setup Sweeper", "movepool": ["Acrobatics", "Close Combat", "Gunk Shot", "Swords Dance"], "teraTypes": ["Flying"] }] }, "magnezone": { "level": 84, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Press", "Flash Cannon", "Mirror Coat", "Steel Beam", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric", "Water", "Flying"] }, { "role": "Tera Blast user", "movepool": ["Flash Cannon", "Tera Blast", "Thunderbolt", "Volt Switch"], "teraTypes": ["Fire"] }] }, "leafeon": { "level": 86, "sets": [{ "role": "Setup Sweeper", "movepool": ["Double-Edge", "Leaf Blade", "Substitute", "Swords Dance", "Synthesis", "X-Scissor"], "teraTypes": ["Normal"] }] }, "glaceon": { "level": 88, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Freeze-Dry", "Protect", "Wish"], "teraTypes": ["Water"] }] }, "gallade": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Leaf Blade", "Night Slash", "Psycho Cut", "Sacred Sword", "Swords Dance"], "teraTypes": ["Fighting", "Grass", "Dark"] }] }, "froslass": { "level": 86, "sets": [{ "role": "Fast Support", "movepool": ["Destiny Bond", "Ice Beam", "Shadow Ball", "Spikes", "Taunt", "Will-O-Wisp"], "teraTypes": ["Ghost"] }] }, "rotom": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Nasty Plot", "Shadow Ball", "Thunderbolt", "Trick", "Volt Switch", "Will-O-Wisp"], "teraTypes": ["Ghost", "Electric"] }] }, "rotomwash": { "level": 82, "sets": [{ "role": "Bulky Attacker", "movepool": ["Discharge", "Hydro Pump", "Nasty Plot", "Trick", "Volt Switch", "Will-O-Wisp"], "teraTypes": ["Water", "Electric"] }] }, "rotomheat": { "level": 82, "sets": [{ "role": "Bulky Attacker", "movepool": ["Nasty Plot", "Overheat", "Thunderbolt", "Trick", "Volt Switch", "Will-O-Wisp"], "teraTypes": ["Fire", "Electric"] }] }, "rotomfrost": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Blizzard", "Nasty Plot", "Thunderbolt", "Volt Switch", "Will-O-Wisp"], "teraTypes": ["Electric"] }] }, "rotomfan": { "level": 86, "sets": [{ "role": "Bulky Attacker", "movepool": ["Air Slash", "Nasty Plot", "Thunderbolt", "Volt Switch", "Will-O-Wisp"], "teraTypes": ["Electric"] }] }, "rotommow": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Leaf Storm", "Nasty Plot", "Thunderbolt", "Trick", "Volt Switch", "Will-O-Wisp"], "teraTypes": ["Grass", "Electric"] }] }, "uxie": { "level": 88, "sets": [{ "role": "Fast Support", "movepool": ["Encore", "Light Screen", "Psychic", "Reflect", "Stealth Rock", "Thunder Wave", "U-turn", "Yawn"], "teraTypes": ["Steel", "Electric"] }] }, "mesprit": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Dazzling Gleam", "Energy Ball", "Healing Wish", "Ice Beam", "Nasty Plot", "Psychic", "Thunderbolt", "Trick", "U-turn"], "teraTypes": ["Psychic", "Fairy", "Electric"] }] }, "azelf": { "level": 82, "sets": [{ "role": "Fast Support", "movepool": ["Explosion", "Fire Blast", "Psychic", "Stealth Rock", "Taunt", "U-turn"], "teraTypes": ["Psychic", "Fire"] }, { "role": "Fast Attacker", "movepool": ["Dazzling Gleam", "Energy Ball", "Fire Blast", "Nasty Plot", "Psychic", "Psyshock", "Trick", "U-turn"], "teraTypes": ["Psychic", "Fairy", "Fire"] }] }, "dialga": { "level": 76, "sets": [{ "role": "Bulky Attacker", "movepool": ["Draco Meteor", "Fire Blast", "Flash Cannon", "Stealth Rock", "Thunder Wave", "Thunderbolt", "Trick"], "teraTypes": ["Dragon", "Steel", "Fire"] }] }, "dialgaorigin": { "level": 76, "sets": [{ "role": "Bulky Attacker", "movepool": ["Draco Meteor", "Fire Blast", "Flash Cannon", "Stealth Rock", "Thunder Wave"], "teraTypes": ["Dragon", "Steel", "Fire"] }] }, "palkia": { "level": 76, "sets": [{ "role": "Fast Attacker", "movepool": ["Draco Meteor", "Fire Blast", "Hydro Pump", "Spacial Rend"], "teraTypes": ["Dragon", "Water"] }, { "role": "Bulky Attacker", "movepool": ["Draco Meteor", "Fire Blast", "Hydro Pump", "Spacial Rend", "Thunder Wave"], "teraTypes": ["Dragon", "Water"] }] }, "palkiaorigin": { "level": 76, "sets": [{ "role": "Bulky Attacker", "movepool": ["Draco Meteor", "Fire Blast", "Hydro Pump", "Spacial Rend", "Thunder Wave"], "teraTypes": ["Dragon", "Water"] }] }, "heatran": { "level": 80, "sets": [{ "role": "Bulky Support", "movepool": ["Earth Power", "Flash Cannon", "Lava Plume", "Magma Storm", "Stealth Rock"], "teraTypes": ["Flying", "Grass", "Steel"] }] }, "giratina": { "level": 76, "sets": [{ "role": "Bulky Support", "movepool": ["Dragon Tail", "Rest", "Shadow Ball", "Sleep Talk", "Will-O-Wisp"], "teraTypes": ["Ghost"] }, { "role": "Bulky Setup", "movepool": ["Calm Mind", "Dragon Pulse", "Rest", "Sleep Talk"], "teraTypes": ["Dragon"] }] }, "giratinaorigin": { "level": 76, "sets": [{ "role": "Bulky Support", "movepool": ["Defog", "Draco Meteor", "Dragon Tail", "Earthquake", "Outrage", "Shadow Ball", "Shadow Sneak", "Will-O-Wisp"], "teraTypes": ["Dragon", "Ghost"] }] }, "cresselia": { "level": 84, "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", "Fire Blast", "Judgment", "Recover"], "teraTypes": ["Ground"] }] }, "arceusdark": { "level": 70, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Fire Blast", "Judgment", "Recover", "Sludge Bomb"], "teraTypes": ["Dark"] }] }, "arceusdragon": { "level": 70, "sets": [{ "role": "Setup Sweeper", "movepool": ["Earthquake", "Extreme Speed", "Gunk Shot", "Outrage", "Swords Dance"], "teraTypes": ["Dragon"] }] }, "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"] }] }, "arceusfighting": { "level": 70, "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"] }] }, "arceusflying": { "level": 72, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Earth Power", "Fire Blast", "Judgment", "Recover"], "teraTypes": ["Flying", "Ground"] }] }, "arceusghost": { "level": 70, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Focus Blast", "Judgment", "Recover"], "teraTypes": ["Fighting"] }] }, "arceusgrass": { "level": 72, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Earth Power", "Fire Blast", "Judgment", "Recover"], "teraTypes": ["Grass"] }] }, "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", "Ice"] }] }, "arceuspoison": { "level": 72, "sets": [{ "role": "Setup Sweeper", "movepool": ["Earthquake", "Flare Blitz", "Gunk Shot", "Liquidation", "Recover", "Swords Dance"], "teraTypes": ["Poison"] }] }, "arceuspsychic": { "level": 70, "sets": [{ "role": "Bulky Setup", "movepool": ["Body Press", "Cosmic Power", "Recover", "Stored Power"], "teraTypes": ["Steel"] }] }, "arceusrock": { "level": 70, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Earth Power", "Fire Blast", "Ice Beam", "Judgment", "Recover"], "teraTypes": ["Ground", "Rock"] }] }, "arceussteel": { "level": 70, "sets": [{ "role": "Setup Sweeper", "movepool": ["Calm Mind", "Earth Power", "Judgment", "Recover", "Will-O-Wisp"], "teraTypes": ["Ghost"] }] }, "arceuswater": { "level": 70, "sets": [{ "role": "Bulky Support", "movepool": ["Judgment", "Recover", "Taunt", "Will-O-Wisp"], "teraTypes": ["Steel"] }] }, "samurott": { "level": 88, "sets": [{ "role": "AV Pivot", "movepool": ["Aqua Jet", "Grass Knot", "Hydro Pump", "Ice Beam", "Knock Off", "Megahorn", "Sacred Sword"], "teraTypes": ["Water", "Dark"] }, { "role": "Fast Attacker", "movepool": ["Aqua Jet", "Knock Off", "Liquidation", "Megahorn", "Sacred Sword", "Swords Dance"], "teraTypes": ["Water", "Dark"] }] }, "samurotthisui": { "level": 86, "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": 76, "sets": [{ "role": "Fast Attacker", "movepool": ["Agility", "Last Respects", "Psychic Fangs", "Wave Crash"], "teraTypes": ["Ghost"] }] }, "basculegionf": { "level": 76, "sets": [{ "role": "Wallbreaker", "movepool": ["Agility", "Hydro Pump", "Ice Beam", "Last Respects"], "teraTypes": ["Ghost"] }] }, "krookodile": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Bulk Up", "Crunch", "Earthquake", "Gunk Shot", "Stealth Rock", "Stone Edge"], "teraTypes": ["Poison", "Ground"] }] }, "zoroark": { "sets": [{ "role": "Fast Attacker", "movepool": ["Dark Pulse", "Flamethrower", "Focus Blast", "Nasty Plot", "Sludge Bomb", "Trick", "U-turn"], "teraTypes": ["Poison"] }] }, "zoroarkhisui": { "sets": [{ "role": "Wallbreaker", "movepool": ["Bitter Malice", "Flamethrower", "Focus Blast", "Hyper Voice", "Nasty Plot", "Shadow Ball", "Trick", "U-turn"], "teraTypes": ["Normal"] }] }, "gothitelle": { "level": 82, "sets": [{ "role": "Bulky Attacker", "movepool": ["Nasty Plot", "Psychic", "Shadow Ball", "Thunderbolt", "Trick"], "teraTypes": ["Psychic", "Ghost", "Electric"] }] }, "sawsbuck": { "level": 88, "sets": [{ "role": "Setup Sweeper", "movepool": ["Double-Edge", "Headbutt", "Horn Leech", "Stomping Tantrum", "Swords Dance"], "teraTypes": ["Normal"] }] }, "amoonguss": { "level": 80, "sets": [{ "role": "Bulky Support", "movepool": ["Clear Smog", "Giga Drain", "Sludge Bomb", "Spore", "Toxic"], "teraTypes": ["Steel", "Water"] }] }, "alomomola": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Body Slam", "Liquidation", "Mirror Coat", "Protect", "Wish"], "teraTypes": ["Steel"] }] }, "eelektross": { "level": 86, "sets": [{ "role": "Bulky Setup", "movepool": ["Coil", "Drain Punch", "Fire Punch", "Liquidation", "Wild Charge"], "teraTypes": ["Electric", "Fighting"] }, { "role": "AV Pivot", "movepool": ["Close Combat", "Flamethrower", "Giga Drain", "Thunderbolt", "U-turn"], "teraTypes": ["Electric"] }] }, "haxorus": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Dragon Dance", "Earthquake", "Outrage", "Poison Jab"], "teraTypes": ["Fighting", "Ground"] }] }, "beartic": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Aqua Jet", "Close Combat", "Earthquake", "Icicle Crash", "Snowscape", "Swords Dance"], "teraTypes": ["Fighting", "Ice", "Ground"] }] }, "cryogonal": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Flash Cannon", "Freeze-Dry", "Haze", "Rapid Spin", "Recover"], "teraTypes": ["Steel"] }] }, "braviary": { "level": 86, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Brave Bird", "Bulk Up", "Close Combat", "Roost"], "teraTypes": ["Flying", "Fighting"] }] }, "braviaryhisui": { "level": 80, "sets": [{ "role": "Fast Support", "movepool": ["Calm Mind", "Defog", "Heat Wave", "Hurricane", "Psychic"], "teraTypes": ["Psychic", "Flying"] }, { "role": "Wallbreaker", "movepool": ["Calm Mind", "Esper Wing", "Heat Wave", "Hurricane", "U-turn"], "teraTypes": ["Psychic", "Flying"] }] }, "hydreigon": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Dark Pulse", "Draco Meteor", "Fire Blast", "Flash Cannon", "Nasty Plot", "U-turn"], "teraTypes": ["Dark", "Dragon", "Fire", "Steel"] }] }, "volcarona": { "level": 80, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Bug Buzz", "Fiery Dance", "Fire Blast", "Giga Drain", "Morning Sun", "Quiver Dance"], "teraTypes": ["Fire", "Grass", "Water"] }] }, "tornadus": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Bleakwind Storm", "Focus Blast", "Grass Knot", "Heat Wave", "Nasty Plot", "U-turn"], "teraTypes": ["Flying", "Fire"] }] }, "tornadustherian": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Bleakwind Storm", "Focus Blast", "Grass Knot", "Heat Wave", "Nasty Plot", "U-turn"], "teraTypes": ["Flying", "Fire"] }] }, "thundurus": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Focus Blast", "Grass Knot", "Nasty Plot", "Sludge Bomb", "Taunt", "Thunder Wave", "Thunderbolt", "U-turn"], "teraTypes": ["Electric", "Grass"] }, { "role": "Tera Blast user", "movepool": ["Focus Blast", "Nasty Plot", "Tera Blast", "Thunderbolt"], "teraTypes": ["Flying"] }] }, "thundurustherian": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Focus Blast", "Grass Knot", "Nasty Plot", "Psychic", "Sludge Bomb", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric", "Psychic", "Poison"] }, { "role": "Tera Blast user", "movepool": ["Focus Blast", "Nasty Plot", "Tera Blast", "Thunderbolt"], "teraTypes": ["Flying"] }] }, "landorus": { "level": 76, "sets": [{ "role": "Fast Attacker", "movepool": ["Earth Power", "Focus Blast", "Nasty Plot", "Psychic", "Rock Slide", "Sludge Bomb", "Stealth Rock"], "teraTypes": ["Ground", "Psychic", "Poison"] }] }, "landorustherian": { "level": 80, "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": 86, "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": 80, "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": 84, "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": 86, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Moonblast", "Protect", "Wish"], "teraTypes": ["Fairy", "Steel"] }] }, "gogoat": { "level": 88, "sets": [{ "role": "Bulky Setup", "movepool": ["Bulk Up", "Earthquake", "Horn Leech", "Milk Drink"], "teraTypes": ["Ground"] }] }, "dragalge": { "level": 84, "sets": [{ "role": "Bulky Attacker", "movepool": ["Draco Meteor", "Focus Blast", "Sludge Bomb", "Thunderbolt", "Toxic", "Toxic Spikes"], "teraTypes": ["Dragon", "Poison"] }] }, "clawitzer": { "level": 86, "sets": [{ "role": "Wallbreaker", "movepool": ["Aura Sphere", "Dark Pulse", "Dragon Pulse", "U-turn", "Water Pulse"], "teraTypes": ["Dark", "Dragon", "Fighting"] }] }, "sylveon": { "level": 82, "sets": [{ "role": "Bulky Setup", "movepool": ["Calm Mind", "Hyper Voice", "Protect", "Wish"], "teraTypes": ["Fairy", "Steel"] }, { "role": "Tera Blast user", "movepool": ["Calm Mind", "Hyper Voice", "Tera Blast", "Trailblaze"], "teraTypes": ["Ground"] }] }, "hawlucha": { "level": 82, "sets": [{ "role": "Setup Sweeper", "movepool": ["Acrobatics", "Brave Bird", "Close Combat", "Stone Edge", "Swords Dance"], "teraTypes": ["Fighting", "Flying"] }] }, "dedenne": { "level": 88, "sets": [{ "role": "Fast Support", "movepool": ["Dazzling Gleam", "Nuzzle", "Super Fang", "Thunderbolt", "U-turn"], "teraTypes": ["Electric"] }] }, "carbink": { "level": 88, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Press", "Moonblast", "Power Gem", "Spikes", "Stealth Rock"], "teraTypes": ["Fighting"] }, { "role": "Bulky Support", "movepool": ["Body Press", "Light Screen", "Moonblast", "Reflect", "Stealth Rock"], "teraTypes": ["Fighting"] }] }, "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": 86, "sets": [{ "role": "AV Pivot", "movepool": ["Draco Meteor", "Dragon Tail", "Earthquake", "Fire Blast", "Heavy Slam", "Hydro Pump", "Thunderbolt"], "teraTypes": ["Dragon", "Ground", "Fire", "Steel", "Water", "Electric"] }, { "role": "Bulky Setup", "movepool": ["Body Press", "Curse", "Heavy Slam", "Rest"], "teraTypes": ["Fighting"] }] }, "klefki": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Foul Play", "Magnet Rise", "Play Rough", "Spikes", "Thunder Wave"], "teraTypes": ["Water"] }] }, "avalugg": { "level": 86, "sets": [{ "role": "Bulky Attacker", "movepool": ["Avalanche", "Body Press", "Curse", "Rapid Spin", "Recover"], "teraTypes": ["Fighting"] }] }, "avalugghisui": { "level": 88, "sets": [{ "role": "Bulky Attacker", "movepool": ["Avalanche", "Body Press", "Curse", "Recover", "Stone Edge"], "teraTypes": ["Poison", "Flying"] }] }, "noivern": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Boomburst", "Draco Meteor", "Flamethrower", "Hurricane", "Roost", "U-turn"], "teraTypes": ["Normal"] }, { "role": "Fast Support", "movepool": ["Defog", "Draco Meteor", "Flamethrower", "Hurricane", "Roost", "U-turn"], "teraTypes": ["Fire"] }] }, "diancie": { "level": 84, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Press", "Diamond Storm", "Earth Power", "Moonblast", "Stealth Rock"], "teraTypes": ["Fighting"] }] }, "hoopa": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Focus Blast", "Nasty Plot", "Psyshock", "Shadow Ball", "Substitute", "Trick"], "teraTypes": ["Psychic", "Ghost", "Fighting"] }] }, "hoopaunbound": { "level": 80, "sets": [{ "role": "Wallbreaker", "movepool": ["Drain Punch", "Gunk Shot", "Hyperspace Fury", "Trick", "Zen Headbutt"], "teraTypes": ["Dark", "Fighting", "Poison"] }, { "role": "Fast Attacker", "movepool": ["Dark Pulse", "Focus Blast", "Nasty Plot", "Psyshock", "Trick"], "teraTypes": ["Dark", "Fighting", "Psychic"] }, { "role": "AV Pivot", "movepool": ["Focus Blast", "Gunk Shot", "Hyperspace Fury", "Psychic"], "teraTypes": ["Dark", "Fighting", "Psychic", "Poison"] }] }, "volcanion": { "level": 82, "sets": [{ "role": "Bulky Attacker", "movepool": ["Earth Power", "Flame Charge", "Flamethrower", "Sludge Bomb", "Steam Eruption"], "teraTypes": ["Water", "Fire"] }] }, "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": 86, "sets": [{ "role": "Bulky Attacker", "movepool": ["Leaf Blade", "Sucker Punch", "Swords Dance", "Synthesis", "Triple Arrows", "U-turn"], "teraTypes": ["Fighting", "Steel"] }] }, "gumshoos": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Body Slam", "Crunch", "Earthquake", "Psychic Fangs", "U-turn"], "teraTypes": ["Ground"] }] }, "crabominable": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Close Combat", "Drain Punch", "Earthquake", "Gunk Shot", "Ice Hammer"], "teraTypes": ["Fighting", "Ground"] }] }, "oricorio": { "level": 82, "sets": [{ "role": "Setup Sweeper", "movepool": ["Hurricane", "Quiver Dance", "Revelation Dance", "Roost", "Substitute"], "teraTypes": ["Ground"] }, { "role": "Fast Support", "movepool": ["Defog", "Hurricane", "Revelation Dance", "Roost", "U-turn"], "teraTypes": ["Ground"] }] }, "oricoriopompom": { "level": 82, "sets": [{ "role": "Setup Sweeper", "movepool": ["Hurricane", "Quiver Dance", "Revelation Dance", "Roost", "Substitute"], "teraTypes": ["Electric", "Ground"] }, { "role": "Fast Support", "movepool": ["Defog", "Hurricane", "Revelation Dance", "Roost", "U-turn"], "teraTypes": ["Electric"] }] }, "oricoriopau": { "level": 82, "sets": [{ "role": "Setup Sweeper", "movepool": ["Hurricane", "Quiver Dance", "Revelation Dance", "Roost", "Substitute"], "teraTypes": ["Ground"] }, { "role": "Fast Support", "movepool": ["Defog", "Hurricane", "Revelation Dance", "Roost", "U-turn"], "teraTypes": ["Ground"] }] }, "oricoriosensu": { "level": 82, "sets": [{ "role": "Setup Sweeper", "movepool": ["Hurricane", "Quiver Dance", "Revelation Dance", "Roost", "Substitute"], "teraTypes": ["Ghost", "Fighting"] }, { "role": "Fast Support", "movepool": ["Defog", "Hurricane", "Revelation Dance", "Roost", "U-turn"], "teraTypes": ["Ghost"] }] }, "lycanroc": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Accelerock", "Close Combat", "Crunch", "Drill Run", "Psychic Fangs", "Stealth Rock", "Stone Edge", "Swords Dance", "Taunt"], "teraTypes": ["Fighting"] }] }, "lycanrocmidnight": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Psychic Fangs", "Stealth Rock", "Stone Edge", "Swords Dance"], "teraTypes": ["Rock", "Fighting"] }] }, "lycanrocdusk": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Accelerock", "Close Combat", "Crunch", "Drill Run", "Psychic Fangs", "Stone Edge", "Swords Dance"], "teraTypes": ["Fighting"] }] }, "toxapex": { "level": 82, "sets": [{ "role": "Bulky Support", "movepool": ["Haze", "Liquidation", "Recover", "Toxic", "Toxic Spikes"], "teraTypes": ["Steel", "Flying", "Grass", "Fairy"] }] }, "mudsdale": { "level": 86, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Press", "Earthquake", "Heavy Slam", "Stealth Rock", "Stone Edge"], "teraTypes": ["Fighting"] }] }, "lurantis": { "level": 88, "sets": [{ "role": "Bulky Attacker", "movepool": ["Defog", "Leaf Storm", "Pollen Puff", "Synthesis"], "teraTypes": ["Steel", "Water"] }] }, "salazzle": { "level": 82, "sets": [{ "role": "Fast Support", "movepool": ["Flamethrower", "Protect", "Substitute", "Toxic"], "teraTypes": ["Water", "Flying"] }] }, "tsareena": { "level": 84, "sets": [{ "role": "Fast Support", "movepool": ["High Jump Kick", "Play Rough", "Power Whip", "Rapid Spin", "Synthesis", "U-turn"], "teraTypes": ["Fighting", "Grass"] }] }, "oranguru": { "level": 88, "sets": [{ "role": "Bulky Attacker", "movepool": ["Focus Blast", "Nasty Plot", "Psychic", "Psyshock", "Thunderbolt"], "teraTypes": ["Psychic", "Electric", "Fighting"] }, { "role": "Wallbreaker", "movepool": ["Focus Blast", "Hyper Voice", "Psyshock", "Thunderbolt", "Trick", "Trick Room"], "teraTypes": ["Psychic", "Electric", "Fighting"] }] }, "passimian": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Gunk Shot", "Knock Off", "Rock Slide", "U-turn"], "teraTypes": ["Dark"] }] }, "palossand": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Earth Power", "Hypnosis", "Shadow Ball", "Shore Up", "Stealth Rock"], "teraTypes": ["Water"] }] }, "komala": { "level": 88, "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": 86, "sets": [{ "role": "Setup Sweeper", "movepool": ["Drain Punch", "Play Rough", "Shadow Claw", "Shadow Sneak", "Swords Dance", "Wood Hammer"], "teraTypes": ["Fighting", "Grass", "Fairy", "Ghost"] }] }, "bruxish": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Aqua Jet", "Crunch", "Ice Fang", "Psychic Fangs", "Swords Dance", "Wave Crash"], "teraTypes": ["Dark", "Psychic"] }] }, "magearna": { "level": 80, "sets": [{ "role": "Bulky Attacker", "movepool": ["Aura Sphere", "Flash Cannon", "Fleur Cannon", "Ice Beam", "Spikes", "Volt Switch"], "teraTypes": ["Fairy", "Steel", "Fighting", "Water"] }, { "role": "Bulky Setup", "movepool": ["Agility", "Calm Mind", "Flash Cannon", "Fleur Cannon"], "teraTypes": ["Steel"] }] }, "rillaboom": { "level": 82, "sets": [{ "role": "Setup Sweeper", "movepool": ["Acrobatics", "Knock Off", "Stomping Tantrum", "Swords Dance", "Wood Hammer"], "teraTypes": ["Flying", "Grass"] }, { "role": "Fast Attacker", "movepool": ["Knock Off", "Stomping Tantrum", "U-turn", "Wood Hammer"], "teraTypes": ["Grass"] }] }, "cinderace": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Court Change", "Gunk Shot", "High Jump Kick", "Pyro Ball", "Sucker Punch", "U-turn"], "teraTypes": ["Fire", "Fighting", "Poison"] }] }, "inteleon": { "level": 86, "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": 82, "sets": [{ "role": "Setup Sweeper", "movepool": ["Crunch", "Earthquake", "Liquidation", "Shell Smash", "Stone Edge"], "teraTypes": ["Water", "Rock", "Ground", "Dark"] }] }, "coalossal": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Overheat", "Rapid Spin", "Spikes", "Stealth Rock", "Stone Edge", "Will-O-Wisp"], "teraTypes": ["Water"] }] }, "flapple": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Dragon Dance", "Grav Apple", "Outrage", "Sucker Punch", "U-turn"], "teraTypes": ["Dragon", "Grass"] }] }, "appletun": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Apple Acid", "Draco Meteor", "Dragon Pulse", "Leech Seed", "Recover"], "teraTypes": ["Grass", "Steel"] }] }, "sandaconda": { "level": 86, "sets": [{ "role": "Bulky Setup", "movepool": ["Coil", "Earthquake", "Glare", "Rest", "Stone Edge"], "teraTypes": ["Ground"] }, { "role": "Bulky Support", "movepool": ["Earthquake", "Glare", "Rest", "Stealth Rock", "Stone Edge"], "teraTypes": ["Ground"] }] }, "barraskewda": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Aqua Jet", "Close Combat", "Crunch", "Liquidation", "Poison Jab", "Psychic Fangs"], "teraTypes": ["Fighting"] }] }, "toxtricity": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Boomburst", "Overdrive", "Shift Gear", "Sludge Bomb", "Volt Switch"], "teraTypes": ["Normal"] }] }, "toxtricitylowkey": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Boomburst", "Overdrive", "Sludge Bomb", "Toxic Spikes", "Volt Switch"], "teraTypes": ["Normal"] }] }, "polteageist": { "level": 82, "sets": [{ "role": "Tera Blast user", "movepool": ["Giga Drain", "Shadow Ball", "Shell Smash", "Stored Power", "Strength Sap", "Tera Blast"], "teraTypes": ["Fighting"] }, { "role": "Setup Sweeper", "movepool": ["Giga Drain", "Shadow Ball", "Shell Smash", "Stored Power", "Strength Sap"], "teraTypes": ["Psychic"] }] }, "hatterene": { "level": 84, "sets": [{ "role": "Wallbreaker", "movepool": ["Dazzling Gleam", "Mystical Fire", "Psychic", "Psyshock", "Trick", "Trick Room"], "teraTypes": ["Psychic", "Fairy", "Fire"] }] }, "grimmsnarl": { "level": 82, "sets": [{ "role": "Bulky Support", "movepool": ["Light Screen", "Parting Shot", "Reflect", "Spirit Break", "Thunder Wave"], "teraTypes": ["Fairy"] }, { "role": "Fast Bulky Setup", "movepool": ["Bulk Up", "Crunch", "Rest", "Spirit Break", "Sucker Punch", "Thunder Wave"], "teraTypes": ["Dark"] }, { "role": "Bulky Attacker", "movepool": ["Parting Shot", "Spirit Break", "Sucker Punch", "Taunt", "Thunder Wave"], "teraTypes": ["Fairy"] }] }, "perrserker": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Close Combat", "Crunch", "Iron Head", "Stealth Rock", "U-turn"], "teraTypes": ["Steel", "Fighting"] }] }, "falinks": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Megahorn", "No Retreat", "Poison Jab", "Rock Slide"], "teraTypes": ["Fighting"] }] }, "pincurchin": { "level": 88, "sets": [{ "role": "Bulky Attacker", "movepool": ["Discharge", "Liquidation", "Spikes", "Sucker Punch", "Toxic Spikes"], "teraTypes": ["Electric", "Water"] }] }, "frosmoth": { "level": 86, "sets": [{ "role": "Tera Blast user", "movepool": ["Bug Buzz", "Giga Drain", "Hurricane", "Ice Beam", "Quiver Dance", "Tera Blast"], "teraTypes": ["Ground"] }, { "role": "Setup Sweeper", "movepool": ["Bug Buzz", "Giga Drain", "Hurricane", "Ice Beam", "Quiver Dance"], "teraTypes": ["Water"] }] }, "stonjourner": { "level": 88, "sets": [{ "role": "Fast Attacker", "movepool": ["Earthquake", "Heavy Slam", "Rock Polish", "Stealth Rock", "Stone Edge"], "teraTypes": ["Ground"] }] }, "eiscue": { "level": 86, "sets": [{ "role": "Setup Sweeper", "movepool": ["Belly Drum", "Ice Spinner", "Iron Head", "Liquidation", "Substitute", "Zen Headbutt"], "teraTypes": ["Water"] }, { "role": "Tera Blast user", "movepool": ["Belly Drum", "Ice Spinner", "Liquidation", "Substitute", "Tera Blast"], "teraTypes": ["Ground"] }] }, "indeedee": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Calm Mind", "Dazzling Gleam", "Healing Wish", "Hyper Voice", "Psychic", "Psyshock", "Shadow Ball"], "teraTypes": ["Psychic"] }] }, "indeedeef": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Calm Mind", "Dazzling Gleam", "Healing Wish", "Hyper Voice", "Psychic", "Psyshock", "Shadow Ball"], "teraTypes": ["Psychic"] }] }, "copperajah": { "level": 86, "sets": [{ "role": "Wallbreaker", "movepool": ["Earthquake", "Iron Head", "Play Rough", "Rock Slide", "Stealth Rock", "Superpower"], "teraTypes": ["Steel", "Fairy"] }] }, "dragapult": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Draco Meteor", "Fire Blast", "Shadow Ball", "Thunderbolt", "U-turn"], "teraTypes": ["Ghost", "Dragon"] }, { "role": "Tera Blast user", "movepool": ["Dragon Dance", "Dragon Darts", "Fire Blast", "Tera Blast"], "teraTypes": ["Ghost"] }] }, "zacian": { "level": 70, "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": 72, "sets": [{ "role": "Bulky Attacker", "movepool": ["Dynamax Cannon", "Fire Blast", "Recover", "Sludge Bomb"], "teraTypes": ["Dragon"] }, { "role": "Bulky Support", "movepool": ["Dynamax Cannon", "Flamethrower", "Recover", "Toxic", "Toxic Spikes"], "teraTypes": ["Dragon"] }] }, "urshifu": { "level": 76, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Poison Jab", "Sucker Punch", "Swords Dance", "U-turn", "Wicked Blow"], "teraTypes": ["Dark", "Fighting"] }] }, "urshifurapidstrike": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Aqua Jet", "Close Combat", "Ice Spinner", "Surging Strikes", "Swords Dance", "U-turn"], "teraTypes": ["Water"] }] }, "zarude": { "level": 86, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Close Combat", "Crunch", "Power Whip", "Swords Dance", "Synthesis"], "teraTypes": ["Dark", "Grass", "Fighting"] }, { "role": "Fast Attacker", "movepool": ["Close Combat", "Crunch", "Power Whip", "U-turn"], "teraTypes": ["Dark", "Grass", "Fighting"] }] }, "regieleki": { "level": 80, "sets": [{ "role": "Fast Support", "movepool": ["Explosion", "Rapid Spin", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric"] }, { "role": "Tera Blast user", "movepool": ["Rapid Spin", "Tera Blast", "Thunderbolt", "Volt Switch"], "teraTypes": ["Ice"] }] }, "regidrago": { "level": 84, "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": 76, "sets": [{ "role": "Setup Sweeper", "movepool": ["Dark Pulse", "Nasty Plot", "Shadow Ball", "Substitute", "Will-O-Wisp"], "teraTypes": ["Ghost", "Dark"] }, { "role": "Tera Blast user", "movepool": ["Nasty Plot", "Shadow Ball", "Substitute", "Tera Blast", "Will-O-Wisp"], "teraTypes": ["Fighting"] }] }, "calyrex": { "level": 88, "sets": [{ "role": "Bulky Support", "movepool": ["Calm Mind", "Encore", "Energy Ball", "Leech Seed", "Psychic", "Psyshock"], "teraTypes": ["Steel"] }] }, "calyrexice": { "level": 74, "sets": [{ "role": "Wallbreaker", "movepool": ["Agility", "Close Combat", "Glacial Lance", "Stomping Tantrum", "Trick Room", "Zen Headbutt"], "teraTypes": ["Fighting"] }] }, "calyrexshadow": { "level": 68, "sets": [{ "role": "Fast Attacker", "movepool": ["Astral Barrage", "Nasty Plot", "Pollen Puff", "Psyshock", "Trick"], "teraTypes": ["Ghost"] }] }, "wyrdeer": { "level": 88, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Slam", "Earthquake", "Megahorn", "Psychic", "Thunder Wave", "Thunderbolt"], "teraTypes": ["Ground"] }] }, "kleavor": { "level": 86, "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": 82, "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": 80, "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": 80, "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": 88, "sets": [{ "role": "Bulky Setup", "movepool": ["Body Press", "Body Slam", "Stomping Tantrum", "Stuff Cheeks"], "teraTypes": ["Fighting"] }] }, "oinkolognef": { "level": 88, "sets": [{ "role": "Bulky Setup", "movepool": ["Body Press", "Body Slam", "Stomping Tantrum", "Stuff Cheeks"], "teraTypes": ["Fighting"] }] }, "dudunsparce": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Glare", "Headbutt", "Roost"], "teraTypes": ["Ghost", "Ground"] }, { "role": "Bulky Setup", "movepool": ["Boomburst", "Calm Mind", "Earth Power", "Roost", "Thunder"], "teraTypes": ["Normal", "Ghost"] }] }, "dudunsparcethreesegment": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Earthquake", "Glare", "Headbutt", "Roost"], "teraTypes": ["Ghost", "Ground"] }, { "role": "Bulky Setup", "movepool": ["Boomburst", "Calm Mind", "Earth Power", "Roost", "Thunder"], "teraTypes": ["Normal", "Ghost"] }] }, "spidops": { "level": 90, "sets": [{ "role": "Bulky Support", "movepool": ["Circle Throw", "Memento", "Spikes", "Sticky Web", "Toxic Spikes"], "teraTypes": ["Ghost"] }] }, "lokix": { "level": 82, "sets": [{ "role": "Wallbreaker", "movepool": ["Axe Kick", "First Impression", "Leech Life", "Sucker Punch"], "teraTypes": ["Bug"] }, { "role": "Fast Attacker", "movepool": ["Axe Kick", "First Impression", "Sucker Punch", "U-turn"], "teraTypes": ["Bug"] }, { "role": "Setup Sweeper", "movepool": ["Leech Life", "Sucker Punch", "Swords Dance", "Throat Chop"], "teraTypes": ["Dark"] }] }, "rabsca": { "level": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Bug Buzz", "Earth Power", "Psychic", "Revival Blessing", "Trick Room"], "teraTypes": ["Steel"] }] }, "houndstone": { "level": 76, "sets": [{ "role": "Bulky Attacker", "movepool": ["Body Press", "Last Respects", "Trick", "Will-O-Wisp"], "teraTypes": ["Ghost"] }] }, "espathra": { "level": 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": 80, "sets": [{ "role": "Bulky Setup", "movepool": ["Curse", "Liquidation", "Rest", "Sleep Talk", "Wave Crash"], "teraTypes": ["Fairy", "Ground", "Dragon"] }] }, "veluza": { "level": 84, "sets": [{ "role": "Fast Attacker", "movepool": ["Aqua Cutter", "Aqua Jet", "Night Slash", "Psycho Cut"], "teraTypes": ["Water"] }, { "role": "Setup Sweeper", "movepool": ["Aqua Cutter", "Fillet Away", "Night Slash", "Psycho Cut"], "teraTypes": ["Water", "Psychic", "Dark"] }] }, "palafin": { "level": 76, "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", "Leech Seed", "Strength Sap"], "teraTypes": ["Grass", "Fairy"] }, { "role": "Bulky Support", "movepool": ["Hyper Voice", "Leech Seed", "Protect", "Substitute"], "teraTypes": ["Water"] }] }, "scovillain": { "level": 80, "sets": [{ "role": "Bulky Attacker", "movepool": ["Flamethrower", "Leech Seed", "Protect", "Substitute"], "teraTypes": ["Steel", "Water"] }] }, "bellibolt": { "level": 88, "sets": [{ "role": "Bulky Attacker", "movepool": ["Muddy Water", "Slack Off", "Thunder Wave", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric"] }] }, "revavroom": { "level": 82, "sets": [{ "role": "Tera Blast user", "movepool": ["Gunk Shot", "Iron Head", "Shift Gear", "Tera Blast"], "teraTypes": ["Water", "Ground"] }, { "role": "Fast Support", "movepool": ["Gunk Shot", "Haze", "Parting Shot", "Spin Out", "Toxic", "Toxic Spikes"], "teraTypes": ["Water"] }] }, "orthworm": { "level": 84, "sets": [{ "role": "Bulky Setup", "movepool": ["Body Press", "Coil", "Iron Tail", "Rest"], "teraTypes": ["Fighting", "Electric"] }, { "role": "Bulky Support", "movepool": ["Body Press", "Iron Head", "Rest", "Shed Tail", "Spikes", "Stealth Rock"], "teraTypes": ["Electric", "Poison"] }] }, "maushold": { "level": 80, "sets": [{ "role": "Setup Sweeper", "movepool": ["Bite", "Encore", "Population Bomb", "Tidy Up"], "teraTypes": ["Normal"] }] }, "mausholdfour": { "level": 80, "sets": [{ "role": "Setup Sweeper", "movepool": ["Bite", "Encore", "Population Bomb", "Tidy Up"], "teraTypes": ["Normal"] }] }, "cetitan": { "level": 84, "sets": [{ "role": "Wallbreaker", "movepool": ["Earthquake", "Icicle Crash", "Liquidation", "Snowscape"], "teraTypes": ["Ground"] }, { "role": "Bulky Setup", "movepool": ["Belly Drum", "Earthquake", "Ice Shard", "Icicle Crash"], "teraTypes": ["Ice"] }] }, "baxcalibur": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Earthquake", "Glaive Rush", "Ice Shard", "Icicle Crash"], "teraTypes": ["Dragon", "Ground"] }, { "role": "Setup Sweeper", "movepool": ["Dragon Dance", "Earthquake", "Glaive Rush", "Icicle Crash"], "teraTypes": ["Dragon", "Ground"] }] }, "tatsugiri": { "level": 82, "sets": [{ "role": "Tera Blast user", "movepool": ["Draco Meteor", "Dragon Pulse", "Hydro Pump", "Nasty Plot", "Tera Blast"], "teraTypes": ["Fire"] }, { "role": "Fast Support", "movepool": ["Draco Meteor", "Hydro Pump", "Nasty Plot", "Rapid Spin", "Surf"], "teraTypes": ["Water"] }] }, "cyclizar": { "level": 80, "sets": [{ "role": "Fast Support", "movepool": ["Draco Meteor", "Rapid Spin", "Shed Tail", "Taunt"], "teraTypes": ["Dragon"] }, { "role": "Fast Attacker", "movepool": ["Double-Edge", "Draco Meteor", "Knock Off", "Shed Tail"], "teraTypes": ["Normal", "Dragon"] }] }, "pawmot": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Close Combat", "Double Shock", "Ice Punch", "Revival Blessing", "Volt Switch"], "teraTypes": ["Electric"] }, { "role": "Fast Support", "movepool": ["Close Combat", "Ice Punch", "Nuzzle", "Revival Blessing", "Thunder Punch"], "teraTypes": ["Fighting"] }] }, "kilowattrel": { "level": 82, "sets": [{ "role": "Fast Support", "movepool": ["Hurricane", "Roost", "Thunder Wave", "Thunderbolt", "U-turn"], "teraTypes": ["Flying", "Electric"] }] }, "bombirdier": { "level": 86, "sets": [{ "role": "Fast Attacker", "movepool": ["Brave Bird", "Hone Claws", "Knock Off", "Stone Edge", "Sucker Punch", "U-turn"], "teraTypes": ["Rock"] }] }, "squawkabilly": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Brave Bird", "Facade", "Protect", "Quick Attack", "U-turn"], "teraTypes": ["Normal"] }] }, "squawkabillywhite": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Brave Bird", "Double-Edge", "Foul Play", "Parting Shot", "Quick Attack"], "teraTypes": ["Flying", "Dark", "Normal"] }] }, "squawkabillyblue": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Brave Bird", "Facade", "Protect", "Quick Attack", "U-turn"], "teraTypes": ["Normal"] }] }, "squawkabillyyellow": { "level": 88, "sets": [{ "role": "Wallbreaker", "movepool": ["Brave Bird", "Double-Edge", "Foul Play", "Parting Shot", "Quick Attack"], "teraTypes": ["Flying", "Dark", "Normal"] }] }, "flamigo": { "level": 82, "sets": [{ "role": "Wallbreaker", "movepool": ["Brave Bird", "Close Combat", "Swords Dance", "Throat Chop", "U-turn"], "teraTypes": ["Fighting"] }] }, "klawf": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Crabhammer", "High Horsepower", "Knock Off", "Stealth Rock", "Stone Edge", "Swords Dance"], "teraTypes": ["Water", "Ground", "Dark", "Rock"] }] }, "garganacl": { "level": 80, "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": 86, "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": 86, "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": 84, "sets": [{ "role": "Bulky Support", "movepool": ["Power Whip", "Rapid Spin", "Shadow Sneak", "Spikes", "Strength Sap"], "teraTypes": ["Ghost"] }, { "role": "Fast Support", "movepool": ["Leech Seed", "Phantom Force", "Power Whip", "Substitute"], "teraTypes": ["Ghost"] }] }, "gholdengo": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Focus Blast", "Make It Rain", "Nasty Plot", "Recover", "Shadow Ball", "Trick"], "teraTypes": ["Steel", "Ghost"] }, { "role": "Bulky Attacker", "movepool": ["Make It Rain", "Recover", "Shadow Ball", "Thunder Wave"], "teraTypes": ["Steel", "Water"] }] }, "greattusk": { "level": 80, "sets": [{ "role": "Bulky Setup", "movepool": ["Bulk Up", "Close Combat", "Earthquake", "Ice Spinner", "Rapid Spin"], "teraTypes": ["Ground", "Fighting"] }, { "role": "Bulky Attacker", "movepool": ["Close Combat", "Headlong Rush", "Ice Spinner", "Knock Off", "Rapid Spin", "Stealth Rock"], "teraTypes": ["Ground", "Dark"] }] }, "brutebonnet": { "level": 82, "sets": [{ "role": "Bulky Attacker", "movepool": ["Close Combat", "Crunch", "Seed Bomb", "Spore", "Sucker Punch"], "teraTypes": ["Dark", "Fighting"] }] }, "sandyshocks": { "level": 82, "sets": [{ "role": "Bulky Attacker", "movepool": ["Earth Power", "Spikes", "Stealth Rock", "Thunder Wave", "Thunderbolt", "Volt Switch"], "teraTypes": ["Electric", "Ground"] }] }, "screamtail": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Encore", "Light Screen", "Play Rough", "Protect", "Reflect", "Thunder Wave", "Wish"], "teraTypes": ["Fairy", "Steel"] }] }, "fluttermane": { "level": 76, "sets": [{ "role": "Fast Attacker", "movepool": ["Calm Mind", "Moonblast", "Mystical Fire", "Psyshock", "Shadow Ball", "Thunderbolt"], "teraTypes": ["Ghost", "Fairy", "Fire", "Electric", "Psychic"] }] }, "slitherwing": { "level": 82, "sets": [{ "role": "Bulky Setup", "movepool": ["Bulk Up", "Close Combat", "Earthquake", "Flame Charge", "Leech Life", "Wild Charge"], "teraTypes": ["Fighting", "Electric"] }, { "role": "Fast Attacker", "movepool": ["Close Combat", "Earthquake", "First Impression", "Flare Blitz", "U-turn", "Wild Charge"], "teraTypes": ["Bug", "Fighting", "Electric"] }] }, "roaringmoon": { "level": 80, "sets": [{ "role": "Setup Sweeper", "movepool": ["Crunch", "Dragon Dance", "Earthquake", "Outrage", "Roost"], "teraTypes": ["Dark", "Dragon", "Ground"] }, { "role": "Bulky Attacker", "movepool": ["Crunch", "Iron Head", "Outrage", "U-turn"], "teraTypes": ["Dark", "Dragon", "Steel"] }] }, "irontreads": { "level": 80, "sets": [{ "role": "Bulky Attacker", "movepool": ["Earthquake", "Iron Head", "Knock Off", "Rapid Spin", "Stealth Rock", "Stone Edge", "Volt Switch"], "teraTypes": ["Ground", "Steel"] }] }, "ironmoth": { "level": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Discharge", "Energy Ball", "Fiery Dance", "Fire Blast", "Sludge Wave", "U-turn"], "teraTypes": ["Fire", "Grass"] }, { "role": "Fast Support", "movepool": ["Energy Ball", "Fiery Dance", "Morning Sun", "Sludge Wave", "Toxic Spikes", "U-turn"], "teraTypes": ["Fire", "Grass"] }] }, "ironhands": { "level": 80, "sets": [{ "role": "Bulky Attacker", "movepool": ["Close Combat", "Drain Punch", "Fake Out", "Heavy Slam", "Ice Punch", "Thunder Punch", "Volt Switch", "Wild Charge"], "teraTypes": ["Electric", "Fighting"] }] }, "ironjugulis": { "level": 82, "sets": [{ "role": "Fast Attacker", "movepool": ["Dark Pulse", "Earth Power", "Fire Blast", "Hurricane", "Hydro Pump", "U-turn"], "teraTypes": ["Dark", "Flying", "Ground"] }] }, "ironthorns": { "level": 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": 80, "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": 80, "sets": [{ "role": "Fast Attacker", "movepool": ["Crunch", "Ice Shard", "Ice Spinner", "Sacred Sword", "Sucker Punch", "Swords Dance"], "teraTypes": ["Dark", "Ice", "Fighting"] }] }, "wochien": { "level": 82, "sets": [{ "role": "Bulky Support", "movepool": ["Energy Ball", "Knock Off", "Leech Seed", "Ruination", "Stun Spore"], "teraTypes": ["Poison"] }] }, "chiyu": { "level": 80, "sets": [{ "role": "Setup Sweeper", "movepool": ["Dark Pulse", "Fire Blast", "Nasty Plot", "Psychic", "Will-O-Wisp"], "teraTypes": ["Dark", "Fire"] }, { "role": "Wallbreaker", "movepool": ["Dark Pulse", "Flamethrower", "Overheat", "Psychic"], "teraTypes": ["Dark", "Fire"] }] }, "koraidon": { "level": 72, "sets": [{ "role": "Fast Attacker", "movepool": ["Collision Course", "Flare Blitz", "Outrage", "Swords Dance", "U-turn"], "teraTypes": ["Fire"] }] }, "miraidon": { "level": 70, "sets": [{ "role": "Fast Bulky Setup", "movepool": ["Calm Mind", "Dragon Pulse", "Electro Drift", "Substitute"], "teraTypes": ["Electric"] }, { "role": "Fast Attacker", "movepool": ["Draco Meteor", "Electro Drift", "Overheat", "Volt Switch"], "teraTypes": ["Electric"] }] }, "tinkaton": { "level": 86, "sets": [{ "role": "Bulky Attacker", "movepool": ["Gigaton Hammer", "Knock Off", "Play Rough", "Stealth Rock", "Thunder Wave"], "teraTypes": ["Steel"] }, { "role": "Setup Sweeper", "movepool": ["Gigaton Hammer", "Knock Off", "Play Rough", "Swords Dance"], "teraTypes": ["Steel"] }] }, "armarouge": { "level": 84, "sets": [{ "role": "Wallbreaker", "movepool": ["Armor Cannon", "Aura Sphere", "Energy Ball", "Focus Blast", "Psyshock"], "teraTypes": ["Fire", "Fighting", "Psychic", "Grass"] }] }, "ceruledge": { "level": 82, "sets": [{ "role": "Setup Sweeper", "movepool": ["Bitter Blade", "Close Combat", "Shadow Sneak", "Swords Dance"], "teraTypes": ["Fire", "Fighting"] }] }, "toedscruel": { "level": 86, "sets": [{ "role": "Bulky Support", "movepool": ["Earth Power", "Giga Drain", "Knock Off", "Leaf Storm", "Rapid Spin", "Spore", "Toxic", "Toxic Spikes"], "teraTypes": ["Water"] }] }, "kingambit": { "level": 82, "sets": [{ "role": "Wallbreaker", "movepool": ["Iron Head", "Kowtow Cleave", "Stealth Rock", "Sucker Punch", "Swords Dance"], "teraTypes": ["Dark", "Flying"] }] } };
|
|
8024
8048
|
var MoveCounter3 = class extends Utils.Multiset {
|
|
8025
8049
|
constructor() {
|
|
8026
8050
|
super();
|
|
@@ -8218,7 +8242,7 @@ var RandomTeams = class {
|
|
|
8218
8242
|
return false;
|
|
8219
8243
|
if (movePool.includes("calmmind") || movePool.includes("psychicfangs") || movePool.includes("psychocut"))
|
|
8220
8244
|
return true;
|
|
8221
|
-
return abilities.has("Psychic Surge") || types.includes("Fire");
|
|
8245
|
+
return abilities.has("Psychic Surge") || types.includes("Fire") || types.includes("Electric");
|
|
8222
8246
|
},
|
|
8223
8247
|
Rock: (movePool, moves, abilities, types, counter, species) => !counter.get("Rock") && species.baseStats.atk >= 80,
|
|
8224
8248
|
Steel: (movePool, moves, abilities, types, counter, species) => {
|
|
@@ -8437,9 +8461,7 @@ var RandomTeams = class {
|
|
|
8437
8461
|
if (movePool.includes("stickyweb"))
|
|
8438
8462
|
this.fastPop(movePool, movePool.indexOf("stickyweb"));
|
|
8439
8463
|
}
|
|
8440
|
-
|
|
8441
|
-
this.incompatibleMoves(moves, movePool, statusMoves, ["healingwish", "memento", "switcheroo", "trick"]);
|
|
8442
|
-
}
|
|
8464
|
+
this.incompatibleMoves(moves, movePool, statusMoves, ["healingwish", "switcheroo", "trick"]);
|
|
8443
8465
|
if (species.id !== "scyther" && species.id !== "scizor") {
|
|
8444
8466
|
this.incompatibleMoves(moves, movePool, Setup, pivotingMoves);
|
|
8445
8467
|
}
|
|
@@ -8470,6 +8492,10 @@ var RandomTeams = class {
|
|
|
8470
8492
|
this.incompatibleMoves(moves, movePool, "toxic", "willowisp");
|
|
8471
8493
|
this.incompatibleMoves(moves, movePool, ["thunderwave", "toxic", "willowisp"], "toxicspikes");
|
|
8472
8494
|
this.incompatibleMoves(moves, movePool, "thunderwave", "yawn");
|
|
8495
|
+
this.incompatibleMoves(moves, movePool, "memento", "destinybond");
|
|
8496
|
+
if (species.id === "dugtrio") {
|
|
8497
|
+
this.incompatibleMoves(moves, movePool, statusMoves, "memento");
|
|
8498
|
+
}
|
|
8473
8499
|
this.incompatibleMoves(moves, movePool, "nastyplot", "rockslide");
|
|
8474
8500
|
this.incompatibleMoves(moves, movePool, "switcheroo", ["fakeout", "superfang"]);
|
|
8475
8501
|
this.incompatibleMoves(moves, movePool, "snowscape", "swordsdance");
|
|
@@ -8959,6 +8985,7 @@ var RandomTeams = class {
|
|
|
8959
8985
|
if ([
|
|
8960
8986
|
"Armor Tail",
|
|
8961
8987
|
"Battle Bond",
|
|
8988
|
+
"Early Bird",
|
|
8962
8989
|
"Flare Boost",
|
|
8963
8990
|
"Gluttony",
|
|
8964
8991
|
"Harvest",
|
|
@@ -8966,8 +8993,10 @@ var RandomTeams = class {
|
|
|
8966
8993
|
"Ice Body",
|
|
8967
8994
|
"Immunity",
|
|
8968
8995
|
"Own Tempo",
|
|
8996
|
+
"Pressure",
|
|
8969
8997
|
"Quick Feet",
|
|
8970
8998
|
"Rain Dish",
|
|
8999
|
+
"Sand Veil",
|
|
8971
9000
|
"Snow Cloak",
|
|
8972
9001
|
"Steadfast",
|
|
8973
9002
|
"Steam Engine"
|
|
@@ -8993,11 +9022,10 @@ var RandomTeams = class {
|
|
|
8993
9022
|
case "Defiant":
|
|
8994
9023
|
return !counter.get("Physical") || abilities.has("Prankster") && (moves.has("thunderwave") || moves.has("taunt"));
|
|
8995
9024
|
case "Flash Fire":
|
|
8996
|
-
return
|
|
9025
|
+
return ["Flame Body", "Intimidate", "Rock Head", "Weak Armor"].some((m) => abilities.has(m)) && this.dex.getEffectiveness("Fire", species) < 0;
|
|
8997
9026
|
case "Guts":
|
|
8998
9027
|
return !moves.has("facade") && !moves.has("sleeptalk");
|
|
8999
9028
|
case "Hustle":
|
|
9000
|
-
case "Inner Focus":
|
|
9001
9029
|
return counter.get("Physical") < 2;
|
|
9002
9030
|
case "Infiltrator":
|
|
9003
9031
|
return moves.has("rest") && moves.has("sleeptalk") || isDoubles && abilities.has("Clear Body");
|
|
@@ -9021,15 +9049,11 @@ var RandomTeams = class {
|
|
|
9021
9049
|
return !counter.get("Grass");
|
|
9022
9050
|
case "Prankster":
|
|
9023
9051
|
return !counter.get("Status");
|
|
9024
|
-
case "Pressure":
|
|
9025
|
-
return !!counter.get("setup") || counter.get("Status") < 2 || isDoubles;
|
|
9026
9052
|
case "Reckless":
|
|
9027
9053
|
return !counter.get("recoil");
|
|
9028
9054
|
case "Rock Head":
|
|
9029
9055
|
return !counter.get("recoil");
|
|
9030
9056
|
case "Sand Force":
|
|
9031
|
-
case "Sand Veil":
|
|
9032
|
-
return !teamDetails.sand;
|
|
9033
9057
|
case "Sand Rush":
|
|
9034
9058
|
return !teamDetails.sand;
|
|
9035
9059
|
case "Sap Sipper":
|
|
@@ -9045,7 +9069,7 @@ var RandomTeams = class {
|
|
|
9045
9069
|
case "Slush Rush":
|
|
9046
9070
|
return !teamDetails.snow;
|
|
9047
9071
|
case "Solar Power":
|
|
9048
|
-
return !teamDetails.sun;
|
|
9072
|
+
return !teamDetails.sun || !counter.get("Special");
|
|
9049
9073
|
case "Stakeout":
|
|
9050
9074
|
return counter.damagingMoves.size < 1;
|
|
9051
9075
|
case "Sturdy":
|
|
@@ -9094,6 +9118,10 @@ var RandomTeams = class {
|
|
|
9094
9118
|
return "Guts";
|
|
9095
9119
|
if (abilities.has("Harvest") && moves.has("substitute"))
|
|
9096
9120
|
return "Harvest";
|
|
9121
|
+
if (species.id === "hypno")
|
|
9122
|
+
return "Insomnia";
|
|
9123
|
+
if (abilities.has("Pressure") && role === "Bulky Setup")
|
|
9124
|
+
return "Pressure";
|
|
9097
9125
|
if (abilities.has("Serene Grace") && moves.has("headbutt"))
|
|
9098
9126
|
return "Serene Grace";
|
|
9099
9127
|
if (abilities.has("Technician") && counter.get("technician"))
|
|
@@ -9168,6 +9196,12 @@ var RandomTeams = class {
|
|
|
9168
9196
|
return "Magnet";
|
|
9169
9197
|
if (species.id === "pincurchin")
|
|
9170
9198
|
return "Shuca Berry";
|
|
9199
|
+
if (species.id === "cyclizar" && role === "Fast Attacker")
|
|
9200
|
+
return "Choice Scarf";
|
|
9201
|
+
if (species.id === "lokix" && role === "Wallbreaker")
|
|
9202
|
+
return "Life Orb";
|
|
9203
|
+
if (species.id === "toxtricity" && moves.has("shiftgear"))
|
|
9204
|
+
return "Throat Spray";
|
|
9171
9205
|
if (ability === "Imposter" || species.id === "magnezone" && moves.has("bodypress"))
|
|
9172
9206
|
return "Choice Scarf";
|
|
9173
9207
|
if (moves.has("bellydrum") && moves.has("substitute"))
|
|
@@ -9192,8 +9226,10 @@ var RandomTeams = class {
|
|
|
9192
9226
|
return "White Herb";
|
|
9193
9227
|
if (moves.has("populationbomb"))
|
|
9194
9228
|
return "Wide Lens";
|
|
9229
|
+
if (moves.has("courtchange"))
|
|
9230
|
+
return "Heavy-Duty Boots";
|
|
9195
9231
|
if (moves.has("stuffcheeks"))
|
|
9196
|
-
return "Salac Berry";
|
|
9232
|
+
return this.randomChance(1, 2) ? "Liechi Berry" : "Salac Berry";
|
|
9197
9233
|
if (ability === "Unburden")
|
|
9198
9234
|
return moves.has("closecombat") ? "White Herb" : "Sitrus Berry";
|
|
9199
9235
|
if (moves.has("acrobatics"))
|
|
@@ -9204,7 +9240,7 @@ var RandomTeams = class {
|
|
|
9204
9240
|
return "Chesto Berry";
|
|
9205
9241
|
}
|
|
9206
9242
|
if (species.id === "scyther")
|
|
9207
|
-
return isLead ? "Eviolite" : "Heavy-Duty Boots";
|
|
9243
|
+
return isLead && !moves.has("uturn") ? "Eviolite" : "Heavy-Duty Boots";
|
|
9208
9244
|
if (species.nfe)
|
|
9209
9245
|
return "Eviolite";
|
|
9210
9246
|
if (this.dex.getEffectiveness("Rock", species) >= 2)
|
|
@@ -9248,8 +9284,6 @@ var RandomTeams = class {
|
|
|
9248
9284
|
const scarfReqs = role !== "Wallbreaker" && (species.baseStats.atk >= 100 || ability === "Huge Power" || ability === "Pure Power") && species.baseStats.spe >= 60 && species.baseStats.spe <= 108 && ability !== "Speed Boost" && !counter.get("priority") && !moves.has("aquastep");
|
|
9249
9285
|
return scarfReqs && this.randomChance(1, 2) ? "Choice Scarf" : "Choice Band";
|
|
9250
9286
|
}
|
|
9251
|
-
if (counter.get("Physical") === 3 && moves.has("shedtail"))
|
|
9252
|
-
return "Choice Scarf";
|
|
9253
9287
|
if (counter.get("Special") >= 4 || counter.get("Special") >= 3 && ["flipturn", "partingshot", "uturn"].some((m) => moves.has(m))) {
|
|
9254
9288
|
const scarfReqs = role !== "Wallbreaker" && species.baseStats.spa >= 100 && species.baseStats.spe >= 60 && species.baseStats.spe <= 108 && ability !== "Speed Boost" && ability !== "Tinted Lens" && !counter.get("Physical");
|
|
9255
9289
|
return scarfReqs && this.randomChance(1, 2) ? "Choice Scarf" : "Choice Specs";
|
|
@@ -9260,12 +9294,12 @@ var RandomTeams = class {
|
|
|
9260
9294
|
return "Weakness Policy";
|
|
9261
9295
|
if (species.id === "urshifurapidstrike")
|
|
9262
9296
|
return "Punching Glove";
|
|
9263
|
-
if (species.id === "
|
|
9264
|
-
return "
|
|
9265
|
-
if (species.id === "toxtricity" && moves.has("shiftgear"))
|
|
9266
|
-
return "Throat Spray";
|
|
9297
|
+
if (species.id === "palkia")
|
|
9298
|
+
return "Lustrous Orb";
|
|
9267
9299
|
if (moves.has("substitute") || ability === "Moody")
|
|
9268
9300
|
return "Leftovers";
|
|
9301
|
+
if (moves.has("stickyweb") && isLead)
|
|
9302
|
+
return "Focus Sash";
|
|
9269
9303
|
if (!teamDetails.defog && !teamDetails.rapidSpin && this.dex.getEffectiveness("Rock", species) >= 1)
|
|
9270
9304
|
return "Heavy-Duty Boots";
|
|
9271
9305
|
if (role === "Fast Support" && ["defog", "rapidspin", "uturn", "voltswitch"].some((m) => moves.has(m)) && !types.includes("Flying") && ability !== "Levitate")
|
|
@@ -9281,7 +9315,7 @@ var RandomTeams = class {
|
|
|
9281
9315
|
if (["Bulky Attacker", "Bulky Support", "Bulky Setup"].some((m) => role === m))
|
|
9282
9316
|
return "Leftovers";
|
|
9283
9317
|
if (role === "Fast Support" || role === "Fast Bulky Setup") {
|
|
9284
|
-
return counter.damagingMoves.size >= 3 ? "Life Orb" : "Leftovers";
|
|
9318
|
+
return counter.damagingMoves.size >= 3 && !moves.has("nuzzle") ? "Life Orb" : "Leftovers";
|
|
9285
9319
|
}
|
|
9286
9320
|
if (["flamecharge", "rapidspin", "trailblaze"].every((m) => !moves.has(m)) && ["Fast Attacker", "Setup Sweeper", "Tera Blast user", "Wallbreaker"].some((m) => role === m))
|
|
9287
9321
|
return "Life Orb";
|
|
@@ -9575,6 +9609,8 @@ var RandomTeams = class {
|
|
|
9575
9609
|
teamDetails.stealthRock = 1;
|
|
9576
9610
|
if (set.moves.includes("stickyweb"))
|
|
9577
9611
|
teamDetails.stickyWeb = 1;
|
|
9612
|
+
if (set.moves.includes("stoneaxe"))
|
|
9613
|
+
teamDetails.stealthRock = 1;
|
|
9578
9614
|
if (set.moves.includes("toxicspikes"))
|
|
9579
9615
|
teamDetails.toxicSpikes = 1;
|
|
9580
9616
|
if (set.moves.includes("defog"))
|
|
@@ -9647,20 +9683,32 @@ var RandomTeams = class {
|
|
|
9647
9683
|
} else {
|
|
9648
9684
|
const formes = ["gastrodoneast", "pumpkaboosuper", "zygarde10"];
|
|
9649
9685
|
let learnset = this.dex.species.getLearnset(species.id);
|
|
9686
|
+
let learnsetSpecies = species;
|
|
9650
9687
|
if (formes.includes(species.id) || !learnset) {
|
|
9651
|
-
|
|
9688
|
+
learnsetSpecies = this.dex.species.get(species.baseSpecies);
|
|
9689
|
+
learnset = this.dex.species.getLearnset(learnsetSpecies.id);
|
|
9652
9690
|
}
|
|
9653
9691
|
if (learnset) {
|
|
9654
9692
|
pool = Object.keys(learnset).filter(
|
|
9655
9693
|
(moveid) => learnset[moveid].find((learned) => learned.startsWith(String(this.gen)))
|
|
9656
9694
|
);
|
|
9657
9695
|
}
|
|
9658
|
-
if (species.changesFrom) {
|
|
9696
|
+
if (learnset && learnsetSpecies === species && species.changesFrom) {
|
|
9659
9697
|
learnset = this.dex.species.getLearnset(_sim.toID.call(void 0, species.changesFrom));
|
|
9660
|
-
const
|
|
9661
|
-
(moveid)
|
|
9662
|
-
|
|
9663
|
-
|
|
9698
|
+
for (const moveid in learnset) {
|
|
9699
|
+
if (!pool.includes(moveid) && learnset[moveid].some((source) => source.startsWith(String(this.gen)))) {
|
|
9700
|
+
pool.push(moveid);
|
|
9701
|
+
}
|
|
9702
|
+
}
|
|
9703
|
+
}
|
|
9704
|
+
const evoRegion = learnsetSpecies.evoRegion && learnsetSpecies.gen !== this.gen;
|
|
9705
|
+
while (learnsetSpecies.prevo) {
|
|
9706
|
+
learnsetSpecies = this.dex.species.get(learnsetSpecies.prevo);
|
|
9707
|
+
for (const moveid in learnset) {
|
|
9708
|
+
if (!pool.includes(moveid) && learnset[moveid].some((source) => source.startsWith(String(this.gen)) && !evoRegion)) {
|
|
9709
|
+
pool.push(moveid);
|
|
9710
|
+
}
|
|
9711
|
+
}
|
|
9664
9712
|
}
|
|
9665
9713
|
}
|
|
9666
9714
|
const moves = this.multipleSamplesNoReplace(pool, this.maxMoveCount);
|