@pkmn/sim 0.5.11 → 0.5.12
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/README.md +5 -0
- package/build/config/formats.js +346 -281
- package/build/config/formats.js.map +1 -1
- package/build/data/abilities.js +7 -7
- package/build/data/abilities.js.map +1 -1
- package/build/data/aliases.js +2 -0
- package/build/data/aliases.js.map +1 -1
- package/build/data/conditions.js +8 -12
- package/build/data/conditions.js.map +1 -1
- package/build/data/formats-data.js +33 -32
- package/build/data/formats-data.js.map +1 -1
- package/build/data/items.js +1 -1
- package/build/data/items.js.map +1 -1
- package/build/data/mods/gen1/moves.js +2 -4
- package/build/data/mods/gen1/moves.js.map +1 -1
- package/build/data/mods/gen3/formats-data.js +1 -1
- package/build/data/mods/gen3/formats-data.js.map +1 -1
- package/build/data/moves.js +14 -12
- package/build/data/moves.js.map +1 -1
- package/build/data/pokedex.js +2 -2
- package/build/data/pokedex.js.map +1 -1
- package/build/data/text/moves.js +1 -0
- package/build/data/text/moves.js.map +1 -1
- package/build/sim/battle.js +13 -11
- package/build/sim/battle.js.map +1 -1
- package/build/sim/dex-conditions.js +10 -3
- package/build/sim/dex-conditions.js.map +1 -1
- package/build/sim/team-validator.js +1 -1
- package/build/sim/team-validator.js.map +1 -1
- package/config/formats.ts +332 -265
- package/data/abilities.ts +7 -7
- package/data/aliases.ts +2 -0
- package/data/conditions.ts +8 -10
- package/data/formats-data.ts +33 -32
- package/data/items.ts +1 -1
- package/data/mods/gen1/moves.ts +2 -4
- package/data/mods/gen3/formats-data.ts +1 -1
- package/data/moves.ts +13 -12
- package/data/pokedex.ts +2 -2
- package/data/text/moves.ts +2 -0
- package/package.json +1 -1
- package/sim/battle.ts +4 -1
- package/sim/dex-conditions.ts +9 -3
- package/sim/team-validator.ts +1 -1
|
@@ -67,7 +67,7 @@ exports.FormatsData = {
|
|
|
67
67
|
randomDoubleBattleMoves: ["icebeam", "muddywater", "protect", "shellsmash"],
|
|
68
68
|
randomDoubleBattleLevel: 80,
|
|
69
69
|
tier: "NU",
|
|
70
|
-
doublesTier: "
|
|
70
|
+
doublesTier: "DUU",
|
|
71
71
|
},
|
|
72
72
|
blastoisemega: {
|
|
73
73
|
isNonstandard: "Past",
|
|
@@ -482,7 +482,7 @@ exports.FormatsData = {
|
|
|
482
482
|
randomBattleLevel: 86,
|
|
483
483
|
randomDoubleBattleMoves: ["closecombat", "fakeout", "ironhead", "lashout", "protect", "uturn"],
|
|
484
484
|
randomDoubleBattleLevel: 88,
|
|
485
|
-
tier: "
|
|
485
|
+
tier: "PU",
|
|
486
486
|
doublesTier: "(DUU)",
|
|
487
487
|
},
|
|
488
488
|
psyduck: {
|
|
@@ -494,7 +494,7 @@ exports.FormatsData = {
|
|
|
494
494
|
randomDoubleBattleMoves: ["calmmind", "encore", "icebeam", "muddywater", "protect"],
|
|
495
495
|
randomDoubleBattleLevel: 88,
|
|
496
496
|
tier: "(PU)",
|
|
497
|
-
doublesTier: "DUU",
|
|
497
|
+
doublesTier: "(DUU)",
|
|
498
498
|
},
|
|
499
499
|
mankey: {
|
|
500
500
|
isNonstandard: "Past",
|
|
@@ -574,7 +574,7 @@ exports.FormatsData = {
|
|
|
574
574
|
randomBattleLevel: 82,
|
|
575
575
|
randomDoubleBattleMoves: ["bulletpunch", "closecombat", "facade", "knockoff", "protect"],
|
|
576
576
|
randomDoubleBattleLevel: 88,
|
|
577
|
-
tier: "
|
|
577
|
+
tier: "NU",
|
|
578
578
|
doublesTier: "(DUU)",
|
|
579
579
|
},
|
|
580
580
|
machampgmax: {
|
|
@@ -697,7 +697,8 @@ exports.FormatsData = {
|
|
|
697
697
|
tier: "LC",
|
|
698
698
|
},
|
|
699
699
|
magneton: {
|
|
700
|
-
tier: "
|
|
700
|
+
tier: "PU",
|
|
701
|
+
doublesTier: "NFE",
|
|
701
702
|
},
|
|
702
703
|
magnezone: {
|
|
703
704
|
randomBattleMoves: ["bodypress", "flashcannon", "mirrorcoat", "thunderbolt", "voltswitch"],
|
|
@@ -920,7 +921,7 @@ exports.FormatsData = {
|
|
|
920
921
|
randomBattleLevel: 85,
|
|
921
922
|
randomDoubleBattleMoves: ["closecombat", "coaching", "fakeout", "helpinghand", "rapidspin", "suckerpunch", "tripleaxel"],
|
|
922
923
|
randomDoubleBattleLevel: 88,
|
|
923
|
-
tier: "
|
|
924
|
+
tier: "NU",
|
|
924
925
|
doublesTier: "DUU",
|
|
925
926
|
},
|
|
926
927
|
lickitung: {
|
|
@@ -1086,7 +1087,7 @@ exports.FormatsData = {
|
|
|
1086
1087
|
randomDoubleBattleMoves: ["bugbite", "bulletpunch", "dualwingbeat", "feint", "protect", "superpower", "swordsdance", "uturn"],
|
|
1087
1088
|
randomDoubleBattleLevel: 80,
|
|
1088
1089
|
randomBattleNoDynamaxMoves: ["bulletpunch", "knockoff", "roost", "superpower", "swordsdance", "uturn"],
|
|
1089
|
-
tier: "
|
|
1090
|
+
tier: "UU",
|
|
1090
1091
|
doublesTier: "DUU",
|
|
1091
1092
|
},
|
|
1092
1093
|
scizormega: {
|
|
@@ -1214,7 +1215,7 @@ exports.FormatsData = {
|
|
|
1214
1215
|
randomDoubleBattleMoves: ["faketears", "protect", "shadowball", "thunderbolt", "thunderwave"],
|
|
1215
1216
|
randomDoubleBattleLevel: 86,
|
|
1216
1217
|
tier: "PU",
|
|
1217
|
-
doublesTier: "
|
|
1218
|
+
doublesTier: "DUU",
|
|
1218
1219
|
},
|
|
1219
1220
|
flareon: {
|
|
1220
1221
|
randomBattleMoves: ["facade", "flamecharge", "flareblitz", "quickattack", "superpower"],
|
|
@@ -1262,7 +1263,7 @@ exports.FormatsData = {
|
|
|
1262
1263
|
randomDoubleBattleMoves: ["calmmind", "hypervoice", "mysticalfire", "protect", "psyshock"],
|
|
1263
1264
|
randomDoubleBattleLevel: 80,
|
|
1264
1265
|
tier: "NU",
|
|
1265
|
-
doublesTier: "
|
|
1266
|
+
doublesTier: "DUU",
|
|
1266
1267
|
},
|
|
1267
1268
|
porygon: {
|
|
1268
1269
|
tier: "LC",
|
|
@@ -1367,7 +1368,7 @@ exports.FormatsData = {
|
|
|
1367
1368
|
randomDoubleBattleMoves: ["bravebird", "bulkup", "closecombat", "throatchop", "thunderouskick", "uturn"],
|
|
1368
1369
|
randomDoubleBattleLevel: 76,
|
|
1369
1370
|
tier: "OU",
|
|
1370
|
-
doublesTier: "
|
|
1371
|
+
doublesTier: "DUU",
|
|
1371
1372
|
},
|
|
1372
1373
|
moltres: {
|
|
1373
1374
|
randomBattleMoves: ["airslash", "defog", "fireblast", "roost", "uturn"],
|
|
@@ -1567,7 +1568,7 @@ exports.FormatsData = {
|
|
|
1567
1568
|
randomDoubleBattleMoves: ["aquajet", "knockoff", "liquidation", "playrough", "protect"],
|
|
1568
1569
|
randomDoubleBattleLevel: 87,
|
|
1569
1570
|
tier: "UU",
|
|
1570
|
-
doublesTier: "DUU",
|
|
1571
|
+
doublesTier: "(DUU)",
|
|
1571
1572
|
},
|
|
1572
1573
|
bonsly: {
|
|
1573
1574
|
tier: "LC",
|
|
@@ -2355,7 +2356,7 @@ exports.FormatsData = {
|
|
|
2355
2356
|
randomBattleLevel: 86,
|
|
2356
2357
|
randomDoubleBattleMoves: ["bodypress", "earthpower", "fireblast", "heatwave", "protect", "solarbeam", "willowisp"],
|
|
2357
2358
|
randomDoubleBattleLevel: 84,
|
|
2358
|
-
tier: "
|
|
2359
|
+
tier: "UU",
|
|
2359
2360
|
doublesTier: "DOU",
|
|
2360
2361
|
},
|
|
2361
2362
|
spoink: {
|
|
@@ -2496,7 +2497,7 @@ exports.FormatsData = {
|
|
|
2496
2497
|
randomDoubleBattleMoves: ["coil", "hypnosis", "muddywater", "recover"],
|
|
2497
2498
|
randomDoubleBattleLevel: 80,
|
|
2498
2499
|
tier: "RU",
|
|
2499
|
-
doublesTier: "
|
|
2500
|
+
doublesTier: "DOU",
|
|
2500
2501
|
},
|
|
2501
2502
|
castform: {
|
|
2502
2503
|
isNonstandard: "Past",
|
|
@@ -2587,7 +2588,7 @@ exports.FormatsData = {
|
|
|
2587
2588
|
randomBattleLevel: 84,
|
|
2588
2589
|
randomDoubleBattleMoves: ["destinybond", "icebeam", "icywind", "protect", "shadowball", "willowisp"],
|
|
2589
2590
|
randomDoubleBattleLevel: 88,
|
|
2590
|
-
tier: "PU",
|
|
2591
|
+
tier: "(PU)",
|
|
2591
2592
|
doublesTier: "(DUU)",
|
|
2592
2593
|
},
|
|
2593
2594
|
spheal: {
|
|
@@ -2935,7 +2936,7 @@ exports.FormatsData = {
|
|
|
2935
2936
|
randomDoubleBattleMoves: ["clearsmog", "earthpower", "icywind", "protect", "recover", "scald", "yawn"],
|
|
2936
2937
|
randomDoubleBattleLevel: 80,
|
|
2937
2938
|
tier: "RU",
|
|
2938
|
-
doublesTier: "
|
|
2939
|
+
doublesTier: "DOU",
|
|
2939
2940
|
},
|
|
2940
2941
|
drifloon: {
|
|
2941
2942
|
tier: "NFE",
|
|
@@ -3046,7 +3047,7 @@ exports.FormatsData = {
|
|
|
3046
3047
|
randomBattleLevel: 80,
|
|
3047
3048
|
randomDoubleBattleMoves: ["highhorsepower", "protect", "rockslide", "slackoff", "stealthrock", "whirlwind", "yawn"],
|
|
3048
3049
|
randomDoubleBattleLevel: 88,
|
|
3049
|
-
tier: "
|
|
3050
|
+
tier: "UU",
|
|
3050
3051
|
doublesTier: "(DUU)",
|
|
3051
3052
|
},
|
|
3052
3053
|
skorupi: {
|
|
@@ -3208,7 +3209,7 @@ exports.FormatsData = {
|
|
|
3208
3209
|
randomDoubleBattleMoves: ["bodyslam", "knockoff", "protect", "thunderwave"],
|
|
3209
3210
|
randomDoubleBattleLevel: 86,
|
|
3210
3211
|
tier: "(PU)",
|
|
3211
|
-
doublesTier: "DUU",
|
|
3212
|
+
doublesTier: "(DUU)",
|
|
3212
3213
|
},
|
|
3213
3214
|
giratina: {
|
|
3214
3215
|
randomBattleMoves: ["hex", "rest", "sleeptalk", "toxic", "willowisp"],
|
|
@@ -3640,7 +3641,7 @@ exports.FormatsData = {
|
|
|
3640
3641
|
randomBattleLevel: 80,
|
|
3641
3642
|
randomDoubleBattleMoves: ["earthquake", "flareblitz", "rockslide", "superpower", "uturn"],
|
|
3642
3643
|
randomDoubleBattleLevel: 82,
|
|
3643
|
-
tier: "
|
|
3644
|
+
tier: "UU",
|
|
3644
3645
|
doublesTier: "(DUU)",
|
|
3645
3646
|
},
|
|
3646
3647
|
darmanitangalar: {
|
|
@@ -3741,7 +3742,7 @@ exports.FormatsData = {
|
|
|
3741
3742
|
tier: "LC",
|
|
3742
3743
|
},
|
|
3743
3744
|
garbodor: {
|
|
3744
|
-
tier: "
|
|
3745
|
+
tier: "PU",
|
|
3745
3746
|
doublesTier: "(DUU)",
|
|
3746
3747
|
},
|
|
3747
3748
|
garbodorgmax: {
|
|
@@ -3778,7 +3779,7 @@ exports.FormatsData = {
|
|
|
3778
3779
|
randomBattleLevel: 84,
|
|
3779
3780
|
randomDoubleBattleMoves: ["bulletseed", "knockoff", "protect", "rockblast", "tailslap", "tripleaxel", "uturn"],
|
|
3780
3781
|
randomDoubleBattleLevel: 86,
|
|
3781
|
-
tier: "
|
|
3782
|
+
tier: "PU",
|
|
3782
3783
|
doublesTier: "(DUU)",
|
|
3783
3784
|
},
|
|
3784
3785
|
gothita: {
|
|
@@ -4140,7 +4141,7 @@ exports.FormatsData = {
|
|
|
4140
4141
|
randomBattleLevel: 78,
|
|
4141
4142
|
randomDoubleBattleMoves: ["closecombat", "ironhead", "protect", "stoneedge", "swordsdance", "thunderwave"],
|
|
4142
4143
|
randomDoubleBattleLevel: 84,
|
|
4143
|
-
tier: "
|
|
4144
|
+
tier: "UU",
|
|
4144
4145
|
doublesTier: "(DUU)",
|
|
4145
4146
|
},
|
|
4146
4147
|
terrakion: {
|
|
@@ -4615,7 +4616,7 @@ exports.FormatsData = {
|
|
|
4615
4616
|
randomDoubleBattleMoves: ["dazzlinggleam", "foulplay", "spikes", "thunderwave"],
|
|
4616
4617
|
randomDoubleBattleLevel: 84,
|
|
4617
4618
|
tier: "RU",
|
|
4618
|
-
doublesTier: "DUU",
|
|
4619
|
+
doublesTier: "(DUU)",
|
|
4619
4620
|
},
|
|
4620
4621
|
phantump: {
|
|
4621
4622
|
tier: "LC",
|
|
@@ -4763,7 +4764,7 @@ exports.FormatsData = {
|
|
|
4763
4764
|
randomBattleLevel: 80,
|
|
4764
4765
|
randomDoubleBattleMoves: ["earthpower", "heatwave", "protect", "sludgebomb", "steameruption"],
|
|
4765
4766
|
randomDoubleBattleLevel: 80,
|
|
4766
|
-
tier: "
|
|
4767
|
+
tier: "OU",
|
|
4767
4768
|
doublesTier: "DOU",
|
|
4768
4769
|
},
|
|
4769
4770
|
rowlet: {
|
|
@@ -4925,7 +4926,7 @@ exports.FormatsData = {
|
|
|
4925
4926
|
doublesTier: "(DUU)",
|
|
4926
4927
|
},
|
|
4927
4928
|
wishiwashi: {
|
|
4928
|
-
tier: "
|
|
4929
|
+
tier: "PU",
|
|
4929
4930
|
doublesTier: "(DUU)",
|
|
4930
4931
|
},
|
|
4931
4932
|
wishiwashischool: {
|
|
@@ -4965,7 +4966,7 @@ exports.FormatsData = {
|
|
|
4965
4966
|
randomDoubleBattleMoves: ["leechlife", "liquidation", "lunge", "protect", "stickyweb", "wideguard"],
|
|
4966
4967
|
randomDoubleBattleLevel: 84,
|
|
4967
4968
|
tier: "NU",
|
|
4968
|
-
doublesTier: "
|
|
4969
|
+
doublesTier: "DUU",
|
|
4969
4970
|
},
|
|
4970
4971
|
araquanidtotem: {
|
|
4971
4972
|
isNonstandard: "Past",
|
|
@@ -5042,7 +5043,7 @@ exports.FormatsData = {
|
|
|
5042
5043
|
randomBattleLevel: 86,
|
|
5043
5044
|
randomDoubleBattleMoves: ["defog", "drainingkiss", "floralhealing", "gigadrain", "helpinghand", "protect"],
|
|
5044
5045
|
randomDoubleBattleLevel: 89,
|
|
5045
|
-
tier: "
|
|
5046
|
+
tier: "PU",
|
|
5046
5047
|
doublesTier: "DUU",
|
|
5047
5048
|
},
|
|
5048
5049
|
oranguru: {
|
|
@@ -5386,7 +5387,7 @@ exports.FormatsData = {
|
|
|
5386
5387
|
randomDoubleBattleMoves: ["grassknot", "meteorbeam", "protect", "sludgebomb", "thunderbolt"],
|
|
5387
5388
|
randomDoubleBattleLevel: 81,
|
|
5388
5389
|
tier: "UU",
|
|
5389
|
-
doublesTier: "DUU",
|
|
5390
|
+
doublesTier: "(DUU)",
|
|
5390
5391
|
},
|
|
5391
5392
|
buzzwole: {
|
|
5392
5393
|
randomBattleMoves: ["closecombat", "darkestlariat", "dualwingbeat", "ironhead", "leechlife", "stoneedge"],
|
|
@@ -5411,7 +5412,7 @@ exports.FormatsData = {
|
|
|
5411
5412
|
randomDoubleBattleMoves: ["dazzlinggleam", "energyball", "thunderbolt", "voltswitch"],
|
|
5412
5413
|
randomDoubleBattleLevel: 79,
|
|
5413
5414
|
tier: "RU",
|
|
5414
|
-
doublesTier: "DUU",
|
|
5415
|
+
doublesTier: "(DUU)",
|
|
5415
5416
|
},
|
|
5416
5417
|
celesteela: {
|
|
5417
5418
|
randomBattleMoves: ["airslash", "earthquake", "fireblast", "flashcannon", "leechseed", "protect"],
|
|
@@ -5507,7 +5508,7 @@ exports.FormatsData = {
|
|
|
5507
5508
|
randomBattleLevel: 80,
|
|
5508
5509
|
randomDoubleBattleMoves: ["bodypress", "gyroball", "highhorsepower", "rockslide", "trickroom"],
|
|
5509
5510
|
randomDoubleBattleLevel: 82,
|
|
5510
|
-
tier: "
|
|
5511
|
+
tier: "NU",
|
|
5511
5512
|
doublesTier: "DOU",
|
|
5512
5513
|
},
|
|
5513
5514
|
blacephalon: {
|
|
@@ -5676,7 +5677,7 @@ exports.FormatsData = {
|
|
|
5676
5677
|
randomBattleLevel: 90,
|
|
5677
5678
|
randomDoubleBattleMoves: ["charm", "energyball", "helpinghand", "pollenpuff", "protect", "sleeppowder"],
|
|
5678
5679
|
randomDoubleBattleLevel: 90,
|
|
5679
|
-
tier: "
|
|
5680
|
+
tier: "PU",
|
|
5680
5681
|
doublesTier: "(DUU)",
|
|
5681
5682
|
},
|
|
5682
5683
|
wooloo: {
|
|
@@ -5900,7 +5901,7 @@ exports.FormatsData = {
|
|
|
5900
5901
|
grimmsnarl: {
|
|
5901
5902
|
randomBattleMoves: ["lightscreen", "reflect", "spiritbreak", "taunt", "thunderwave"],
|
|
5902
5903
|
randomBattleLevel: 82,
|
|
5903
|
-
tier: "
|
|
5904
|
+
tier: "NU",
|
|
5904
5905
|
doublesTier: "DUU",
|
|
5905
5906
|
},
|
|
5906
5907
|
grimmsnarlgmax: {
|
|
@@ -5952,7 +5953,7 @@ exports.FormatsData = {
|
|
|
5952
5953
|
randomBattleLevel: 82,
|
|
5953
5954
|
randomDoubleBattleMoves: ["bugbuzz", "gigadrain", "hurricane", "icebeam", "protect", "quiverdance", "wideguard"],
|
|
5954
5955
|
randomDoubleBattleLevel: 88,
|
|
5955
|
-
tier: "
|
|
5956
|
+
tier: "PU",
|
|
5956
5957
|
doublesTier: "(DUU)",
|
|
5957
5958
|
},
|
|
5958
5959
|
stonjourner: {
|