@pkmn/sim 0.5.22 → 0.5.25
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/LICENSE +1 -1
- package/build/config/formats.js +581 -481
- package/build/config/formats.js.map +1 -1
- package/build/data/aliases.js +9 -5
- package/build/data/aliases.js.map +1 -1
- package/build/data/conditions.js +1 -1
- package/build/data/conditions.js.map +1 -1
- package/build/data/formats-data.js +830 -28
- package/build/data/formats-data.js.map +1 -1
- package/build/data/learnsets.js +64 -39
- package/build/data/learnsets.js.map +1 -1
- package/build/data/mods/gen1/formats-data.js +1 -1
- package/build/data/mods/gen1/formats-data.js.map +1 -1
- package/build/data/mods/gen1/moves.js +5 -0
- package/build/data/mods/gen1/moves.js.map +1 -1
- package/build/data/mods/gen1/scripts.js +4 -2
- package/build/data/mods/gen1/scripts.js.map +1 -1
- package/build/data/mods/gen2/moves.js +0 -5
- package/build/data/mods/gen2/moves.js.map +1 -1
- package/build/data/mods/gen2/rulesets.js +7 -1
- package/build/data/mods/gen2/rulesets.js.map +1 -1
- package/build/data/mods/gen3/formats-data.js +3 -3
- package/build/data/mods/gen3/formats-data.js.map +1 -1
- package/build/data/mods/gen3/rulesets.js +1 -1
- package/build/data/mods/gen3/rulesets.js.map +1 -1
- package/build/data/mods/gen4/rulesets.js +1 -1
- package/build/data/mods/gen4/rulesets.js.map +1 -1
- package/build/data/mods/gen5/rulesets.js +1 -1
- package/build/data/mods/gen5/rulesets.js.map +1 -1
- package/build/data/mods/gen6/formats-data.js +64 -64
- package/build/data/mods/gen6/formats-data.js.map +1 -1
- package/build/data/mods/gen7/rulesets.js +1 -1
- package/build/data/mods/gen7/rulesets.js.map +1 -1
- package/build/data/pokedex.js +1 -1
- package/build/data/rulesets.js +232 -3
- package/build/data/rulesets.js.map +1 -1
- package/build/data/tags.js +26 -9
- package/build/data/tags.js.map +1 -1
- package/build/lib/utils.d.ts +4 -0
- package/build/lib/utils.js +20 -1
- package/build/lib/utils.js.map +1 -1
- package/build/sim/battle-stream.js +3 -0
- package/build/sim/battle-stream.js.map +1 -1
- package/build/sim/battle.d.ts +1 -1
- package/build/sim/battle.js.map +1 -1
- package/build/sim/dex-conditions.d.ts +1 -0
- package/build/sim/dex-conditions.js.map +1 -1
- package/build/sim/dex-species.d.ts +5 -0
- package/build/sim/dex-species.js +11 -3
- package/build/sim/dex-species.js.map +1 -1
- package/build/sim/exported-global-types.d.ts +4 -0
- package/build/sim/global-types.d.ts +4 -0
- package/build/sim/pokemon.d.ts +1 -0
- package/build/sim/pokemon.js +1 -0
- package/build/sim/pokemon.js.map +1 -1
- package/build/sim/team-validator.js +5 -1
- package/build/sim/team-validator.js.map +1 -1
- package/config/formats.ts +575 -466
- package/data/aliases.ts +9 -5
- package/data/conditions.ts +1 -1
- package/data/formats-data.ts +830 -28
- package/data/learnsets.ts +64 -39
- package/data/mods/gen1/formats-data.ts +1 -1
- package/data/mods/gen1/moves.ts +5 -0
- package/data/mods/gen1/scripts.ts +3 -2
- package/data/mods/gen2/moves.ts +0 -5
- package/data/mods/gen2/rulesets.ts +8 -1
- package/data/mods/gen3/formats-data.ts +3 -3
- package/data/mods/gen3/rulesets.ts +1 -1
- package/data/mods/gen4/rulesets.ts +1 -1
- package/data/mods/gen5/rulesets.ts +1 -1
- package/data/mods/gen6/formats-data.ts +64 -64
- package/data/mods/gen7/rulesets.ts +1 -1
- package/data/pokedex.ts +1 -1
- package/data/rulesets.ts +212 -3
- package/data/tags.ts +27 -9
- package/lib/utils.ts +16 -0
- package/package.json +2 -2
- package/sim/battle-stream.ts +3 -0
- package/sim/battle.ts +1 -1
- package/sim/dex-conditions.ts +1 -0
- package/sim/dex-species.ts +15 -3
- package/sim/exported-global-types.ts +4 -0
- package/sim/global-types.ts +4 -0
- package/sim/pokemon.ts +2 -0
- package/sim/team-validator.ts +6 -1
|
@@ -6,7 +6,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
6
6
|
tier: "NFE",
|
|
7
7
|
},
|
|
8
8
|
venusaur: {
|
|
9
|
-
randomBattleMoves: ["
|
|
9
|
+
randomBattleMoves: ["gigadrain", "leechseed", "sleeppowder", "sludgebomb", "substitute"],
|
|
10
10
|
randomDoubleBattleMoves: ["gigadrain", "hiddenpowerfire", "hiddenpowerice", "powerwhip", "protect", "sleeppowder", "sludgebomb"],
|
|
11
11
|
tier: "RU",
|
|
12
12
|
doublesTier: "DOU",
|
|
@@ -138,7 +138,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
138
138
|
tier: "LC",
|
|
139
139
|
},
|
|
140
140
|
pikachu: {
|
|
141
|
-
randomBattleMoves: ["
|
|
141
|
+
randomBattleMoves: ["extremespeed", "grassknot", "hiddenpowerice", "knockoff", "voltswitch", "volttackle"],
|
|
142
142
|
randomDoubleBattleMoves: ["brickbreak", "discharge", "encore", "extremespeed", "fakeout", "grassknot", "hiddenpowerice", "knockoff", "protect", "substitute", "thunderbolt", "voltswitch", "volttackle"],
|
|
143
143
|
tier: "NFE",
|
|
144
144
|
},
|
|
@@ -328,7 +328,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
328
328
|
tier: "LC",
|
|
329
329
|
},
|
|
330
330
|
arcanine: {
|
|
331
|
-
randomBattleMoves: ["closecombat", "
|
|
331
|
+
randomBattleMoves: ["closecombat", "extremespeed", "flareblitz", "morningsun", "roar", "toxic", "wildcharge", "willowisp"],
|
|
332
332
|
randomDoubleBattleMoves: ["closecombat", "extremespeed", "flareblitz", "protect", "snarl", "wildcharge", "willowisp"],
|
|
333
333
|
tier: "UU",
|
|
334
334
|
doublesTier: "DOU",
|
|
@@ -346,7 +346,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
346
346
|
doublesTier: "(DUU)",
|
|
347
347
|
},
|
|
348
348
|
politoed: {
|
|
349
|
-
randomBattleMoves: ["encore", "
|
|
349
|
+
randomBattleMoves: ["encore", "icebeam", "protect", "rest", "scald", "toxic"],
|
|
350
350
|
randomDoubleBattleMoves: ["encore", "focusblast", "helpinghand", "hiddenpowergrass", "hydropump", "hypnosis", "icebeam", "icywind", "protect", "scald"],
|
|
351
351
|
tier: "(PU)",
|
|
352
352
|
doublesTier: "DOU",
|
|
@@ -390,7 +390,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
390
390
|
tier: "NFE",
|
|
391
391
|
},
|
|
392
392
|
victreebel: {
|
|
393
|
-
randomBattleMoves: ["
|
|
393
|
+
randomBattleMoves: ["knockoff", "powerwhip", "sleeppowder", "sludgebomb", "solarbeam", "suckerpunch", "sunnyday", "weatherball"],
|
|
394
394
|
randomDoubleBattleMoves: ["growth", "knockoff", "powerwhip", "protect", "sleeppowder", "sludgebomb", "solarbeam", "suckerpunch", "sunnyday", "weatherball"],
|
|
395
395
|
tier: "PUBL",
|
|
396
396
|
doublesTier: "(DUU)",
|
|
@@ -411,7 +411,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
411
411
|
tier: "NFE",
|
|
412
412
|
},
|
|
413
413
|
golem: {
|
|
414
|
-
randomBattleMoves: ["earthquake", "explosion", "
|
|
414
|
+
randomBattleMoves: ["earthquake", "explosion", "stoneedge", "stealthrock", "suckerpunch", "toxic"],
|
|
415
415
|
randomDoubleBattleMoves: ["earthquake", "firepunch", "hammerarm", "protect", "rockslide", "stoneedge", "suckerpunch"],
|
|
416
416
|
tier: "PU",
|
|
417
417
|
doublesTier: "(DUU)",
|
|
@@ -420,7 +420,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
420
420
|
tier: "LC",
|
|
421
421
|
},
|
|
422
422
|
rapidash: {
|
|
423
|
-
randomBattleMoves: ["drillrun", "flareblitz", "morningsun", "
|
|
423
|
+
randomBattleMoves: ["drillrun", "flareblitz", "morningsun", "wildcharge", "willowisp"],
|
|
424
424
|
randomDoubleBattleMoves: ["drillrun", "flamecharge", "flareblitz", "hypnosis", "megahorn", "protect", "wildcharge", "willowisp"],
|
|
425
425
|
tier: "PU",
|
|
426
426
|
doublesTier: "(DUU)",
|
|
@@ -460,7 +460,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
460
460
|
doublesTier: "(DUU)",
|
|
461
461
|
},
|
|
462
462
|
farfetchd: {
|
|
463
|
-
randomBattleMoves: ["bravebird", "knockoff", "leafblade", "return", "
|
|
463
|
+
randomBattleMoves: ["bravebird", "knockoff", "leafblade", "return", "swordsdance"],
|
|
464
464
|
randomDoubleBattleMoves: ["bravebird", "leafblade", "nightslash", "protect", "return", "swordsdance"],
|
|
465
465
|
tier: "(PU)",
|
|
466
466
|
doublesTier: "(DUU)",
|
|
@@ -478,7 +478,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
478
478
|
tier: "LC",
|
|
479
479
|
},
|
|
480
480
|
dewgong: {
|
|
481
|
-
randomBattleMoves: ["encore", "icebeam", "
|
|
481
|
+
randomBattleMoves: ["encore", "icebeam", "protect", "surf", "toxic"],
|
|
482
482
|
randomDoubleBattleMoves: ["encore", "fakeout", "icebeam", "perishsong", "protect", "surf", "toxic"],
|
|
483
483
|
tier: "(PU)",
|
|
484
484
|
doublesTier: "(DUU)",
|
|
@@ -509,7 +509,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
509
509
|
doublesTier: "NFE",
|
|
510
510
|
},
|
|
511
511
|
gengar: {
|
|
512
|
-
randomBattleMoves: ["disable", "focusblast", "
|
|
512
|
+
randomBattleMoves: ["disable", "focusblast", "shadowball", "sludgewave", "substitute", "trick", "willowisp"],
|
|
513
513
|
randomDoubleBattleMoves: ["dazzlinggleam", "disable", "focusblast", "hypnosis", "protect", "shadowball", "sludgebomb", "substitute", "taunt", "willowisp"],
|
|
514
514
|
tier: "OU",
|
|
515
515
|
doublesTier: "DOU",
|
|
@@ -557,7 +557,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
557
557
|
tier: "LC",
|
|
558
558
|
},
|
|
559
559
|
electrode: {
|
|
560
|
-
randomBattleMoves: ["foulplay", "hiddenpowergrass", "signalbeam", "taunt", "thunderbolt", "voltswitch"],
|
|
560
|
+
randomBattleMoves: ["foulplay", "hiddenpowergrass", "hiddenpowerice", "signalbeam", "taunt", "thunderbolt", "voltswitch"],
|
|
561
561
|
randomDoubleBattleMoves: ["discharge", "foulplay", "hiddenpowerice", "protect", "taunt", "thunderwave", "voltswitch"],
|
|
562
562
|
tier: "PU",
|
|
563
563
|
doublesTier: "(DUU)",
|
|
@@ -614,7 +614,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
614
614
|
tier: "LC",
|
|
615
615
|
},
|
|
616
616
|
weezing: {
|
|
617
|
-
randomBattleMoves: ["fireblast", "painsplit", "
|
|
617
|
+
randomBattleMoves: ["fireblast", "painsplit", "sludgebomb", "toxicspikes", "willowisp"],
|
|
618
618
|
randomDoubleBattleMoves: ["explosion", "fireblast", "painsplit", "protect", "sludgebomb", "thunderbolt", "toxic", "willowisp"],
|
|
619
619
|
tier: "NU",
|
|
620
620
|
doublesTier: "(DUU)",
|
|
@@ -623,12 +623,12 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
623
623
|
tier: "LC",
|
|
624
624
|
},
|
|
625
625
|
rhydon: {
|
|
626
|
-
randomBattleMoves: ["earthquake", "megahorn", "
|
|
626
|
+
randomBattleMoves: ["earthquake", "megahorn", "stealthrock", "stoneedge", "toxic"],
|
|
627
627
|
tier: "NU",
|
|
628
628
|
doublesTier: "NFE",
|
|
629
629
|
},
|
|
630
630
|
rhyperior: {
|
|
631
|
-
randomBattleMoves: ["dragontail", "earthquake", "icepunch", "megahorn", "
|
|
631
|
+
randomBattleMoves: ["dragontail", "earthquake", "icepunch", "megahorn", "rockpolish", "stoneedge"],
|
|
632
632
|
randomDoubleBattleMoves: ["earthquake", "hammerarm", "megahorn", "protect", "rockslide", "stealthrock", "stoneedge"],
|
|
633
633
|
tier: "RU",
|
|
634
634
|
doublesTier: "DUU",
|
|
@@ -716,7 +716,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
716
716
|
doublesTier: "NFE",
|
|
717
717
|
},
|
|
718
718
|
scizor: {
|
|
719
|
-
randomBattleMoves: ["bugbite", "bulletpunch", "knockoff", "pursuit", "superpower", "swordsdance", "uturn"],
|
|
719
|
+
randomBattleMoves: ["bugbite", "bulletpunch", "defog", "knockoff", "pursuit", "roost", "superpower", "swordsdance", "uturn"],
|
|
720
720
|
randomDoubleBattleMoves: ["bugbite", "bulletpunch", "feint", "knockoff", "protect", "roost", "superpower", "swordsdance", "uturn"],
|
|
721
721
|
tier: "OU",
|
|
722
722
|
doublesTier: "DOU",
|
|
@@ -782,7 +782,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
782
782
|
tier: "LC",
|
|
783
783
|
},
|
|
784
784
|
gyarados: {
|
|
785
|
-
randomBattleMoves: ["bounce", "dragondance", "
|
|
785
|
+
randomBattleMoves: ["bounce", "dragondance", "earthquake", "stoneedge", "substitute", "waterfall"],
|
|
786
786
|
randomDoubleBattleMoves: ["bounce", "dragondance", "earthquake", "icefang", "protect", "stoneedge", "substitute", "taunt", "thunderwave", "waterfall"],
|
|
787
787
|
tier: "UU",
|
|
788
788
|
doublesTier: "(DUU)",
|
|
@@ -794,7 +794,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
794
794
|
doublesTier: "(DUU)",
|
|
795
795
|
},
|
|
796
796
|
lapras: {
|
|
797
|
-
randomBattleMoves: ["
|
|
797
|
+
randomBattleMoves: ["freezedry", "healbell", "hydropump", "icebeam", "thunderbolt", "toxic"],
|
|
798
798
|
randomDoubleBattleMoves: ["healbell", "hydropump", "icebeam", "iceshard", "icywind", "protect", "substitute", "surf", "thunderbolt"],
|
|
799
799
|
tier: "PU",
|
|
800
800
|
doublesTier: "(DUU)",
|
|
@@ -808,7 +808,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
808
808
|
tier: "LC",
|
|
809
809
|
},
|
|
810
810
|
vaporeon: {
|
|
811
|
-
randomBattleMoves: ["healbell", "icebeam", "protect", "
|
|
811
|
+
randomBattleMoves: ["healbell", "icebeam", "protect", "scald", "toxic", "wish"],
|
|
812
812
|
randomDoubleBattleMoves: ["helpinghand", "hydropump", "icebeam", "muddywater", "protect", "scald", "toxic", "wish"],
|
|
813
813
|
tier: "UU",
|
|
814
814
|
doublesTier: "DUU",
|
|
@@ -868,7 +868,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
868
868
|
tier: "LC",
|
|
869
869
|
},
|
|
870
870
|
omastar: {
|
|
871
|
-
randomBattleMoves: ["earthpower", "hydropump", "icebeam", "
|
|
871
|
+
randomBattleMoves: ["earthpower", "hydropump", "icebeam", "shellsmash", "spikes", "stealthrock"],
|
|
872
872
|
randomDoubleBattleMoves: ["earthpower", "hiddenpowerelectric", "hydropump", "icebeam", "muddywater", "protect", "shellsmash"],
|
|
873
873
|
tier: "NU",
|
|
874
874
|
doublesTier: "(DUU)",
|
|
@@ -1031,7 +1031,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
1031
1031
|
tier: "LC",
|
|
1032
1032
|
},
|
|
1033
1033
|
lanturn: {
|
|
1034
|
-
randomBattleMoves: ["healbell", "
|
|
1034
|
+
randomBattleMoves: ["healbell", "hydropump", "icebeam", "scald", "thunderbolt", "thunderwave", "toxic", "voltswitch"],
|
|
1035
1035
|
randomDoubleBattleMoves: ["discharge", "hiddenpowergrass", "hydropump", "icebeam", "protect", "scald", "surf", "thunderbolt", "thunderwave"],
|
|
1036
1036
|
tier: "NU",
|
|
1037
1037
|
doublesTier: "DUU",
|
|
@@ -1148,7 +1148,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
1148
1148
|
tier: "NFE",
|
|
1149
1149
|
},
|
|
1150
1150
|
honchkrow: {
|
|
1151
|
-
randomBattleMoves: ["bravebird", "heatwave", "pursuit", "roost", "
|
|
1151
|
+
randomBattleMoves: ["bravebird", "heatwave", "pursuit", "roost", "suckerpunch", "superpower"],
|
|
1152
1152
|
randomDoubleBattleMoves: ["bravebird", "heatwave", "protect", "roost", "substitute", "suckerpunch", "superpower"],
|
|
1153
1153
|
tier: "RUBL",
|
|
1154
1154
|
doublesTier: "(DUU)",
|
|
@@ -1277,7 +1277,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
1277
1277
|
doublesTier: "NFE",
|
|
1278
1278
|
},
|
|
1279
1279
|
mamoswine: {
|
|
1280
|
-
randomBattleMoves: ["earthquake", "
|
|
1280
|
+
randomBattleMoves: ["earthquake", "iceshard", "iciclecrash", "knockoff", "stealthrock", "superpower"],
|
|
1281
1281
|
randomDoubleBattleMoves: ["earthquake", "iceshard", "iciclecrash", "knockoff", "protect", "rockslide", "superpower"],
|
|
1282
1282
|
tier: "UU",
|
|
1283
1283
|
doublesTier: "(DUU)",
|
|
@@ -1403,7 +1403,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
1403
1403
|
doublesTier: "DUber",
|
|
1404
1404
|
},
|
|
1405
1405
|
hooh: {
|
|
1406
|
-
randomBattleMoves: ["bravebird", "earthquake", "
|
|
1406
|
+
randomBattleMoves: ["bravebird", "earthquake", "roost", "sacredfire", "substitute", "toxic"],
|
|
1407
1407
|
randomDoubleBattleMoves: ["bravebird", "earthquake", "protect", "roost", "sacredfire", "skydrop", "substitute", "tailwind", "toxic"],
|
|
1408
1408
|
tier: "Uber",
|
|
1409
1409
|
doublesTier: "DUber",
|
|
@@ -1421,7 +1421,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
1421
1421
|
tier: "NFE",
|
|
1422
1422
|
},
|
|
1423
1423
|
sceptile: {
|
|
1424
|
-
randomBattleMoves: ["focusblast", "gigadrain", "
|
|
1424
|
+
randomBattleMoves: ["focusblast", "gigadrain", "hiddenpowerfire", "hiddenpowerice", "leafstorm", "leechseed", "substitute"],
|
|
1425
1425
|
randomDoubleBattleMoves: ["focusblast", "gigadrain", "hiddenpowerfire", "hiddenpowerice", "leafstorm", "protect", "substitute"],
|
|
1426
1426
|
tier: "NUBL",
|
|
1427
1427
|
doublesTier: "(DUU)",
|
|
@@ -1567,7 +1567,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
1567
1567
|
doublesTier: "DOU",
|
|
1568
1568
|
},
|
|
1569
1569
|
gallade: {
|
|
1570
|
-
randomBattleMoves: ["
|
|
1570
|
+
randomBattleMoves: ["closecombat", "icepunch", "knockoff", "shadowsneak", "swordsdance", "trick", "zenheadbutt"],
|
|
1571
1571
|
randomDoubleBattleMoves: ["closecombat", "drainpunch", "helpinghand", "icepunch", "knockoff", "protect", "shadowsneak", "stoneedge", "trick", "trickroom", "zenheadbutt"],
|
|
1572
1572
|
tier: "RU",
|
|
1573
1573
|
doublesTier: "(DUU)",
|
|
@@ -1699,7 +1699,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
1699
1699
|
doublesTier: "(DUU)",
|
|
1700
1700
|
},
|
|
1701
1701
|
aggronmega: {
|
|
1702
|
-
randomBattleMoves: ["earthquake", "heavyslam", "roar", "
|
|
1702
|
+
randomBattleMoves: ["earthquake", "heavyslam", "roar", "stoneedge", "stealthrock", "thunderwave", "toxic"],
|
|
1703
1703
|
randomDoubleBattleMoves: ["aquatail", "earthquake", "heavyslam", "lowkick", "protect", "rockslide"],
|
|
1704
1704
|
tier: "UU",
|
|
1705
1705
|
doublesTier: "(DUU)",
|
|
@@ -1894,7 +1894,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
1894
1894
|
doublesTier: "(DUU)",
|
|
1895
1895
|
},
|
|
1896
1896
|
solrock: {
|
|
1897
|
-
randomBattleMoves: ["explosion", "lightscreen", "morningsun", "reflect", "rockslide", "stealthrock", "willowisp"],
|
|
1897
|
+
randomBattleMoves: ["explosion", "earthquake", "lightscreen", "morningsun", "reflect", "rockslide", "stealthrock", "willowisp"],
|
|
1898
1898
|
randomDoubleBattleMoves: ["helpinghand", "protect", "rockslide", "stoneedge", "trickroom", "willowisp", "zenheadbutt"],
|
|
1899
1899
|
tier: "(PU)",
|
|
1900
1900
|
doublesTier: "(DUU)",
|
|
@@ -2069,7 +2069,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
2069
2069
|
doublesTier: "(DUU)",
|
|
2070
2070
|
},
|
|
2071
2071
|
gorebyss: {
|
|
2072
|
-
randomBattleMoves: ["hiddenpowergrass", "hydropump", "icebeam", "shellsmash"
|
|
2072
|
+
randomBattleMoves: ["hiddenpowergrass", "hydropump", "icebeam", "shellsmash"],
|
|
2073
2073
|
randomDoubleBattleMoves: ["hiddenpowergrass", "icebeam", "protect", "shellsmash", "substitute", "surf"],
|
|
2074
2074
|
tier: "PU",
|
|
2075
2075
|
doublesTier: "(DUU)",
|
|
@@ -2092,7 +2092,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
2092
2092
|
tier: "NFE",
|
|
2093
2093
|
},
|
|
2094
2094
|
salamence: {
|
|
2095
|
-
randomBattleMoves: ["dracometeor", "dragonclaw", "dragondance", "earthquake", "fireblast", "outrage"],
|
|
2095
|
+
randomBattleMoves: ["dracometeor", "dragonclaw", "dragondance", "earthquake", "fireblast", "outrage", "roost"],
|
|
2096
2096
|
randomDoubleBattleMoves: ["dracometeor", "dragonclaw", "dragondance", "earthquake", "fireblast", "hydropump", "protect", "rockslide", "tailwind"],
|
|
2097
2097
|
tier: "UUBL",
|
|
2098
2098
|
doublesTier: "DUU",
|
|
@@ -2123,7 +2123,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
2123
2123
|
doublesTier: "DUU",
|
|
2124
2124
|
},
|
|
2125
2125
|
regirock: {
|
|
2126
|
-
randomBattleMoves: ["curse", "drainpunch", "
|
|
2126
|
+
randomBattleMoves: ["curse", "drainpunch", "earthquake", "rest", "stealthrock", "stoneedge", "thunderwave", "toxic"],
|
|
2127
2127
|
randomDoubleBattleMoves: ["curse", "drainpunch", "protect", "rockslide", "stealthrock", "stoneedge", "thunderwave"],
|
|
2128
2128
|
tier: "NU",
|
|
2129
2129
|
doublesTier: "(DUU)",
|
|
@@ -2141,7 +2141,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
2141
2141
|
doublesTier: "(DUU)",
|
|
2142
2142
|
},
|
|
2143
2143
|
latias: {
|
|
2144
|
-
randomBattleMoves: ["defog", "dracometeor", "healingwish", "hiddenpowerfire", "psyshock", "roost"
|
|
2144
|
+
randomBattleMoves: ["defog", "dracometeor", "healingwish", "hiddenpowerfire", "psyshock", "roost"],
|
|
2145
2145
|
randomDoubleBattleMoves: ["dragonpulse", "healpulse", "helpinghand", "lightscreen", "protect", "psychic", "reflect", "tailwind"],
|
|
2146
2146
|
tier: "OU",
|
|
2147
2147
|
doublesTier: "(DUU)",
|
|
@@ -2153,13 +2153,13 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
2153
2153
|
doublesTier: "(DUU)",
|
|
2154
2154
|
},
|
|
2155
2155
|
latios: {
|
|
2156
|
-
randomBattleMoves: ["
|
|
2156
|
+
randomBattleMoves: ["calmmind", "dracometeor", "hiddenpowerfire", "psyshock", "roost", "trick"],
|
|
2157
2157
|
randomDoubleBattleMoves: ["dracometeor", "dragonpulse", "hiddenpowerfire", "protect", "psyshock", "substitute", "surf", "tailwind", "thunderbolt", "trick"],
|
|
2158
2158
|
tier: "OU",
|
|
2159
2159
|
doublesTier: "DOU",
|
|
2160
2160
|
},
|
|
2161
2161
|
latiosmega: {
|
|
2162
|
-
randomBattleMoves: ["calmmind", "
|
|
2162
|
+
randomBattleMoves: ["calmmind", "dracometeor", "earthquake", "hiddenpowerfire", "psyshock", "roost"],
|
|
2163
2163
|
randomDoubleBattleMoves: ["dracometeor", "dragonpulse", "hiddenpowerfire", "protect", "psyshock", "substitute", "surf", "tailwind", "thunderbolt"],
|
|
2164
2164
|
tier: "(OU)",
|
|
2165
2165
|
doublesTier: "(DOU)",
|
|
@@ -2175,7 +2175,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
2175
2175
|
randomDoubleBattleMoves: ["calmmind", "icebeam", "muddywater", "originpulse", "protect", "rest", "sleeptalk", "thunder", "waterspout"],
|
|
2176
2176
|
},
|
|
2177
2177
|
groudon: {
|
|
2178
|
-
randomBattleMoves: ["
|
|
2178
|
+
randomBattleMoves: ["earthquake", "firepunch", "lavaplume", "roar", "stealthrock", "stoneedge", "thunderwave", "toxic"],
|
|
2179
2179
|
randomDoubleBattleMoves: ["dragonclaw", "firepunch", "precipiceblades", "protect", "rockpolish", "rockslide", "stoneedge", "swordsdance"],
|
|
2180
2180
|
tier: "Uber",
|
|
2181
2181
|
doublesTier: "DUber",
|
|
@@ -2245,7 +2245,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
2245
2245
|
doublesTier: "NFE",
|
|
2246
2246
|
},
|
|
2247
2247
|
infernape: {
|
|
2248
|
-
randomBattleMoves: ["closecombat", "
|
|
2248
|
+
randomBattleMoves: ["closecombat", "fireblast", "flareblitz", "grassknot", "machpunch", "stealthrock", "stoneedge", "uturn"],
|
|
2249
2249
|
randomDoubleBattleMoves: ["closecombat", "fakeout", "feint", "flareblitz", "grassknot", "heatwave", "machpunch", "protect", "stoneedge", "taunt", "thunderpunch", "uturn"],
|
|
2250
2250
|
tier: "UU",
|
|
2251
2251
|
doublesTier: "DUU",
|
|
@@ -2327,7 +2327,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
2327
2327
|
tier: "LC",
|
|
2328
2328
|
},
|
|
2329
2329
|
wormadam: {
|
|
2330
|
-
randomBattleMoves: ["gigadrain", "protect", "signalbeam", "synthesis", "toxic"],
|
|
2330
|
+
randomBattleMoves: ["gigadrain", "hiddenpowerrock", "protect", "signalbeam", "synthesis", "toxic"],
|
|
2331
2331
|
randomDoubleBattleMoves: ["gigadrain", "hiddenpowerice", "hiddenpowerrock", "leafstorm", "protect", "signalbeam", "stringshot"],
|
|
2332
2332
|
tier: "(PU)",
|
|
2333
2333
|
doublesTier: "(DUU)",
|
|
@@ -2651,7 +2651,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
2651
2651
|
doublesTier: "(DUU)",
|
|
2652
2652
|
},
|
|
2653
2653
|
manaphy: {
|
|
2654
|
-
randomBattleMoves: ["energyball", "icebeam", "
|
|
2654
|
+
randomBattleMoves: ["energyball", "icebeam", "surf", "tailglow"],
|
|
2655
2655
|
randomDoubleBattleMoves: ["energyball", "helpinghand", "icebeam", "icywind", "protect", "scald", "surf", "tailglow"],
|
|
2656
2656
|
tier: "OU",
|
|
2657
2657
|
doublesTier: "(DUU)",
|
|
@@ -2701,11 +2701,11 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
2701
2701
|
randomDoubleBattleMoves: ["calmmind", "earthpower", "judgment", "protect", "recover", "thunderbolt", "willowisp"],
|
|
2702
2702
|
},
|
|
2703
2703
|
arceusfighting: {
|
|
2704
|
-
randomBattleMoves: ["calmmind", "icebeam", "judgment", "recover", "
|
|
2704
|
+
randomBattleMoves: ["calmmind", "icebeam", "judgment", "recover", "shadowball", "stoneedge"],
|
|
2705
2705
|
randomDoubleBattleMoves: ["calmmind", "icebeam", "judgment", "protect", "recover", "shadowball", "willowisp"],
|
|
2706
2706
|
},
|
|
2707
2707
|
arceusfire: {
|
|
2708
|
-
randomBattleMoves: ["calmmind", "fireblast", "icebeam", "recover", "
|
|
2708
|
+
randomBattleMoves: ["calmmind", "fireblast", "icebeam", "recover", "thunderbolt"],
|
|
2709
2709
|
randomDoubleBattleMoves: ["calmmind", "heatwave", "judgment", "protect", "recover", "thunderbolt", "willowisp"],
|
|
2710
2710
|
},
|
|
2711
2711
|
arceusflying: {
|
|
@@ -2749,7 +2749,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
2749
2749
|
randomDoubleBattleMoves: ["calmmind", "fireblast", "icebeam", "icywind", "judgment", "protect", "recover", "surf"],
|
|
2750
2750
|
},
|
|
2751
2751
|
victini: {
|
|
2752
|
-
randomBattleMoves: ["blueflare", "boltstrike", "
|
|
2752
|
+
randomBattleMoves: ["blueflare", "boltstrike", "energyball", "glaciate", "uturn", "vcreate", "zenheadbutt"],
|
|
2753
2753
|
randomDoubleBattleMoves: ["blueflare", "boltstrike", "focusblast", "protect", "psychic", "uturn", "vcreate"],
|
|
2754
2754
|
tier: "UUBL",
|
|
2755
2755
|
doublesTier: "DUU",
|
|
@@ -2872,7 +2872,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
2872
2872
|
tier: "LC",
|
|
2873
2873
|
},
|
|
2874
2874
|
zebstrika: {
|
|
2875
|
-
randomBattleMoves: ["hiddenpowergrass", "overheat", "thunderbolt", "voltswitch", "wildcharge"],
|
|
2875
|
+
randomBattleMoves: ["hiddenpowergrass", "hiddenpowerice", "overheat", "thunderbolt", "voltswitch", "wildcharge"],
|
|
2876
2876
|
randomDoubleBattleMoves: ["hiddenpowergrass", "overheat", "protect", "voltswitch", "wildcharge"],
|
|
2877
2877
|
tier: "PU",
|
|
2878
2878
|
doublesTier: "(DUU)",
|
|
@@ -2884,7 +2884,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
2884
2884
|
tier: "NFE",
|
|
2885
2885
|
},
|
|
2886
2886
|
gigalith: {
|
|
2887
|
-
randomBattleMoves: ["earthquake", "explosion", "
|
|
2887
|
+
randomBattleMoves: ["earthquake", "explosion", "stealthrock", "stoneedge", "superpower"],
|
|
2888
2888
|
randomDoubleBattleMoves: ["autotomize", "earthquake", "explosion", "protect", "rockslide", "stealthrock", "stoneedge", "superpower", "wideguard"],
|
|
2889
2889
|
tier: "(PU)",
|
|
2890
2890
|
doublesTier: "(DUU)",
|
|
@@ -2908,7 +2908,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
2908
2908
|
doublesTier: "DUU",
|
|
2909
2909
|
},
|
|
2910
2910
|
audino: {
|
|
2911
|
-
randomBattleMoves: ["doubleedge", "encore", "healbell", "protect", "toxic", "wish"],
|
|
2911
|
+
randomBattleMoves: ["doubleedge", "encore", "healbell", "knockoff", "protect", "toxic", "wish"],
|
|
2912
2912
|
randomDoubleBattleMoves: ["doubleedge", "healbell", "healpulse", "helpinghand", "lightscreen", "protect", "reflect", "thunderwave", "trickroom"],
|
|
2913
2913
|
tier: "PU",
|
|
2914
2914
|
doublesTier: "(DUU)",
|
|
@@ -2927,7 +2927,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
2927
2927
|
doublesTier: "NFE",
|
|
2928
2928
|
},
|
|
2929
2929
|
conkeldurr: {
|
|
2930
|
-
randomBattleMoves: ["bulkup", "drainpunch", "icepunch", "knockoff", "machpunch"],
|
|
2930
|
+
randomBattleMoves: ["bulkup", "drainpunch", "facade", "icepunch", "knockoff", "machpunch"],
|
|
2931
2931
|
randomDoubleBattleMoves: ["drainpunch", "icepunch", "knockoff", "machpunch", "protect", "wideguard"],
|
|
2932
2932
|
tier: "UUBL",
|
|
2933
2933
|
doublesTier: "DOU",
|
|
@@ -2939,7 +2939,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
2939
2939
|
tier: "NFE",
|
|
2940
2940
|
},
|
|
2941
2941
|
seismitoad: {
|
|
2942
|
-
randomBattleMoves: ["earthquake", "hydropump", "knockoff", "raindance", "scald", "
|
|
2942
|
+
randomBattleMoves: ["earthquake", "hydropump", "knockoff", "raindance", "scald", "sludgebomb", "stealthrock", "toxic"],
|
|
2943
2943
|
randomDoubleBattleMoves: ["earthquake", "hiddenpowerelectric", "hydropump", "icywind", "muddywater", "protect", "sludgebomb"],
|
|
2944
2944
|
tier: "RU",
|
|
2945
2945
|
doublesTier: "(DUU)",
|
|
@@ -2984,7 +2984,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
2984
2984
|
tier: "LC",
|
|
2985
2985
|
},
|
|
2986
2986
|
whimsicott: {
|
|
2987
|
-
randomBattleMoves: ["encore", "leechseed", "memento", "moonblast", "stunspore", "tailwind", "taunt", "toxic", "uturn"],
|
|
2987
|
+
randomBattleMoves: ["encore", "energyball", "leechseed", "memento", "moonblast", "stunspore", "tailwind", "taunt", "toxic", "uturn"],
|
|
2988
2988
|
randomDoubleBattleMoves: ["dazzlinggleam", "encore", "gigadrain", "helpinghand", "leechseed", "moonblast", "protect", "stunspore", "substitute", "tailwind", "taunt", "uturn"],
|
|
2989
2989
|
tier: "UU",
|
|
2990
2990
|
doublesTier: "DOU",
|
|
@@ -3041,7 +3041,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
3041
3041
|
tier: "LC",
|
|
3042
3042
|
},
|
|
3043
3043
|
crustle: {
|
|
3044
|
-
randomBattleMoves: ["earthquake", "
|
|
3044
|
+
randomBattleMoves: ["earthquake", "shellsmash", "spikes", "stealthrock", "stoneedge", "xscissor"],
|
|
3045
3045
|
randomDoubleBattleMoves: ["earthquake", "protect", "rockslide", "shellsmash", "stoneedge", "xscissor"],
|
|
3046
3046
|
tier: "PU",
|
|
3047
3047
|
doublesTier: "(DUU)",
|
|
@@ -3122,7 +3122,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
3122
3122
|
tier: "NFE",
|
|
3123
3123
|
},
|
|
3124
3124
|
gothitelle: {
|
|
3125
|
-
randomBattleMoves: ["calmmind", "
|
|
3125
|
+
randomBattleMoves: ["calmmind", "hiddenpowerfighting", "psychic", "rest", "sleeptalk", "toxic"],
|
|
3126
3126
|
randomDoubleBattleMoves: ["energyball", "healpulse", "hiddenpowerfighting", "lightscreen", "protect", "psychic", "psyshock", "reflect", "shadowball", "taunt", "thunderbolt", "trickroom"],
|
|
3127
3127
|
tier: "(PU)",
|
|
3128
3128
|
doublesTier: "(DUU)",
|
|
@@ -3188,7 +3188,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
3188
3188
|
tier: "LC",
|
|
3189
3189
|
},
|
|
3190
3190
|
amoonguss: {
|
|
3191
|
-
randomBattleMoves: ["
|
|
3191
|
+
randomBattleMoves: ["foulplay", "gigadrain", "hiddenpowerfire", "sludgebomb", "spore", "synthesis"],
|
|
3192
3192
|
randomDoubleBattleMoves: ["gigadrain", "hiddenpowerfire", "protect", "ragepowder", "sludgebomb", "spore", "stunspore", "synthesis"],
|
|
3193
3193
|
tier: "OU",
|
|
3194
3194
|
doublesTier: "DOU",
|
|
@@ -3309,7 +3309,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
3309
3309
|
doublesTier: "(DUU)",
|
|
3310
3310
|
},
|
|
3311
3311
|
stunfisk: {
|
|
3312
|
-
randomBattleMoves: ["discharge", "earthpower", "
|
|
3312
|
+
randomBattleMoves: ["discharge", "earthpower", "foulplay", "rest", "sleeptalk", "stealthrock", "toxic"],
|
|
3313
3313
|
randomDoubleBattleMoves: ["discharge", "earthpower", "electroweb", "protect", "scald", "stealthrock"],
|
|
3314
3314
|
tier: "PU",
|
|
3315
3315
|
doublesTier: "(DUU)",
|
|
@@ -3333,7 +3333,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
3333
3333
|
tier: "LC",
|
|
3334
3334
|
},
|
|
3335
3335
|
golurk: {
|
|
3336
|
-
randomBattleMoves: ["dynamicpunch", "earthquake", "icepunch", "rockpolish", "shadowpunch", "stealthrock"],
|
|
3336
|
+
randomBattleMoves: ["dynamicpunch", "earthquake", "icepunch", "rockpolish", "shadowpunch", "stealthrock", "stoneedge"],
|
|
3337
3337
|
randomDoubleBattleMoves: ["dynamicpunch", "earthquake", "icepunch", "protect", "rockpolish", "shadowpunch", "stoneedge"],
|
|
3338
3338
|
tier: "NU",
|
|
3339
3339
|
doublesTier: "(DUU)",
|
|
@@ -3374,7 +3374,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
3374
3374
|
doublesTier: "(DUU)",
|
|
3375
3375
|
},
|
|
3376
3376
|
heatmor: {
|
|
3377
|
-
randomBattleMoves: ["fireblast", "
|
|
3377
|
+
randomBattleMoves: ["fireblast", "gigadrain", "knockoff", "suckerpunch", "superpower"],
|
|
3378
3378
|
randomDoubleBattleMoves: ["fireblast", "focusblast", "gigadrain", "heatwave", "protect", "suckerpunch"],
|
|
3379
3379
|
tier: "(PU)",
|
|
3380
3380
|
doublesTier: "(DUU)",
|
|
@@ -3407,7 +3407,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
3407
3407
|
doublesTier: "DUU",
|
|
3408
3408
|
},
|
|
3409
3409
|
cobalion: {
|
|
3410
|
-
randomBattleMoves: ["closecombat", "
|
|
3410
|
+
randomBattleMoves: ["closecombat", "ironhead", "stealthrock", "stoneedge", "substitute", "swordsdance", "taunt", "voltswitch"],
|
|
3411
3411
|
randomDoubleBattleMoves: ["closecombat", "ironhead", "protect", "stoneedge", "substitute", "swordsdance", "thunderwave"],
|
|
3412
3412
|
tier: "UU",
|
|
3413
3413
|
doublesTier: "(DUU)",
|
|
@@ -3419,7 +3419,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
3419
3419
|
doublesTier: "DOU",
|
|
3420
3420
|
},
|
|
3421
3421
|
virizion: {
|
|
3422
|
-
randomBattleMoves: ["closecombat", "leafblade", "stoneedge", "swordsdance"
|
|
3422
|
+
randomBattleMoves: ["closecombat", "leafblade", "stoneedge", "swordsdance"],
|
|
3423
3423
|
randomDoubleBattleMoves: ["closecombat", "leafblade", "protect", "stoneedge", "swordsdance", "synthesis", "taunt"],
|
|
3424
3424
|
tier: "RU",
|
|
3425
3425
|
doublesTier: "(DUU)",
|
|
@@ -3491,7 +3491,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
3491
3491
|
doublesTier: "DUber",
|
|
3492
3492
|
},
|
|
3493
3493
|
keldeo: {
|
|
3494
|
-
randomBattleMoves: ["calmmind", "hiddenpowerelectric", "
|
|
3494
|
+
randomBattleMoves: ["calmmind", "hiddenpowerelectric", "hydropump", "icywind", "scald", "secretsword", "substitute"],
|
|
3495
3495
|
randomDoubleBattleMoves: ["hiddenpowerelectric", "hiddenpowerflying", "hydropump", "icywind", "protect", "secretsword", "substitute", "surf", "taunt"],
|
|
3496
3496
|
tier: "OU",
|
|
3497
3497
|
doublesTier: "DOU",
|
|
@@ -3501,7 +3501,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
3501
3501
|
doublesTier: "DOU",
|
|
3502
3502
|
},
|
|
3503
3503
|
meloetta: {
|
|
3504
|
-
randomBattleMoves: ["calmmind", "focusblast", "hypervoice", "psyshock", "shadowball", "uturn"],
|
|
3504
|
+
randomBattleMoves: ["calmmind", "focusblast", "hypervoice", "psyshock", "shadowball", "trick", "uturn"],
|
|
3505
3505
|
randomDoubleBattleMoves: ["calmmind", "focusblast", "hypervoice", "protect", "psyshock", "shadowball", "thunderbolt"],
|
|
3506
3506
|
tier: "RU",
|
|
3507
3507
|
doublesTier: "(DUU)",
|
|
@@ -3691,7 +3691,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
3691
3691
|
tier: "LC",
|
|
3692
3692
|
},
|
|
3693
3693
|
aromatisse: {
|
|
3694
|
-
randomBattleMoves: ["aromatherapy", "
|
|
3694
|
+
randomBattleMoves: ["aromatherapy", "moonblast", "protect", "toxic", "wish"],
|
|
3695
3695
|
randomDoubleBattleMoves: ["aromatherapy", "healpulse", "moonblast", "protect", "thunderbolt", "trickroom", "wish"],
|
|
3696
3696
|
tier: "RU",
|
|
3697
3697
|
doublesTier: "DUU",
|
|
@@ -3799,7 +3799,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
3799
3799
|
tier: "NFE",
|
|
3800
3800
|
},
|
|
3801
3801
|
goodra: {
|
|
3802
|
-
randomBattleMoves: ["dracometeor", "
|
|
3802
|
+
randomBattleMoves: ["dracometeor", "dragontail", "earthquake", "fireblast", "powerwhip", "sludgebomb", "thunderbolt"],
|
|
3803
3803
|
randomDoubleBattleMoves: ["dracometeor", "dragonpulse", "fireblast", "focusblast", "icebeam", "muddywater", "protect", "thunderbolt"],
|
|
3804
3804
|
tier: "UU",
|
|
3805
3805
|
doublesTier: "DUU",
|
|
@@ -3814,7 +3814,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
3814
3814
|
tier: "LC",
|
|
3815
3815
|
},
|
|
3816
3816
|
trevenant: {
|
|
3817
|
-
randomBattleMoves: ["earthquake", "hornleech", "rockslide", "shadowclaw", "trickroom", "woodhammer"],
|
|
3817
|
+
randomBattleMoves: ["earthquake", "hornleech", "rest", "rockslide", "shadowclaw", "trickroom", "woodhammer"],
|
|
3818
3818
|
randomDoubleBattleMoves: ["earthquake", "hornleech", "leechseed", "protect", "rockslide", "shadowclaw", "trickroom", "willowisp", "woodhammer"],
|
|
3819
3819
|
tier: "PU",
|
|
3820
3820
|
doublesTier: "(DUU)",
|
|
@@ -3874,25 +3874,25 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
3874
3874
|
doublesTier: "(DUU)",
|
|
3875
3875
|
},
|
|
3876
3876
|
xerneas: {
|
|
3877
|
-
randomBattleMoves: ["closecombat", "focusblast", "geomancy", "hiddenpowerfire", "moonblast", "psyshock", "
|
|
3877
|
+
randomBattleMoves: ["closecombat", "focusblast", "geomancy", "hiddenpowerfire", "moonblast", "psyshock", "thunderbolt"],
|
|
3878
3878
|
randomDoubleBattleMoves: ["closecombat", "dazzlinggleam", "focusblast", "geomancy", "hiddenpowerfire", "protect", "psyshock", "rockslide", "thunder", "thunderbolt"],
|
|
3879
3879
|
tier: "Uber",
|
|
3880
3880
|
doublesTier: "DUber",
|
|
3881
3881
|
},
|
|
3882
3882
|
yveltal: {
|
|
3883
|
-
randomBattleMoves: ["darkpulse", "
|
|
3883
|
+
randomBattleMoves: ["darkpulse", "foulplay", "oblivionwing", "roost", "suckerpunch", "taunt", "toxic", "uturn"],
|
|
3884
3884
|
randomDoubleBattleMoves: ["darkpulse", "focusblast", "hurricane", "oblivionwing", "protect", "roost", "skydrop", "snarl", "suckerpunch", "taunt"],
|
|
3885
3885
|
tier: "Uber",
|
|
3886
3886
|
doublesTier: "DUber",
|
|
3887
3887
|
},
|
|
3888
3888
|
zygarde: {
|
|
3889
|
-
randomBattleMoves: ["dragondance", "earthquake", "extremespeed", "outrage", "stoneedge"],
|
|
3889
|
+
randomBattleMoves: ["dragondance", "earthquake", "extremespeed", "glare", "outrage", "stoneedge"],
|
|
3890
3890
|
randomDoubleBattleMoves: ["coil", "dragondance", "extremespeed", "glare", "landswrath", "protect", "rockslide", "stoneedge"],
|
|
3891
3891
|
tier: "UUBL",
|
|
3892
3892
|
doublesTier: "(DUU)",
|
|
3893
3893
|
},
|
|
3894
3894
|
diancie: {
|
|
3895
|
-
randomBattleMoves: ["diamondstorm", "hiddenpowerfire", "lightscreen", "moonblast", "reflect", "stealthrock"],
|
|
3895
|
+
randomBattleMoves: ["diamondstorm", "earthpower", "hiddenpowerfire", "lightscreen", "moonblast", "reflect", "stealthrock"],
|
|
3896
3896
|
randomDoubleBattleMoves: ["calmmind", "dazzlinggleam", "diamondstorm", "lightscreen", "moonblast", "protect", "psychic", "reflect", "safeguard", "substitute"],
|
|
3897
3897
|
tier: "RU",
|
|
3898
3898
|
doublesTier: "DUU",
|
|
@@ -3910,7 +3910,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
3910
3910
|
doublesTier: "(DUU)",
|
|
3911
3911
|
},
|
|
3912
3912
|
hoopaunbound: {
|
|
3913
|
-
randomBattleMoves: ["darkpulse", "drainpunch", "focusblast", "gunkshot", "hyperspacefury", "
|
|
3913
|
+
randomBattleMoves: ["darkpulse", "drainpunch", "focusblast", "gunkshot", "hyperspacefury", "nastyplot", "psychic", "substitute", "trick", "zenheadbutt"],
|
|
3914
3914
|
randomDoubleBattleMoves: ["darkpulse", "drainpunch", "focusblast", "gunkshot", "hyperspacefury", "icepunch", "protect", "psychic", "zenheadbutt"],
|
|
3915
3915
|
tier: "Uber",
|
|
3916
3916
|
doublesTier: "DOU",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export const Rulesets: {[k: string]: ModdedFormatData} = {
|
|
2
2
|
standard: {
|
|
3
3
|
inherit: true,
|
|
4
|
-
ruleset: ['Obtainable', 'Team Preview', 'Sleep Clause Mod', 'Species Clause', 'Nickname Clause', 'OHKO Clause', 'Moody Clause', 'Evasion Moves Clause', 'Endless Battle Clause', 'HP Percentage Mod', 'Cancel Mod'],
|
|
4
|
+
ruleset: ['Obtainable', 'Team Preview', 'Sleep Clause Mod', 'Species Clause', 'Nickname Clause', 'OHKO Clause', 'Moody Clause', 'Evasion Items Clause', 'Evasion Moves Clause', 'Endless Battle Clause', 'HP Percentage Mod', 'Cancel Mod'],
|
|
5
5
|
},
|
|
6
6
|
standarddoubles: {
|
|
7
7
|
inherit: true,
|
package/data/pokedex.ts
CHANGED
|
@@ -16536,7 +16536,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
16536
16536
|
num: -6,
|
|
16537
16537
|
name: "Pyroak",
|
|
16538
16538
|
types: ["Fire", "Grass"],
|
|
16539
|
-
baseStats: {hp: 120, atk: 70, def: 105, spa:
|
|
16539
|
+
baseStats: {hp: 120, atk: 70, def: 105, spa: 70, spd: 65, spe: 60},
|
|
16540
16540
|
abilities: {0: "Rock Head", 1: "Battle Armor", H: "Contrary"},
|
|
16541
16541
|
heightm: 2.1,
|
|
16542
16542
|
weightkg: 168,
|