@pkmn/sim 0.5.26 → 0.5.27
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 +196 -160
- 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/conditions.js +1 -1
- package/build/data/conditions.js.map +1 -1
- package/build/data/formats-data.js +24 -25
- package/build/data/formats-data.js.map +1 -1
- package/build/data/learnsets.js +27 -20
- package/build/data/learnsets.js.map +1 -1
- package/build/data/mods/gen2/moves.js +10 -5
- package/build/data/mods/gen2/moves.js.map +1 -1
- package/build/data/mods/gen3/formats-data.js +2 -2
- package/build/data/mods/gen3/formats-data.js.map +1 -1
- package/build/data/mods/gen3/moves.js +9 -0
- package/build/data/mods/gen3/moves.js.map +1 -1
- package/build/data/pokedex.js +7 -7
- package/build/data/pokedex.js.map +1 -1
- package/build/data/text/abilities.js +321 -139
- package/build/data/text/abilities.js.map +1 -1
- package/build/data/text/moves.js +8 -2
- package/build/data/text/moves.js.map +1 -1
- package/build/sim/battle-actions.js.map +1 -1
- package/build/sim/pokemon.js +1 -1
- package/build/sim/pokemon.js.map +1 -1
- package/build/sim/team-validator.js +21 -16
- package/build/sim/team-validator.js.map +1 -1
- package/config/formats.ts +197 -158
- package/data/aliases.ts +2 -2
- package/data/conditions.ts +1 -1
- package/data/formats-data.ts +24 -25
- package/data/learnsets.ts +27 -20
- package/data/mods/gen2/moves.ts +10 -5
- package/data/mods/gen3/formats-data.ts +2 -2
- package/data/mods/gen3/moves.ts +9 -0
- package/data/pokedex.ts +7 -7
- package/data/text/abilities.ts +321 -139
- package/data/text/moves.ts +8 -2
- package/package.json +1 -1
- package/sim/battle-actions.ts +1 -0
- package/sim/pokemon.ts +1 -1
- package/sim/team-validator.ts +22 -18
package/build/data/learnsets.js
CHANGED
|
@@ -4724,13 +4724,13 @@ exports.Learnsets = {
|
|
|
4724
4724
|
megapunch: ["8M", "7V", "3T"],
|
|
4725
4725
|
meteorbeam: ["8T"],
|
|
4726
4726
|
meteormash: ["8L32", "7L50", "6L50", "5L55", "4L43", "3L45"],
|
|
4727
|
-
metronome: ["8M", "8L20", "8V", "7L31", "7V", "6L31", "5L34", "4L31", "3T", "3L29"],
|
|
4727
|
+
metronome: ["8M", "8L20", "8V", "8S1", "7L31", "7V", "6L31", "5L34", "4L31", "3T", "3L29"],
|
|
4728
4728
|
mimic: ["7V", "3T"],
|
|
4729
4729
|
minimize: ["8L8", "8V", "7L25", "7V", "6L25", "5L19", "4L19", "3L21"],
|
|
4730
4730
|
mistyexplosion: ["8T"],
|
|
4731
4731
|
mistyterrain: ["8M"],
|
|
4732
|
-
moonblast: ["8L44", "8V", "7L46", "6L46"],
|
|
4733
|
-
moonlight: ["8L24", "7L43", "7V", "6L43", "5L40", "4L37", "3L37"],
|
|
4732
|
+
moonblast: ["8L44", "8V", "8S1", "7L46", "6L46"],
|
|
4733
|
+
moonlight: ["8L24", "8S1", "7L43", "7V", "6L43", "5L40", "4L37", "3L37"],
|
|
4734
4734
|
mudslap: ["7V", "4T", "3T"],
|
|
4735
4735
|
mysticalfire: ["8M"],
|
|
4736
4736
|
naturalgift: ["4M"],
|
|
@@ -4794,10 +4794,11 @@ exports.Learnsets = {
|
|
|
4794
4794
|
wonderroom: ["8M", "7T", "6T", "5T"],
|
|
4795
4795
|
workup: ["8M", "7M", "5M"],
|
|
4796
4796
|
zapcannon: ["7V"],
|
|
4797
|
-
zenheadbutt: ["8M", "7T", "6T", "5T", "4T"],
|
|
4797
|
+
zenheadbutt: ["8M", "8S1", "7T", "6T", "5T", "4T"],
|
|
4798
4798
|
},
|
|
4799
4799
|
eventData: [
|
|
4800
4800
|
{ generation: 8, level: 50, gender: "F", shiny: true, nature: "Bold", isHidden: true, ivs: { hp: 31, atk: 0, def: 31, spa: 31, spd: 31, spe: 31 }, moves: ["followme", "icywind", "helpinghand", "protect"], pokeball: "cherishball" },
|
|
4801
|
+
{ generation: 8, level: 15, gender: "M", nature: "Modest", abilities: ["cutecharm"], moves: ["metronome", "moonblast", "zenheadbutt", "moonlight"], pokeball: "moonball" },
|
|
4801
4802
|
],
|
|
4802
4803
|
encounters: [
|
|
4803
4804
|
{ generation: 1, level: 8 },
|
|
@@ -11322,25 +11323,25 @@ exports.Learnsets = {
|
|
|
11322
11323
|
bodyslam: ["8M"],
|
|
11323
11324
|
bravebird: ["8M", "8L65"],
|
|
11324
11325
|
brickbreak: ["8M", "8L40"],
|
|
11325
|
-
brutalswing: ["8M", "8L20"],
|
|
11326
|
+
brutalswing: ["8M", "8L20", "8S0"],
|
|
11326
11327
|
closecombat: ["8M"],
|
|
11327
11328
|
coaching: ["8T"],
|
|
11328
11329
|
defog: ["8L35"],
|
|
11329
|
-
detect: ["8L25"],
|
|
11330
|
+
detect: ["8L25", "8S0"],
|
|
11330
11331
|
dualwingbeat: ["8T"],
|
|
11331
11332
|
endure: ["8M"],
|
|
11332
11333
|
facade: ["8M"],
|
|
11333
11334
|
finalgambit: ["8L60"],
|
|
11334
11335
|
firstimpression: ["8L1"],
|
|
11335
11336
|
focusenergy: ["8M"],
|
|
11336
|
-
furycutter: ["8L1"],
|
|
11337
|
+
furycutter: ["8L1", "8S0"],
|
|
11337
11338
|
grassyglide: ["8T"],
|
|
11338
11339
|
helpinghand: ["8M"],
|
|
11339
11340
|
irondefense: ["8M", "8L0"],
|
|
11340
11341
|
knockoff: ["8L30"],
|
|
11341
11342
|
leafblade: ["8M", "8L55"],
|
|
11342
11343
|
leer: ["8L1"],
|
|
11343
|
-
meteorassault: ["8L70"],
|
|
11344
|
+
meteorassault: ["8L70", "8S0"],
|
|
11344
11345
|
peck: ["8L1"],
|
|
11345
11346
|
poisonjab: ["8M"],
|
|
11346
11347
|
protect: ["8M"],
|
|
@@ -11362,6 +11363,9 @@ exports.Learnsets = {
|
|
|
11362
11363
|
throatchop: ["8M"],
|
|
11363
11364
|
workup: ["8M"],
|
|
11364
11365
|
},
|
|
11366
|
+
eventData: [
|
|
11367
|
+
{ generation: 8, level: 80, gender: "M", nature: "Brave", abilities: ["steadfast"], ivs: { hp: 30, atk: 31, def: 31, spa: 30, spd: 30, spe: 31 }, moves: ["meteorassault", "brutalswing", "furycutter", "detect"], pokeball: "pokeball" },
|
|
11368
|
+
],
|
|
11365
11369
|
},
|
|
11366
11370
|
doduo: {
|
|
11367
11371
|
learnset: {
|
|
@@ -12422,7 +12426,7 @@ exports.Learnsets = {
|
|
|
12422
12426
|
counter: ["7V", "3T"],
|
|
12423
12427
|
curse: ["8L20", "7L12", "7V", "6L12", "5L12", "4L12", "3L13", "3S0"],
|
|
12424
12428
|
darkpulse: ["8M", "8L42", "8V", "7M", "7L44", "6M", "6L44", "5T", "5L44", "4M", "4L44"],
|
|
12425
|
-
dazzlinggleam: ["8M", "8V", "7M", "6M"],
|
|
12429
|
+
dazzlinggleam: ["8M", "8V", "8S7", "7M", "6M"],
|
|
12426
12430
|
destinybond: ["8L54", "7L50", "7V", "6L50", "6S3", "5L50", "4L50", "3L39"],
|
|
12427
12431
|
disable: ["8V"],
|
|
12428
12432
|
doubleedge: ["7V", "3T"],
|
|
@@ -12492,14 +12496,14 @@ exports.Learnsets = {
|
|
|
12492
12496
|
secretpower: ["6M", "4M", "3M"],
|
|
12493
12497
|
seismictoss: ["8V", "7V", "3T"],
|
|
12494
12498
|
selfdestruct: ["8M", "8V", "7V", "3T"],
|
|
12495
|
-
shadowball: ["8M", "8L48", "8V", "7M", "7L33", "7V", "6M", "6L33", "6S3", "6S4", "5M", "5L33", "4M", "4L33", "3M", "3L45"],
|
|
12499
|
+
shadowball: ["8M", "8L48", "8V", "8S7", "7M", "7L33", "7V", "6M", "6L33", "6S3", "6S4", "5M", "5L33", "4M", "4L33", "3M", "3L45"],
|
|
12496
12500
|
shadowclaw: ["8M", "7M", "6M", "5M", "4M"],
|
|
12497
12501
|
shadowpunch: ["8L1", "7L1", "6L25", "6S1", "6S2", "5L25", "4L25", "3L25"],
|
|
12498
12502
|
skillswap: ["8M", "7T", "6T", "5T", "4M", "3M"],
|
|
12499
12503
|
skittersmack: ["8T"],
|
|
12500
12504
|
skullbash: ["7V"],
|
|
12501
12505
|
sleeptalk: ["8M", "7M", "7V", "6M", "5T", "4M", "3T"],
|
|
12502
|
-
sludgebomb: ["8M", "8V", "7M", "6M", "6S3", "5M", "4M", "3M"],
|
|
12506
|
+
sludgebomb: ["8M", "8V", "8S7", "7M", "6M", "6S3", "5M", "4M", "3M"],
|
|
12503
12507
|
sludgewave: ["8M", "6S4"],
|
|
12504
12508
|
smog: ["8V"],
|
|
12505
12509
|
snatch: ["7T", "6T", "5T", "4M", "3M"],
|
|
@@ -12524,7 +12528,7 @@ exports.Learnsets = {
|
|
|
12524
12528
|
trickroom: ["8M", "7M", "6M", "5M", "4M"],
|
|
12525
12529
|
uproar: ["8M", "7T", "6T", "5T", "4T"],
|
|
12526
12530
|
venoshock: ["8M", "7M", "6M", "5M"],
|
|
12527
|
-
willowisp: ["8M", "8V", "7M", "6M", "6S3", "5M", "4M"],
|
|
12531
|
+
willowisp: ["8M", "8V", "8S7", "7M", "6M", "6S3", "5M", "4M"],
|
|
12528
12532
|
wonderroom: ["8M", "7T", "6T", "5T"],
|
|
12529
12533
|
zapcannon: ["7V"],
|
|
12530
12534
|
},
|
|
@@ -12536,6 +12540,7 @@ exports.Learnsets = {
|
|
|
12536
12540
|
{ generation: 6, level: 25, shiny: true, moves: ["shadowball", "sludgewave", "confuseray", "astonish"], pokeball: "duskball" },
|
|
12537
12541
|
{ generation: 6, level: 50, shiny: true, gender: "M", moves: ["meanlook", "hypnosis", "psychic", "hyperbeam"], pokeball: "cherishball" },
|
|
12538
12542
|
{ generation: 6, level: 100, moves: ["meanlook", "hypnosis", "psychic", "hyperbeam"], pokeball: "cherishball" },
|
|
12543
|
+
{ generation: 8, level: 80, gender: "M", nature: "Naughty", abilities: ["cursedbody"], ivs: { hp: 30, atk: 30, def: 30, spa: 31, spd: 31, spe: 31 }, moves: ["shadowball", "sludgebomb", "dazzlinggleam", "willowisp"], pokeball: "pokeball" },
|
|
12539
12544
|
],
|
|
12540
12545
|
},
|
|
12541
12546
|
onix: {
|
|
@@ -45843,13 +45848,13 @@ exports.Learnsets = {
|
|
|
45843
45848
|
learnset: {
|
|
45844
45849
|
agility: ["8M"],
|
|
45845
45850
|
attract: ["8M", "7M", "6M", "5M", "4M"],
|
|
45846
|
-
aurasphere: ["8M", "8L0", "7L1", "7S5", "6L1", "6S4", "5L51", "4L37", "4S0"],
|
|
45851
|
+
aurasphere: ["8M", "8L0", "8S6", "7L1", "7S5", "6L1", "6S4", "5L51", "4L37", "4S0"],
|
|
45847
45852
|
blazekick: ["8M", "4S1"],
|
|
45848
45853
|
bonerush: ["8L36", "7L29", "6L29", "5L19", "4L19", "4S1"],
|
|
45849
45854
|
brickbreak: ["8M", "7M", "6M", "5M", "4M"],
|
|
45850
45855
|
bulkup: ["8M", "7M", "6M", "5M", "4M"],
|
|
45851
45856
|
bulldoze: ["8M", "7M", "6M", "5M"],
|
|
45852
|
-
bulletpunch: ["5S2", "5S3"],
|
|
45857
|
+
bulletpunch: ["8S6", "5S2", "5S3"],
|
|
45853
45858
|
calmmind: ["8M", "8L24", "7M", "7L47", "6M", "6L47", "5M", "5L47", "4M"],
|
|
45854
45859
|
captivate: ["4M"],
|
|
45855
45860
|
closecombat: ["8M", "8L60", "7L55", "6L1", "6S4", "5L55", "5S3", "4L42"],
|
|
@@ -45917,7 +45922,7 @@ exports.Learnsets = {
|
|
|
45917
45922
|
retaliate: ["8M", "6M", "5M"],
|
|
45918
45923
|
return: ["7M", "6M", "5M", "4M"],
|
|
45919
45924
|
revenge: ["8M"],
|
|
45920
|
-
reversal: ["8M", "8L1"],
|
|
45925
|
+
reversal: ["8M", "8L1", "8S6"],
|
|
45921
45926
|
roar: ["7M", "6M", "5M", "4M"],
|
|
45922
45927
|
rockclimb: ["4M"],
|
|
45923
45928
|
rockslide: ["8M", "7M", "6M", "5M", "4M"],
|
|
@@ -45932,7 +45937,7 @@ exports.Learnsets = {
|
|
|
45932
45937
|
shadowclaw: ["8M", "7M", "6M", "5M", "5S3", "4M"],
|
|
45933
45938
|
sleeptalk: ["8M", "7M", "6M", "5T", "4M"],
|
|
45934
45939
|
snore: ["8M", "7T", "6T", "5T", "4T"],
|
|
45935
|
-
steelbeam: ["8T"],
|
|
45940
|
+
steelbeam: ["8T", "8S6"],
|
|
45936
45941
|
stoneedge: ["8M", "7M", "6M", "5M", "5S3", "4M"],
|
|
45937
45942
|
strength: ["6M", "5M", "4M"],
|
|
45938
45943
|
substitute: ["8M", "7M", "6M", "5M", "4M"],
|
|
@@ -45955,6 +45960,7 @@ exports.Learnsets = {
|
|
|
45955
45960
|
{ generation: 5, level: 50, gender: "M", nature: "Naughty", ivs: { atk: 31 }, isHidden: true, moves: ["bulletpunch", "closecombat", "stoneedge", "shadowclaw"], pokeball: "cherishball" },
|
|
45956
45961
|
{ generation: 6, level: 100, nature: "Jolly", abilities: ["innerfocus"], moves: ["closecombat", "aurasphere", "flashcannon", "quickattack"], pokeball: "cherishball" },
|
|
45957
45962
|
{ generation: 7, level: 40, gender: "M", nature: "Serious", abilities: ["steadfast"], moves: ["aurasphere", "highjumpkick", "dragonpulse", "extremespeed"], pokeball: "pokeball" },
|
|
45963
|
+
{ generation: 8, level: 80, gender: "M", nature: "Serious", abilities: ["innerfocus"], ivs: { hp: 31, atk: 30, def: 30, spa: 31, spd: 30, spe: 31 }, moves: ["aurasphere", "bulletpunch", "reversal", "steelbeam"], pokeball: "pokeball" },
|
|
45958
45964
|
],
|
|
45959
45965
|
},
|
|
45960
45966
|
hippopotas: {
|
|
@@ -76824,11 +76830,11 @@ exports.Learnsets = {
|
|
|
76824
76830
|
dragondance: ["8M", "8L24"],
|
|
76825
76831
|
dragonpulse: ["8M", "8L40", "8S0"],
|
|
76826
76832
|
dragontail: ["8L1"],
|
|
76827
|
-
dynamaxcannon: ["8L56", "8S0"],
|
|
76833
|
+
dynamaxcannon: ["8L56", "8S1", "8S0"],
|
|
76828
76834
|
endure: ["8M"],
|
|
76829
|
-
eternabeam: ["8L88"],
|
|
76835
|
+
eternabeam: ["8L88", "8S1"],
|
|
76830
76836
|
facade: ["8M"],
|
|
76831
|
-
flamethrower: ["8M", "8L48", "8S0"],
|
|
76837
|
+
flamethrower: ["8M", "8L48", "8S1", "8S0"],
|
|
76832
76838
|
flashcannon: ["8M"],
|
|
76833
76839
|
fly: ["8M"],
|
|
76834
76840
|
gigaimpact: ["8M"],
|
|
@@ -76848,7 +76854,7 @@ exports.Learnsets = {
|
|
|
76848
76854
|
screech: ["8M"],
|
|
76849
76855
|
shadowball: ["8M"],
|
|
76850
76856
|
sleeptalk: ["8M"],
|
|
76851
|
-
sludgebomb: ["8M"],
|
|
76857
|
+
sludgebomb: ["8M", "8S1"],
|
|
76852
76858
|
sludgewave: ["8M"],
|
|
76853
76859
|
snore: ["8M"],
|
|
76854
76860
|
solarbeam: ["8M"],
|
|
@@ -76860,6 +76866,7 @@ exports.Learnsets = {
|
|
|
76860
76866
|
},
|
|
76861
76867
|
eventData: [
|
|
76862
76868
|
{ generation: 8, level: 60, perfectIVs: 3, moves: ["crosspoison", "dragonpulse", "flamethrower", "dynamaxcannon"] },
|
|
76869
|
+
{ generation: 8, level: 100, shiny: true, nature: "Timid", perfectIVs: 6, moves: ["eternabeam", "dynamaxcannon", "sludgebomb", "flamethrower"], pokeball: "cherishball" },
|
|
76863
76870
|
],
|
|
76864
76871
|
eventOnly: true,
|
|
76865
76872
|
},
|