@pkmn/sim 0.5.3 → 0.5.4
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/config/formats.js +114 -63
- package/build/config/formats.js.map +1 -1
- package/build/data/aliases.js +2 -2
- package/build/data/aliases.js.map +1 -1
- package/build/data/formats-data.js +56 -56
- package/build/data/formats-data.js.map +1 -1
- package/build/data/mods/gen1/formats-data.js +190 -190
- package/build/data/mods/gen1/formats-data.js.map +1 -1
- package/build/data/mods/gen1/moves.js +1 -2
- package/build/data/mods/gen1/moves.js.map +1 -1
- package/build/data/mods/gen2/formats-data.js +1 -1
- package/build/data/mods/gen2/formats-data.js.map +1 -1
- package/build/data/mods/gen3/formats-data.js +12 -12
- package/build/data/mods/gen3/formats-data.js.map +1 -1
- package/build/data/mods/gen4/moves.js +22 -0
- package/build/data/mods/gen4/moves.js.map +1 -1
- package/build/data/mods/gen5/formats-data.js +15 -15
- package/build/data/mods/gen5/formats-data.js.map +1 -1
- package/build/data/mods/gen6/formats-data.js +1 -1
- package/build/data/mods/gen7/formats-data.js +1 -1
- package/build/data/mods/gen7/formats-data.js.map +1 -1
- package/build/data/mods/gen7/moves.js +154 -0
- package/build/data/mods/gen7/moves.js.map +1 -1
- package/build/data/moves.js +38 -7
- package/build/data/moves.js.map +1 -1
- package/build/data/rulesets.js +9 -0
- package/build/data/rulesets.js.map +1 -1
- package/build/data/tags.js +3 -2
- package/build/data/tags.js.map +1 -1
- package/config/formats.ts +118 -66
- package/data/aliases.ts +2 -2
- package/data/formats-data.ts +56 -56
- package/data/mods/gen1/formats-data.ts +190 -190
- package/data/mods/gen1/moves.ts +1 -2
- package/data/mods/gen2/formats-data.ts +1 -1
- package/data/mods/gen3/formats-data.ts +12 -12
- package/data/mods/gen4/moves.ts +21 -0
- package/data/mods/gen5/formats-data.ts +15 -15
- package/data/mods/gen6/formats-data.ts +1 -1
- package/data/mods/gen7/formats-data.ts +1 -1
- package/data/mods/gen7/moves.ts +150 -0
- package/data/moves.ts +37 -7
- package/data/rulesets.ts +9 -0
- package/data/tags.ts +3 -2
- package/package.json +1 -1
package/data/formats-data.ts
CHANGED
|
@@ -273,7 +273,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
273
273
|
tier: "LC",
|
|
274
274
|
},
|
|
275
275
|
sandslash: {
|
|
276
|
-
randomBattleMoves: ["earthquake", "knockoff", "rapidspin", "
|
|
276
|
+
randomBattleMoves: ["earthquake", "knockoff", "rapidspin", "spikes", "stealthrock", "stoneedge", "swordsdance", "toxic"],
|
|
277
277
|
randomBattleLevel: 86,
|
|
278
278
|
randomDoubleBattleMoves: ["drillrun", "knockoff", "protect", "stealthrock", "stoneedge", "swordsdance"],
|
|
279
279
|
randomDoubleBattleLevel: 89,
|
|
@@ -589,7 +589,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
589
589
|
randomBattleMoves: ["haze", "knockoff", "rapidspin", "scald", "sludgebomb", "toxicspikes"],
|
|
590
590
|
randomBattleLevel: 84,
|
|
591
591
|
randomDoubleBattleMoves: ["acidspray", "icywind", "knockoff", "muddywater", "rapidspin", "sludgebomb"],
|
|
592
|
-
randomDoubleBattleLevel:
|
|
592
|
+
randomDoubleBattleLevel: 87,
|
|
593
593
|
tier: "UU",
|
|
594
594
|
doublesTier: "(DUU)",
|
|
595
595
|
},
|
|
@@ -690,7 +690,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
690
690
|
magnezone: {
|
|
691
691
|
randomBattleMoves: ["bodypress", "flashcannon", "mirrorcoat", "thunderbolt", "voltswitch"],
|
|
692
692
|
randomBattleLevel: 84,
|
|
693
|
-
randomDoubleBattleMoves: ["
|
|
693
|
+
randomDoubleBattleMoves: ["bodypress", "electroweb", "flashcannon", "protect", "thunderbolt", "voltswitch"],
|
|
694
694
|
randomDoubleBattleLevel: 88,
|
|
695
695
|
tier: "OU",
|
|
696
696
|
doublesTier: "(DUU)",
|
|
@@ -868,7 +868,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
868
868
|
randomBattleMoves: ["earthquake", "flamecharge", "flareblitz", "poltergeist", "stealthrock", "stoneedge"],
|
|
869
869
|
randomBattleLevel: 84,
|
|
870
870
|
randomDoubleBattleMoves: ["bonemerang", "flamecharge", "flareblitz", "protect", "shadowbone"],
|
|
871
|
-
randomDoubleBattleLevel:
|
|
871
|
+
randomDoubleBattleLevel: 83,
|
|
872
872
|
tier: "RU",
|
|
873
873
|
doublesTier: "(DUU)",
|
|
874
874
|
},
|
|
@@ -929,7 +929,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
929
929
|
randomBattleMoves: ["defog", "fireblast", "painsplit", "sludgebomb", "strangesteam", "toxicspikes", "willowisp"],
|
|
930
930
|
randomBattleLevel: 86,
|
|
931
931
|
randomDoubleBattleMoves: ["clearsmog", "defog", "fireblast", "painsplit", "strangesteam", "toxicspikes", "willowisp"],
|
|
932
|
-
randomDoubleBattleLevel:
|
|
932
|
+
randomDoubleBattleLevel: 89,
|
|
933
933
|
tier: "RU",
|
|
934
934
|
doublesTier: "DUU",
|
|
935
935
|
},
|
|
@@ -1019,7 +1019,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
1019
1019
|
tier: "LC",
|
|
1020
1020
|
},
|
|
1021
1021
|
starmie: {
|
|
1022
|
-
randomBattleMoves: ["hydropump", "psyshock", "rapidspin", "recover", "scald", "thunderbolt"
|
|
1022
|
+
randomBattleMoves: ["hydropump", "icebeam", "psyshock", "rapidspin", "recover", "scald", "thunderbolt"],
|
|
1023
1023
|
randomBattleLevel: 84,
|
|
1024
1024
|
randomDoubleBattleMoves: ["flipturn", "hydropump", "icebeam", "protect", "psyshock", "thunderbolt"],
|
|
1025
1025
|
randomDoubleBattleLevel: 84,
|
|
@@ -1328,7 +1328,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
1328
1328
|
randomBattleMoves: ["airslash", "calmmind", "freezingglare", "recover"],
|
|
1329
1329
|
randomBattleLevel: 80,
|
|
1330
1330
|
randomDoubleBattleMoves: ["calmmind", "freezingglare", "hurricane", "recover", "tailwind"],
|
|
1331
|
-
randomDoubleBattleLevel:
|
|
1331
|
+
randomDoubleBattleLevel: 80,
|
|
1332
1332
|
randomBattleNoDynamaxMoves: ["calmmind", "freezingglare", "hurricane", "recover"],
|
|
1333
1333
|
tier: "PU",
|
|
1334
1334
|
doublesTier: "(DUU)",
|
|
@@ -1362,7 +1362,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
1362
1362
|
randomBattleMoves: ["fierywrath", "hurricane", "nastyplot", "rest"],
|
|
1363
1363
|
randomBattleLevel: 75,
|
|
1364
1364
|
randomDoubleBattleMoves: ["fierywrath", "hurricane", "nastyplot", "protect"],
|
|
1365
|
-
randomDoubleBattleLevel:
|
|
1365
|
+
randomDoubleBattleLevel: 75,
|
|
1366
1366
|
randomBattleNoDynamaxMoves: ["agility", "fierywrath", "hurricane", "nastyplot", "rest"],
|
|
1367
1367
|
tier: "UU",
|
|
1368
1368
|
doublesTier: "DUU",
|
|
@@ -1455,7 +1455,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
1455
1455
|
tier: "LC",
|
|
1456
1456
|
},
|
|
1457
1457
|
noctowl: {
|
|
1458
|
-
randomBattleMoves: ["
|
|
1458
|
+
randomBattleMoves: ["defog", "heatwave", "hurricane", "nastyplot", "roost"],
|
|
1459
1459
|
randomBattleLevel: 88,
|
|
1460
1460
|
randomDoubleBattleMoves: ["airslash", "heatwave", "hypervoice", "nastyplot", "roost", "tailwind"],
|
|
1461
1461
|
randomDoubleBattleLevel: 84,
|
|
@@ -1509,7 +1509,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
1509
1509
|
},
|
|
1510
1510
|
xatu: {
|
|
1511
1511
|
randomBattleMoves: ["heatwave", "psychic", "roost", "teleport", "thunderwave"],
|
|
1512
|
-
randomBattleLevel:
|
|
1512
|
+
randomBattleLevel: 89,
|
|
1513
1513
|
randomDoubleBattleMoves: ["airslash", "heatwave", "lightscreen", "psychic", "reflect", "roost", "tailwind"],
|
|
1514
1514
|
randomDoubleBattleLevel: 88,
|
|
1515
1515
|
tier: "NU",
|
|
@@ -1648,7 +1648,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
1648
1648
|
tier: "Illegal",
|
|
1649
1649
|
},
|
|
1650
1650
|
dunsparce: {
|
|
1651
|
-
randomBattleMoves: ["bodyslam", "coil", "
|
|
1651
|
+
randomBattleMoves: ["bodyslam", "coil", "earthquake", "roost"],
|
|
1652
1652
|
randomBattleLevel: 90,
|
|
1653
1653
|
randomDoubleBattleMoves: ["glare", "headbutt", "protect", "rockslide"],
|
|
1654
1654
|
randomDoubleBattleLevel: 90,
|
|
@@ -1844,7 +1844,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
1844
1844
|
doublesTier: "(DUU)",
|
|
1845
1845
|
},
|
|
1846
1846
|
entei: {
|
|
1847
|
-
randomBattleMoves: ["extremespeed", "flareblitz", "
|
|
1847
|
+
randomBattleMoves: ["extremespeed", "flareblitz", "sacredfire", "stompingtantrum", "stoneedge"],
|
|
1848
1848
|
randomBattleLevel: 78,
|
|
1849
1849
|
randomDoubleBattleMoves: ["extremespeed", "protect", "sacredfire", "snarl", "stompingtantrum", "stoneedge"],
|
|
1850
1850
|
randomDoubleBattleLevel: 79,
|
|
@@ -1927,7 +1927,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
1927
1927
|
tier: "NFE",
|
|
1928
1928
|
},
|
|
1929
1929
|
blaziken: {
|
|
1930
|
-
randomBattleMoves: ["closecombat", "flareblitz", "knockoff", "
|
|
1930
|
+
randomBattleMoves: ["closecombat", "flareblitz", "knockoff", "stoneedge", "swordsdance"],
|
|
1931
1931
|
randomBattleLevel: 76,
|
|
1932
1932
|
randomDoubleBattleMoves: ["closecombat", "flareblitz", "knockoff", "protect", "swordsdance"],
|
|
1933
1933
|
randomDoubleBattleLevel: 78,
|
|
@@ -1945,7 +1945,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
1945
1945
|
tier: "NFE",
|
|
1946
1946
|
},
|
|
1947
1947
|
swampert: {
|
|
1948
|
-
randomBattleMoves: ["earthquake", "icebeam", "protect", "scald", "stealthrock", "toxic"
|
|
1948
|
+
randomBattleMoves: ["earthquake", "flipturn", "icebeam", "protect", "scald", "stealthrock", "toxic"],
|
|
1949
1949
|
randomBattleLevel: 80,
|
|
1950
1950
|
randomDoubleBattleMoves: ["highhorsepower", "icywind", "muddywater", "protect", "stealthrock", "wideguard"],
|
|
1951
1951
|
randomDoubleBattleLevel: 86,
|
|
@@ -2300,7 +2300,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
2300
2300
|
},
|
|
2301
2301
|
wailord: {
|
|
2302
2302
|
randomBattleMoves: ["hydropump", "hypervoice", "icebeam", "waterspout"],
|
|
2303
|
-
randomBattleLevel:
|
|
2303
|
+
randomBattleLevel: 90,
|
|
2304
2304
|
randomDoubleBattleMoves: ["hydropump", "hypervoice", "icebeam", "waterspout"],
|
|
2305
2305
|
randomDoubleBattleLevel: 88,
|
|
2306
2306
|
tier: "(PU)",
|
|
@@ -2447,7 +2447,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
2447
2447
|
tier: "LC",
|
|
2448
2448
|
},
|
|
2449
2449
|
armaldo: {
|
|
2450
|
-
randomBattleMoves: ["earthquake", "knockoff", "rapidspin", "stealthrock", "stoneedge", "swordsdance"
|
|
2450
|
+
randomBattleMoves: ["earthquake", "knockoff", "liquidation", "rapidspin", "stealthrock", "stoneedge", "swordsdance"],
|
|
2451
2451
|
randomBattleLevel: 86,
|
|
2452
2452
|
randomDoubleBattleMoves: ["knockoff", "liquidation", "stoneedge", "superpower", "xscissor"],
|
|
2453
2453
|
randomDoubleBattleLevel: 88,
|
|
@@ -2669,7 +2669,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
2669
2669
|
tier: "Illegal",
|
|
2670
2670
|
},
|
|
2671
2671
|
latios: {
|
|
2672
|
-
randomBattleMoves: ["
|
|
2672
|
+
randomBattleMoves: ["calmmind", "dracometeor", "mysticalfire", "psyshock", "roost", "trick"],
|
|
2673
2673
|
randomBattleLevel: 78,
|
|
2674
2674
|
randomDoubleBattleMoves: ["dracometeor", "dragonpulse", "mysticalfire", "psychic", "psyshock", "roost", "tailwind", "trick"],
|
|
2675
2675
|
randomDoubleBattleLevel: 80,
|
|
@@ -2693,11 +2693,11 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
2693
2693
|
tier: "Illegal",
|
|
2694
2694
|
},
|
|
2695
2695
|
groudon: {
|
|
2696
|
-
randomBattleMoves: ["
|
|
2696
|
+
randomBattleMoves: ["heatcrash", "heavyslam", "precipiceblades", "stealthrock", "stoneedge", "swordsdance", "thunderwave"],
|
|
2697
2697
|
randomBattleLevel: 73,
|
|
2698
2698
|
randomDoubleBattleMoves: ["heatcrash", "precipiceblades", "rockpolish", "stoneedge", "swordsdance"],
|
|
2699
2699
|
randomDoubleBattleLevel: 72,
|
|
2700
|
-
randomBattleNoDynamaxMoves: ["
|
|
2700
|
+
randomBattleNoDynamaxMoves: ["heatcrash", "precipiceblades", "stealthrock", "stoneedge", "swordsdance", "thunderwave"],
|
|
2701
2701
|
tier: "Uber",
|
|
2702
2702
|
doublesTier: "DUber",
|
|
2703
2703
|
},
|
|
@@ -2706,11 +2706,11 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
2706
2706
|
tier: "Illegal",
|
|
2707
2707
|
},
|
|
2708
2708
|
rayquaza: {
|
|
2709
|
-
randomBattleMoves: ["dracometeor", "dragonascent", "dragondance", "
|
|
2709
|
+
randomBattleMoves: ["dracometeor", "dragonascent", "dragondance", "earthquake", "extremespeed", "swordsdance", "vcreate"],
|
|
2710
2710
|
randomBattleLevel: 74,
|
|
2711
2711
|
randomDoubleBattleMoves: ["dracometeor", "dragonascent", "dragonclaw", "dragondance", "earthpower", "extremespeed", "vcreate"],
|
|
2712
2712
|
randomDoubleBattleLevel: 74,
|
|
2713
|
-
randomBattleNoDynamaxMoves: ["dracometeor", "dragonascent", "dragondance", "
|
|
2713
|
+
randomBattleNoDynamaxMoves: ["dracometeor", "dragonascent", "dragondance", "earthquake", "extremespeed", "vcreate"],
|
|
2714
2714
|
tier: "Uber",
|
|
2715
2715
|
doublesTier: "DUber",
|
|
2716
2716
|
},
|
|
@@ -2966,7 +2966,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
2966
2966
|
tier: "Illegal",
|
|
2967
2967
|
},
|
|
2968
2968
|
spiritomb: {
|
|
2969
|
-
randomBattleMoves: ["foulplay", "
|
|
2969
|
+
randomBattleMoves: ["foulplay", "poltergeist", "shadowsneak", "suckerpunch", "trick"],
|
|
2970
2970
|
randomBattleLevel: 88,
|
|
2971
2971
|
randomDoubleBattleMoves: ["foulplay", "poltergeist", "protect", "snarl", "suckerpunch", "willowisp"],
|
|
2972
2972
|
randomDoubleBattleLevel: 88,
|
|
@@ -3069,7 +3069,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3069
3069
|
rotom: {
|
|
3070
3070
|
randomBattleMoves: ["nastyplot", "shadowball", "thunderbolt", "voltswitch", "willowisp"],
|
|
3071
3071
|
randomBattleLevel: 84,
|
|
3072
|
-
randomDoubleBattleMoves: ["
|
|
3072
|
+
randomDoubleBattleMoves: ["electroweb", "protect", "shadowball", "thunderbolt", "voltswitch", "willowisp"],
|
|
3073
3073
|
randomDoubleBattleLevel: 88,
|
|
3074
3074
|
tier: "(PU)",
|
|
3075
3075
|
doublesTier: "(DUU)",
|
|
@@ -3085,7 +3085,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3085
3085
|
rotomwash: {
|
|
3086
3086
|
randomBattleMoves: ["hydropump", "thunderbolt", "trick", "voltswitch", "willowisp"],
|
|
3087
3087
|
randomBattleLevel: 82,
|
|
3088
|
-
randomDoubleBattleMoves: ["
|
|
3088
|
+
randomDoubleBattleMoves: ["hydropump", "protect", "thunderbolt", "thunderwave", "voltswitch", "willowisp"],
|
|
3089
3089
|
randomDoubleBattleLevel: 84,
|
|
3090
3090
|
tier: "UU",
|
|
3091
3091
|
doublesTier: "(DUU)",
|
|
@@ -3107,7 +3107,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3107
3107
|
doublesTier: "(DUU)",
|
|
3108
3108
|
},
|
|
3109
3109
|
rotommow: {
|
|
3110
|
-
randomBattleMoves: ["leafstorm", "thunderbolt", "trick", "voltswitch", "willowisp"
|
|
3110
|
+
randomBattleMoves: ["leafstorm", "nastyplot", "thunderbolt", "trick", "voltswitch", "willowisp"],
|
|
3111
3111
|
randomBattleLevel: 86,
|
|
3112
3112
|
randomDoubleBattleMoves: ["electroweb", "leafstorm", "protect", "thunderbolt", "voltswitch", "willowisp"],
|
|
3113
3113
|
randomDoubleBattleLevel: 88,
|
|
@@ -3131,7 +3131,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3131
3131
|
doublesTier: "(DUU)",
|
|
3132
3132
|
},
|
|
3133
3133
|
azelf: {
|
|
3134
|
-
randomBattleMoves: ["dazzlinggleam", "fireblast", "nastyplot", "psyshock", "stealthrock", "taunt", "uturn"
|
|
3134
|
+
randomBattleMoves: ["dazzlinggleam", "fireblast", "nastyplot", "psychic", "psyshock", "stealthrock", "taunt", "uturn"],
|
|
3135
3135
|
randomBattleLevel: 82,
|
|
3136
3136
|
randomDoubleBattleMoves: ["energyball", "fireblast", "nastyplot", "protect", "psychic", "shadowball", "uturn"],
|
|
3137
3137
|
randomDoubleBattleLevel: 84,
|
|
@@ -3157,7 +3157,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3157
3157
|
heatran: {
|
|
3158
3158
|
randomBattleMoves: ["earthpower", "flashcannon", "lavaplume", "protect", "stealthrock", "taunt", "toxic"],
|
|
3159
3159
|
randomBattleLevel: 78,
|
|
3160
|
-
randomDoubleBattleMoves: ["earthpower", "eruption", "flashcannon", "
|
|
3160
|
+
randomDoubleBattleMoves: ["earthpower", "eruption", "flashcannon", "heatwave", "protect"],
|
|
3161
3161
|
randomDoubleBattleLevel: 80,
|
|
3162
3162
|
tier: "OU",
|
|
3163
3163
|
doublesTier: "DOU",
|
|
@@ -3181,7 +3181,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3181
3181
|
giratinaorigin: {
|
|
3182
3182
|
randomBattleMoves: ["dualwingbeat", "honeclaws", "outrage", "poltergeist", "shadowsneak"],
|
|
3183
3183
|
randomBattleLevel: 74,
|
|
3184
|
-
randomDoubleBattleMoves: ["breakingswipe", "dracometeor", "
|
|
3184
|
+
randomDoubleBattleMoves: ["breakingswipe", "dracometeor", "protect", "shadowball", "shadowsneak", "tailwind", "willowisp"],
|
|
3185
3185
|
randomDoubleBattleLevel: 74,
|
|
3186
3186
|
randomBattleNoDynamaxMoves: ["defog", "dracometeor", "earthquake", "poltergeist", "shadowsneak", "willowisp"],
|
|
3187
3187
|
tier: "Uber",
|
|
@@ -3444,7 +3444,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3444
3444
|
randomBattleMoves: ["healbell", "knockoff", "protect", "toxic", "wish"],
|
|
3445
3445
|
randomBattleLevel: 90,
|
|
3446
3446
|
randomDoubleBattleMoves: ["bodyslam", "healpulse", "helpinghand", "knockoff", "protect", "thunderwave"],
|
|
3447
|
-
randomDoubleBattleLevel:
|
|
3447
|
+
randomDoubleBattleLevel: 90,
|
|
3448
3448
|
tier: "PU",
|
|
3449
3449
|
doublesTier: "(DUU)",
|
|
3450
3450
|
},
|
|
@@ -3658,7 +3658,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3658
3658
|
runerigus: {
|
|
3659
3659
|
randomBattleMoves: ["earthquake", "haze", "poltergeist", "stealthrock", "toxicspikes", "willowisp"],
|
|
3660
3660
|
randomBattleLevel: 84,
|
|
3661
|
-
randomDoubleBattleMoves: ["
|
|
3661
|
+
randomDoubleBattleMoves: ["earthquake", "poltergeist", "protect", "trickroom", "willowisp"],
|
|
3662
3662
|
randomDoubleBattleLevel: 88,
|
|
3663
3663
|
tier: "(PU)",
|
|
3664
3664
|
doublesTier: "(DUU)",
|
|
@@ -3840,7 +3840,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3840
3840
|
doublesTier: "NFE",
|
|
3841
3841
|
},
|
|
3842
3842
|
ferrothorn: {
|
|
3843
|
-
randomBattleMoves: ["gyroball", "leechseed", "powerwhip", "protect", "spikes", "stealthrock"
|
|
3843
|
+
randomBattleMoves: ["gyroball", "knockoff", "leechseed", "powerwhip", "protect", "spikes", "stealthrock"],
|
|
3844
3844
|
randomBattleLevel: 78,
|
|
3845
3845
|
randomDoubleBattleMoves: ["bodypress", "gyroball", "knockoff", "leechseed", "powerwhip", "protect", "toxic"],
|
|
3846
3846
|
randomDoubleBattleLevel: 83,
|
|
@@ -3906,7 +3906,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3906
3906
|
},
|
|
3907
3907
|
haxorus: {
|
|
3908
3908
|
randomBattleMoves: ["closecombat", "dragondance", "earthquake", "outrage", "poisonjab"],
|
|
3909
|
-
randomBattleLevel:
|
|
3909
|
+
randomBattleLevel: 77,
|
|
3910
3910
|
randomDoubleBattleMoves: ["closecombat", "dragonclaw", "dragondance", "poisonjab", "protect"],
|
|
3911
3911
|
randomDoubleBattleLevel: 84,
|
|
3912
3912
|
tier: "RUBL",
|
|
@@ -3916,7 +3916,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3916
3916
|
tier: "LC",
|
|
3917
3917
|
},
|
|
3918
3918
|
beartic: {
|
|
3919
|
-
randomBattleMoves: ["aquajet", "iciclecrash", "
|
|
3919
|
+
randomBattleMoves: ["aquajet", "iciclecrash", "stoneedge", "superpower", "swordsdance"],
|
|
3920
3920
|
randomBattleLevel: 86,
|
|
3921
3921
|
randomDoubleBattleMoves: ["aquajet", "iciclecrash", "protect", "rockslide", "superpower", "swordsdance", "throatchop"],
|
|
3922
3922
|
randomDoubleBattleLevel: 86,
|
|
@@ -3926,7 +3926,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
3926
3926
|
cryogonal: {
|
|
3927
3927
|
randomBattleMoves: ["freezedry", "haze", "rapidspin", "recover", "toxic"],
|
|
3928
3928
|
randomBattleLevel: 86,
|
|
3929
|
-
randomDoubleBattleMoves: ["freezedry", "
|
|
3929
|
+
randomDoubleBattleMoves: ["freezedry", "haze", "icebeam", "icywind", "rapidspin", "recover", "toxic"],
|
|
3930
3930
|
randomDoubleBattleLevel: 88,
|
|
3931
3931
|
tier: "(PU)",
|
|
3932
3932
|
doublesTier: "(DUU)",
|
|
@@ -4121,7 +4121,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
4121
4121
|
doublesTier: "(DUU)",
|
|
4122
4122
|
},
|
|
4123
4123
|
thundurustherian: {
|
|
4124
|
-
randomBattleMoves: ["
|
|
4124
|
+
randomBattleMoves: ["focusblast", "grassknot", "nastyplot", "psychic", "thunderbolt", "voltswitch"],
|
|
4125
4125
|
randomBattleLevel: 80,
|
|
4126
4126
|
randomDoubleBattleMoves: ["agility", "focusblast", "grassknot", "nastyplot", "sludgebomb", "thunderbolt", "voltswitch"],
|
|
4127
4127
|
randomDoubleBattleLevel: 82,
|
|
@@ -4203,7 +4203,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
4203
4203
|
isNonstandard: "Past",
|
|
4204
4204
|
},
|
|
4205
4205
|
genesect: {
|
|
4206
|
-
randomBattleMoves: ["blazekick", "extremespeed", "
|
|
4206
|
+
randomBattleMoves: ["blazekick", "extremespeed", "ironhead", "leechlife", "shiftgear", "thunderbolt", "uturn"],
|
|
4207
4207
|
randomBattleLevel: 74,
|
|
4208
4208
|
randomDoubleBattleMoves: ["blazekick", "ironhead", "leechlife", "protect", "shiftgear", "thunderbolt", "uturn"],
|
|
4209
4209
|
randomDoubleBattleLevel: 78,
|
|
@@ -4347,7 +4347,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
4347
4347
|
tier: "LC",
|
|
4348
4348
|
},
|
|
4349
4349
|
pangoro: {
|
|
4350
|
-
randomBattleMoves: ["closecombat", "
|
|
4350
|
+
randomBattleMoves: ["closecombat", "gunkshot", "icepunch", "knockoff", "partingshot"],
|
|
4351
4351
|
randomBattleLevel: 84,
|
|
4352
4352
|
randomDoubleBattleMoves: ["bulletpunch", "closecombat", "drainpunch", "gunkshot", "icepunch", "knockoff", "protect"],
|
|
4353
4353
|
randomDoubleBattleLevel: 88,
|
|
@@ -4418,7 +4418,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
4418
4418
|
randomBattleMoves: ["bellydrum", "drainpunch", "facade", "playrough"],
|
|
4419
4419
|
randomBattleLevel: 80,
|
|
4420
4420
|
randomDoubleBattleMoves: ["faketears", "flamethrower", "helpinghand", "playrough", "stickyweb"],
|
|
4421
|
-
randomDoubleBattleLevel:
|
|
4421
|
+
randomDoubleBattleLevel: 86,
|
|
4422
4422
|
tier: "NUBL",
|
|
4423
4423
|
doublesTier: "(DUU)",
|
|
4424
4424
|
},
|
|
@@ -4635,7 +4635,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
4635
4635
|
tier: "Illegal",
|
|
4636
4636
|
},
|
|
4637
4637
|
yveltal: {
|
|
4638
|
-
randomBattleMoves: ["defog", "heatwave", "knockoff", "oblivionwing", "roost", "suckerpunch", "
|
|
4638
|
+
randomBattleMoves: ["darkpulse", "defog", "heatwave", "knockoff", "oblivionwing", "roost", "suckerpunch", "taunt"],
|
|
4639
4639
|
randomBattleLevel: 69,
|
|
4640
4640
|
randomDoubleBattleMoves: ["darkpulse", "heatwave", "knockoff", "oblivionwing", "roost", "suckerpunch", "tailwind", "uturn"],
|
|
4641
4641
|
randomDoubleBattleLevel: 71,
|
|
@@ -4654,7 +4654,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
4654
4654
|
randomBattleMoves: ["coil", "extremespeed", "irontail", "outrage", "thousandarrows"],
|
|
4655
4655
|
randomBattleLevel: 82,
|
|
4656
4656
|
randomDoubleBattleMoves: ["dragondance", "extremespeed", "irontail", "protect", "rockslide", "thousandarrows"],
|
|
4657
|
-
randomDoubleBattleLevel:
|
|
4657
|
+
randomDoubleBattleLevel: 77,
|
|
4658
4658
|
tier: "UU",
|
|
4659
4659
|
doublesTier: "(DUU)",
|
|
4660
4660
|
},
|
|
@@ -4697,7 +4697,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
4697
4697
|
tier: "NFE",
|
|
4698
4698
|
},
|
|
4699
4699
|
decidueye: {
|
|
4700
|
-
randomBattleMoves: ["bravebird", "leafblade", "
|
|
4700
|
+
randomBattleMoves: ["bravebird", "leafblade", "poltergeist", "roost", "shadowsneak", "swordsdance"],
|
|
4701
4701
|
randomBattleLevel: 86,
|
|
4702
4702
|
randomDoubleBattleMoves: ["bravebird", "leafblade", "protect", "shadowsneak", "spiritshackle", "swordsdance"],
|
|
4703
4703
|
randomDoubleBattleLevel: 88,
|
|
@@ -4880,7 +4880,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
4880
4880
|
tier: "LC",
|
|
4881
4881
|
},
|
|
4882
4882
|
araquanid: {
|
|
4883
|
-
randomBattleMoves: ["
|
|
4883
|
+
randomBattleMoves: ["leechlife", "liquidation", "mirrorcoat", "stickyweb", "toxic"],
|
|
4884
4884
|
randomBattleLevel: 80,
|
|
4885
4885
|
randomDoubleBattleMoves: ["leechlife", "liquidation", "lunge", "protect", "stickyweb", "wideguard"],
|
|
4886
4886
|
randomDoubleBattleLevel: 84,
|
|
@@ -5388,7 +5388,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
5388
5388
|
},
|
|
5389
5389
|
magearna: {
|
|
5390
5390
|
randomBattleMoves: ["agility", "calmmind", "flashcannon", "fleurcannon"],
|
|
5391
|
-
randomBattleLevel:
|
|
5391
|
+
randomBattleLevel: 75,
|
|
5392
5392
|
randomDoubleBattleMoves: ["agility", "aurasphere", "dazzlinggleam", "flashcannon", "fleurcannon", "protect", "trick"],
|
|
5393
5393
|
randomDoubleBattleLevel: 72,
|
|
5394
5394
|
tier: "Uber",
|
|
@@ -5451,7 +5451,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
5451
5451
|
doublesTier: "(DUU)",
|
|
5452
5452
|
},
|
|
5453
5453
|
melmetal: {
|
|
5454
|
-
randomBattleMoves: ["doubleironbash", "earthquake", "
|
|
5454
|
+
randomBattleMoves: ["doubleironbash", "earthquake", "superpower", "thunderpunch", "thunderwave"],
|
|
5455
5455
|
randomBattleLevel: 74,
|
|
5456
5456
|
randomDoubleBattleMoves: ["acidarmor", "bodypress", "doubleironbash", "protect", "thunderpunch", "thunderwave"],
|
|
5457
5457
|
randomDoubleBattleLevel: 76,
|
|
@@ -5500,7 +5500,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
5500
5500
|
},
|
|
5501
5501
|
cinderacegmax: {
|
|
5502
5502
|
randomBattleLevel: 74,
|
|
5503
|
-
randomBattleMoves: ["bulkup", "
|
|
5503
|
+
randomBattleMoves: ["bulkup", "highjumpkick", "pyroball", "suckerpunch"],
|
|
5504
5504
|
isNonstandard: "Gigantamax",
|
|
5505
5505
|
tier: "AG",
|
|
5506
5506
|
doublesTier: "(DUber)",
|
|
@@ -5650,7 +5650,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
5650
5650
|
},
|
|
5651
5651
|
coalossalgmax: {
|
|
5652
5652
|
randomBattleMoves: ["overheat", "rapidspin", "spikes", "stealthrock", "stoneedge", "willowisp"],
|
|
5653
|
-
randomBattleLevel:
|
|
5653
|
+
randomBattleLevel: 87,
|
|
5654
5654
|
randomDoubleBattleMoves: ["fireblast", "incinerate", "protect", "stealthrock", "stoneedge", "willowisp"],
|
|
5655
5655
|
randomDoubleBattleLevel: 85,
|
|
5656
5656
|
isNonstandard: "Gigantamax",
|
|
@@ -5692,7 +5692,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
5692
5692
|
tier: "LC",
|
|
5693
5693
|
},
|
|
5694
5694
|
sandaconda: {
|
|
5695
|
-
randomBattleMoves: ["coil", "earthquake", "glare", "
|
|
5695
|
+
randomBattleMoves: ["coil", "earthquake", "glare", "rest", "stealthrock", "stoneedge"],
|
|
5696
5696
|
randomBattleLevel: 84,
|
|
5697
5697
|
tier: "PU",
|
|
5698
5698
|
doublesTier: "(DUU)",
|
|
@@ -5759,13 +5759,13 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
5759
5759
|
randomBattleMoves: ["coil", "firelash", "knockoff", "leechlife", "powerwhip"],
|
|
5760
5760
|
randomBattleLevel: 84,
|
|
5761
5761
|
randomDoubleBattleMoves: ["coil", "firelash", "knockoff", "leechlife", "powerwhip", "protect"],
|
|
5762
|
-
randomDoubleBattleLevel:
|
|
5762
|
+
randomDoubleBattleLevel: 89,
|
|
5763
5763
|
tier: "(PU)",
|
|
5764
5764
|
doublesTier: "(DUU)",
|
|
5765
5765
|
},
|
|
5766
5766
|
centiskorchgmax: {
|
|
5767
5767
|
randomDoubleBattleMoves: ["coil", "firelash", "knockoff", "leechlife", "powerwhip", "protect"],
|
|
5768
|
-
randomDoubleBattleLevel:
|
|
5768
|
+
randomDoubleBattleLevel: 89,
|
|
5769
5769
|
isNonstandard: "Gigantamax",
|
|
5770
5770
|
tier: "AG",
|
|
5771
5771
|
doublesTier: "(DUber)",
|
|
@@ -6011,14 +6011,14 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
6011
6011
|
},
|
|
6012
6012
|
zamazenta: {
|
|
6013
6013
|
randomBattleMoves: ["closecombat", "crunch", "psychicfangs", "wildcharge"],
|
|
6014
|
-
randomBattleLevel:
|
|
6014
|
+
randomBattleLevel: 73,
|
|
6015
6015
|
randomDoubleBattleMoves: ["closecombat", "crunch", "playrough", "protect", "psychicfangs"],
|
|
6016
6016
|
randomDoubleBattleLevel: 74,
|
|
6017
6017
|
tier: "Uber",
|
|
6018
6018
|
doublesTier: "DUber",
|
|
6019
6019
|
},
|
|
6020
6020
|
zamazentacrowned: {
|
|
6021
|
-
randomBattleMoves: ["behemothbash", "closecombat", "crunch", "
|
|
6021
|
+
randomBattleMoves: ["behemothbash", "closecombat", "crunch", "howl", "psychicfangs"],
|
|
6022
6022
|
randomBattleLevel: 71,
|
|
6023
6023
|
randomDoubleBattleMoves: ["behemothbash", "closecombat", "crunch", "howl", "protect", "psychicfangs"],
|
|
6024
6024
|
randomDoubleBattleLevel: 72,
|
|
@@ -6064,7 +6064,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
6064
6064
|
doublesTier: "(DUber)",
|
|
6065
6065
|
},
|
|
6066
6066
|
urshifurapidstrikegmax: {
|
|
6067
|
-
randomBattleMoves: ["bulkup", "closecombat", "
|
|
6067
|
+
randomBattleMoves: ["bulkup", "closecombat", "icepunch", "surgingstrikes", "uturn"],
|
|
6068
6068
|
randomBattleLevel: 78,
|
|
6069
6069
|
isNonstandard: "Gigantamax",
|
|
6070
6070
|
tier: "AG",
|
|
@@ -6094,7 +6094,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
6094
6094
|
doublesTier: "DOU",
|
|
6095
6095
|
},
|
|
6096
6096
|
regidrago: {
|
|
6097
|
-
randomBattleMoves: ["dracometeor", "dragondance", "
|
|
6097
|
+
randomBattleMoves: ["dracometeor", "dragondance", "firefang", "hammerarm", "outrage"],
|
|
6098
6098
|
randomBattleLevel: 78,
|
|
6099
6099
|
randomDoubleBattleMoves: ["crunch", "dragonclaw", "dragonenergy", "firefang"],
|
|
6100
6100
|
randomDoubleBattleLevel: 78,
|
|
@@ -6118,15 +6118,15 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
|
|
|
6118
6118
|
doublesTier: "DUU",
|
|
6119
6119
|
},
|
|
6120
6120
|
calyrex: {
|
|
6121
|
-
randomBattleMoves: ["calmmind", "gigadrain", "
|
|
6121
|
+
randomBattleMoves: ["calmmind", "gigadrain", "leechseed", "psyshock", "substitute"],
|
|
6122
6122
|
randomBattleLevel: 88,
|
|
6123
|
-
randomDoubleBattleMoves: ["
|
|
6123
|
+
randomDoubleBattleMoves: ["helpinghand", "leafstorm", "pollenpuff", "protect"],
|
|
6124
6124
|
randomDoubleBattleLevel: 94,
|
|
6125
6125
|
tier: "(PU)",
|
|
6126
6126
|
doublesTier: "(DUU)",
|
|
6127
6127
|
},
|
|
6128
6128
|
calyrexice: {
|
|
6129
|
-
randomBattleMoves: ["closecombat", "glaciallance", "highhorsepower", "trickroom"
|
|
6129
|
+
randomBattleMoves: ["agility", "closecombat", "glaciallance", "highhorsepower", "trickroom"],
|
|
6130
6130
|
randomBattleLevel: 72,
|
|
6131
6131
|
randomDoubleBattleMoves: ["closecombat", "glaciallance", "highhorsepower", "swordsdance", "trickroom"],
|
|
6132
6132
|
randomDoubleBattleLevel: 72,
|