@pkmn/mods 0.5.1 → 0.5.2
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pkmn/mods",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"main": "build/index.js",
|
|
5
5
|
"types": "build/index.d.ts",
|
|
6
6
|
"exports": {
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"!src/*.test.*"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@pkmn/dex-types": "^0.5.
|
|
37
|
+
"@pkmn/dex-types": "^0.5.2"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@pkmn/dex": "^0.5.
|
|
41
|
-
"@pkmn/sim": "^0.5.
|
|
40
|
+
"@pkmn/dex": "^0.5.2",
|
|
41
|
+
"@pkmn/sim": "^0.5.2"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"lint": "eslint --cache src --ext ts",
|
|
@@ -105,7 +105,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
105
105
|
},
|
|
106
106
|
pikachu: {
|
|
107
107
|
tier: "NFE",
|
|
108
|
-
randomBattleMoves: ["
|
|
108
|
+
randomBattleMoves: ["volttackle", "grassknot", "voltswitch", "surf"],
|
|
109
109
|
},
|
|
110
110
|
raichu: {
|
|
111
111
|
tier: "UU",
|
|
@@ -118,7 +118,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
118
118
|
sandslash: {
|
|
119
119
|
tier: "UU",
|
|
120
120
|
doublesTier: "DOU",
|
|
121
|
-
randomBattleMoves: ["stealthrock", "earthquake", "rapidspin", "xscissor", "stoneedge"],
|
|
121
|
+
randomBattleMoves: ["stealthrock", "earthquake", "rapidspin", "xscissor", "stoneedge", "swordsdance"],
|
|
122
122
|
},
|
|
123
123
|
nidoranf: {
|
|
124
124
|
tier: "LC",
|
|
@@ -140,7 +140,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
140
140
|
nidoking: {
|
|
141
141
|
tier: "UU",
|
|
142
142
|
doublesTier: "DOU",
|
|
143
|
-
randomBattleMoves: ["earthpower", "sludgewave", "flamethrower", "icebeam"],
|
|
143
|
+
randomBattleMoves: ["earthpower", "sludgewave", "flamethrower", "icebeam", "substitute"],
|
|
144
144
|
},
|
|
145
145
|
cleffa: {
|
|
146
146
|
tier: "LC",
|
|
@@ -263,7 +263,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
263
263
|
poliwrath: {
|
|
264
264
|
tier: "UU",
|
|
265
265
|
doublesTier: "DOU",
|
|
266
|
-
randomBattleMoves: ["waterfall", "drainpunch", "bulkup", "
|
|
266
|
+
randomBattleMoves: ["waterfall", "drainpunch", "bulkup", "poisonjab", "raindance"],
|
|
267
267
|
},
|
|
268
268
|
politoed: {
|
|
269
269
|
tier: "UU",
|
|
@@ -301,7 +301,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
301
301
|
victreebel: {
|
|
302
302
|
tier: "UU",
|
|
303
303
|
doublesTier: "DOU",
|
|
304
|
-
randomBattleMoves: ["
|
|
304
|
+
randomBattleMoves: ["powerwhip", "poisonjab", "knockoff", "swordsdance", "sleeppowder", "strengthsap"],
|
|
305
305
|
},
|
|
306
306
|
tentacool: {
|
|
307
307
|
tier: "LC",
|
|
@@ -448,7 +448,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
448
448
|
marowak: {
|
|
449
449
|
tier: "UU",
|
|
450
450
|
doublesTier: "DOU",
|
|
451
|
-
randomBattleMoves: ["earthquake", "stealthrock", "stoneedge", "
|
|
451
|
+
randomBattleMoves: ["earthquake", "stealthrock", "stoneedge", "doubleedge"],
|
|
452
452
|
},
|
|
453
453
|
tyrogue: {
|
|
454
454
|
tier: "LC",
|
|
@@ -456,7 +456,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
456
456
|
hitmonlee: {
|
|
457
457
|
tier: "UU",
|
|
458
458
|
doublesTier: "DOU",
|
|
459
|
-
randomBattleMoves: ["bulkup", "stoneedge", "bulletpunch", "highjumpkick"],
|
|
459
|
+
randomBattleMoves: ["bulkup", "stoneedge", "bulletpunch", "highjumpkick", "earthquake"],
|
|
460
460
|
},
|
|
461
461
|
hitmonchan: {
|
|
462
462
|
tier: "UU",
|
|
@@ -482,7 +482,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
482
482
|
weezing: {
|
|
483
483
|
tier: "UU",
|
|
484
484
|
doublesTier: "DOU",
|
|
485
|
-
randomBattleMoves: ["sludgebomb", "toxicspikes", "willowisp", "explosion", "fireblast"],
|
|
485
|
+
randomBattleMoves: ["sludgebomb", "toxicspikes", "willowisp", "explosion", "fireblast", "painsplit"],
|
|
486
486
|
},
|
|
487
487
|
rhyhorn: {
|
|
488
488
|
tier: "LC",
|
|
@@ -535,7 +535,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
535
535
|
seaking: {
|
|
536
536
|
tier: "UU",
|
|
537
537
|
doublesTier: "DOU",
|
|
538
|
-
randomBattleMoves: ["waterfall", "megahorn", "
|
|
538
|
+
randomBattleMoves: ["waterfall", "megahorn", "raindance", "swordsdance"],
|
|
539
539
|
},
|
|
540
540
|
staryu: {
|
|
541
541
|
tier: "LC",
|
|
@@ -731,7 +731,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
731
731
|
mew: {
|
|
732
732
|
tier: "UU",
|
|
733
733
|
doublesTier: "DOU",
|
|
734
|
-
randomBattleMoves: ["calmmind", "aurasphere", "psychic", "shadowball"],
|
|
734
|
+
randomBattleMoves: ["calmmind", "aurasphere", "psychic", "shadowball", "roost"],
|
|
735
735
|
},
|
|
736
736
|
chikorita: {
|
|
737
737
|
tier: "LC",
|
|
@@ -1066,7 +1066,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
1066
1066
|
smeargle: {
|
|
1067
1067
|
tier: "UU",
|
|
1068
1068
|
doublesTier: "DUber",
|
|
1069
|
-
randomBattleMoves: ["stealthrock", "spikes", "spore", "toxicspikes", "stickyweb"],
|
|
1069
|
+
randomBattleMoves: ["stealthrock", "spikes", "spore", "toxicspikes", "stickyweb", "whirlwind"],
|
|
1070
1070
|
},
|
|
1071
1071
|
miltank: {
|
|
1072
1072
|
tier: "UU",
|
|
@@ -1081,7 +1081,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
1081
1081
|
entei: {
|
|
1082
1082
|
tier: "UU",
|
|
1083
1083
|
doublesTier: "DOU",
|
|
1084
|
-
randomBattleMoves: ["sacredfire", "extremespeed", "stoneedge", "
|
|
1084
|
+
randomBattleMoves: ["sacredfire", "extremespeed", "stoneedge", "bulldoze"],
|
|
1085
1085
|
},
|
|
1086
1086
|
suicune: {
|
|
1087
1087
|
tier: "UU",
|
|
@@ -1107,7 +1107,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
1107
1107
|
hooh: {
|
|
1108
1108
|
tier: "Uber",
|
|
1109
1109
|
doublesTier: "DUber",
|
|
1110
|
-
randomBattleMoves: ["sacredfire", "roost", "substitute", "earthquake"],
|
|
1110
|
+
randomBattleMoves: ["sacredfire", "roost", "substitute", "earthquake", "thunderwave"],
|
|
1111
1111
|
},
|
|
1112
1112
|
celebi: {
|
|
1113
1113
|
isNonstandard: "Unobtainable",
|
|
@@ -1123,7 +1123,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
1123
1123
|
sceptile: {
|
|
1124
1124
|
tier: "UU",
|
|
1125
1125
|
doublesTier: "DOU",
|
|
1126
|
-
randomBattleMoves: ["substitute", "leechseed", "leafstorm", "gigadrain", "focusblast"],
|
|
1126
|
+
randomBattleMoves: ["substitute", "leechseed", "leafstorm", "gigadrain", "focusblast", "earthquake", "rockslide"],
|
|
1127
1127
|
},
|
|
1128
1128
|
torchic: {
|
|
1129
1129
|
tier: "LC",
|
|
@@ -1191,7 +1191,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
1191
1191
|
ludicolo: {
|
|
1192
1192
|
tier: "UU",
|
|
1193
1193
|
doublesTier: "DOU",
|
|
1194
|
-
randomBattleMoves: ["
|
|
1194
|
+
randomBattleMoves: ["gigadrain", "icebeam", "hydropump", "raindance", "scald"],
|
|
1195
1195
|
},
|
|
1196
1196
|
seedot: {
|
|
1197
1197
|
tier: "LC",
|
|
@@ -1218,7 +1218,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
1218
1218
|
pelipper: {
|
|
1219
1219
|
tier: "UU",
|
|
1220
1220
|
doublesTier: "DOU",
|
|
1221
|
-
randomBattleMoves: ["scald", "roost", "defog", "hurricane", "hydropump", "uturn"],
|
|
1221
|
+
randomBattleMoves: ["scald", "roost", "defog", "hurricane", "hydropump", "uturn", "icebeam"],
|
|
1222
1222
|
},
|
|
1223
1223
|
ralts: {
|
|
1224
1224
|
tier: "LC",
|
|
@@ -1229,7 +1229,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
1229
1229
|
gardevoir: {
|
|
1230
1230
|
tier: "UU",
|
|
1231
1231
|
doublesTier: "DOU",
|
|
1232
|
-
randomBattleMoves: ["calmmind", "psychic", "shadowball", "focusblast", "moonblast"],
|
|
1232
|
+
randomBattleMoves: ["calmmind", "psychic", "shadowball", "focusblast", "moonblast", "substitute"],
|
|
1233
1233
|
},
|
|
1234
1234
|
gallade: {
|
|
1235
1235
|
tier: "UU",
|
|
@@ -2010,7 +2010,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
|
|
|
2010
2010
|
azelf: {
|
|
2011
2011
|
tier: "OU",
|
|
2012
2012
|
doublesTier: "DOU",
|
|
2013
|
-
randomBattleMoves: ["psychic", "nastyplot", "thunderbolt", "fireblast", "dazzlinggleam", "stealthrock", "uturn"],
|
|
2013
|
+
randomBattleMoves: ["psychic", "nastyplot", "thunderbolt", "fireblast", "dazzlinggleam", "stealthrock", "uturn", "taunt"],
|
|
2014
2014
|
},
|
|
2015
2015
|
dialga: {
|
|
2016
2016
|
tier: "Uber",
|
|
@@ -25512,6 +25512,7 @@ export const Learnsets: {[k: string]: ModdedLearnsetData} = {
|
|
|
25512
25512
|
torment: ["8M"],
|
|
25513
25513
|
toxic: ["8L46"],
|
|
25514
25514
|
toxicspikes: ["8L20"],
|
|
25515
|
+
trickroom: ["8M"],
|
|
25515
25516
|
uturn: ["8M"],
|
|
25516
25517
|
whirlwind: ["8L32"],
|
|
25517
25518
|
wideguard: ["8L12"],
|