@pkmn/sim 0.7.40 → 0.7.42
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/cjs/config/formats.js +254 -152
- package/build/cjs/config/formats.js.map +1 -1
- package/build/cjs/data/abilities.js +2 -3
- package/build/cjs/data/abilities.js.map +1 -1
- package/build/cjs/data/aliases.js +3 -3
- package/build/cjs/data/aliases.js.map +1 -1
- package/build/cjs/data/formats-data.js +276 -346
- package/build/cjs/data/formats-data.js.map +1 -1
- package/build/cjs/data/items.js +0 -25
- package/build/cjs/data/items.js.map +1 -1
- package/build/cjs/data/learnsets.js +39 -0
- package/build/cjs/data/learnsets.js.map +1 -1
- package/build/cjs/data/mods/gen1/formats-data.js +2 -2
- package/build/cjs/data/mods/gen1/formats-data.js.map +1 -1
- package/build/cjs/data/mods/gen3/formats-data.js +3 -3
- package/build/cjs/data/mods/gen3/formats-data.js.map +1 -1
- package/build/cjs/data/mods/gen8/abilities.js +12 -0
- package/build/cjs/data/mods/gen8/abilities.js.map +1 -1
- package/build/cjs/data/mods/gen8/items.js +63 -20
- package/build/cjs/data/mods/gen8/items.js.map +1 -1
- package/build/cjs/data/mods/gen8/pokedex.js +4 -0
- package/build/cjs/data/mods/gen8/pokedex.js.map +1 -1
- package/build/cjs/data/moves.js +15 -22
- package/build/cjs/data/moves.js.map +1 -1
- package/build/cjs/data/pokedex.js +13 -1
- package/build/cjs/data/pokedex.js.map +1 -1
- package/build/cjs/data/text/abilities.js +4 -1
- package/build/cjs/data/text/abilities.js.map +1 -1
- package/build/cjs/sim/team-validator.js +21 -0
- package/build/cjs/sim/team-validator.js.map +1 -1
- package/build/esm/config/formats.mjs +254 -152
- package/build/esm/config/formats.mjs.map +1 -1
- package/build/esm/data/abilities.mjs +2 -3
- package/build/esm/data/abilities.mjs.map +1 -1
- package/build/esm/data/aliases.mjs +3 -3
- package/build/esm/data/aliases.mjs.map +1 -1
- package/build/esm/data/formats-data.mjs +276 -346
- package/build/esm/data/formats-data.mjs.map +1 -1
- package/build/esm/data/items.mjs +0 -25
- package/build/esm/data/items.mjs.map +1 -1
- package/build/esm/data/learnsets.mjs +39 -0
- package/build/esm/data/learnsets.mjs.map +1 -1
- package/build/esm/data/mods/gen1/formats-data.mjs +2 -2
- package/build/esm/data/mods/gen1/formats-data.mjs.map +1 -1
- package/build/esm/data/mods/gen3/formats-data.mjs +3 -3
- package/build/esm/data/mods/gen3/formats-data.mjs.map +1 -1
- package/build/esm/data/mods/gen8/abilities.mjs +12 -0
- package/build/esm/data/mods/gen8/abilities.mjs.map +1 -1
- package/build/esm/data/mods/gen8/items.mjs +63 -20
- package/build/esm/data/mods/gen8/items.mjs.map +1 -1
- package/build/esm/data/mods/gen8/pokedex.mjs +4 -0
- package/build/esm/data/mods/gen8/pokedex.mjs.map +1 -1
- package/build/esm/data/moves.mjs +15 -22
- package/build/esm/data/moves.mjs.map +1 -1
- package/build/esm/data/pokedex.mjs +13 -1
- package/build/esm/data/pokedex.mjs.map +1 -1
- package/build/esm/data/text/abilities.mjs +4 -1
- package/build/esm/data/text/abilities.mjs.map +1 -1
- package/build/esm/sim/team-validator.mjs +21 -0
- package/build/esm/sim/team-validator.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -39,7 +39,8 @@ export const Formats = [
|
|
|
39
39
|
'Arena Trap', 'Moody',
|
|
40
40
|
'Sand Veil', 'Shadow Tag',
|
|
41
41
|
'Snow Cloak', "King's Rock",
|
|
42
|
-
'Baton Pass', '
|
|
42
|
+
'Baton Pass', 'Last Respects',
|
|
43
|
+
'Shed Tail'
|
|
43
44
|
]
|
|
44
45
|
},
|
|
45
46
|
{
|
|
@@ -62,12 +63,22 @@ export const Formats = [
|
|
|
62
63
|
mod: 'gen9',
|
|
63
64
|
ruleset: ['Little Cup', 'Standard'],
|
|
64
65
|
banlist: [
|
|
65
|
-
'
|
|
66
|
-
'
|
|
67
|
-
'
|
|
68
|
-
'
|
|
69
|
-
'
|
|
70
|
-
'
|
|
66
|
+
'Basculin-White-Striped',
|
|
67
|
+
'Diglett-Base',
|
|
68
|
+
'Dunsparce',
|
|
69
|
+
'Flittle',
|
|
70
|
+
'Gastly',
|
|
71
|
+
'Girafarig',
|
|
72
|
+
'Meditite',
|
|
73
|
+
'Misdreavus',
|
|
74
|
+
'Murkrow',
|
|
75
|
+
'Qwilfish-Hisui',
|
|
76
|
+
'Rufflet',
|
|
77
|
+
'Scyther',
|
|
78
|
+
'Sneasel',
|
|
79
|
+
'Sneasel-Hisui',
|
|
80
|
+
'Stantler',
|
|
81
|
+
'Moody',
|
|
71
82
|
'Baton Pass'
|
|
72
83
|
]
|
|
73
84
|
},
|
|
@@ -76,14 +87,23 @@ export const Formats = [
|
|
|
76
87
|
mod: 'gen9',
|
|
77
88
|
ruleset: ['Standard', 'Evasion Abilities Clause', 'Same Type Clause', 'Terastal Clause'],
|
|
78
89
|
banlist: [
|
|
79
|
-
'Annihilape', '
|
|
80
|
-
'
|
|
81
|
-
'
|
|
82
|
-
'
|
|
83
|
-
'
|
|
84
|
-
'
|
|
85
|
-
|
|
86
|
-
'
|
|
90
|
+
'Annihilape', 'Arceus',
|
|
91
|
+
'Calyrex-Ice', 'Calyrex-Shadow',
|
|
92
|
+
'Chi-Yu', 'Dialga',
|
|
93
|
+
'Dialga-Origin', 'Eternatus',
|
|
94
|
+
'Giratina', 'Giratina-Origin',
|
|
95
|
+
'Groudon', 'Iron Bundle',
|
|
96
|
+
'Koraidon', 'Kyogre',
|
|
97
|
+
'Magearna', 'Mewtwo',
|
|
98
|
+
'Miraidon', 'Palafin',
|
|
99
|
+
'Palkia', 'Palkia-Origin',
|
|
100
|
+
'Rayquaza', 'Zacian',
|
|
101
|
+
'Zacian-Crowned', 'Zamazenta-Crowned',
|
|
102
|
+
'Moody', 'Shadow Tag',
|
|
103
|
+
'Booster Energy', 'Damp Rock',
|
|
104
|
+
'Focus Band', "King's Rock",
|
|
105
|
+
'Quick Claw', 'Acupressure',
|
|
106
|
+
'Baton Pass', 'Last Respects'
|
|
87
107
|
]
|
|
88
108
|
},
|
|
89
109
|
{
|
|
@@ -99,11 +119,20 @@ export const Formats = [
|
|
|
99
119
|
'!Sleep Clause Mod'
|
|
100
120
|
],
|
|
101
121
|
banlist: [
|
|
102
|
-
'
|
|
103
|
-
'
|
|
104
|
-
'
|
|
105
|
-
'
|
|
106
|
-
'
|
|
122
|
+
'Arceus', 'Calyrex-Ice',
|
|
123
|
+
'Calyrex-Shadow', 'Chi-Yu',
|
|
124
|
+
'Cinderace', 'Dialga',
|
|
125
|
+
'Dialga-Origin', 'Dragonite',
|
|
126
|
+
'Eternatus', 'Flutter Mane',
|
|
127
|
+
'Giratina', 'Giratina-Origin',
|
|
128
|
+
'Groudon', 'Koraidon',
|
|
129
|
+
'Kyogre', 'Magearna',
|
|
130
|
+
'Mew', 'Mewtwo',
|
|
131
|
+
'Mimikyu', 'Miraidon',
|
|
132
|
+
'Palkia', 'Palkia-Origin',
|
|
133
|
+
'Rayquaza', 'Scream Tail',
|
|
134
|
+
'Zacian', 'Zacian-Crowned',
|
|
135
|
+
'Zamazenta', 'Zamazenta-Crowned',
|
|
107
136
|
'Moody', 'Focus Band',
|
|
108
137
|
'Focus Sash', "King's Rock",
|
|
109
138
|
'Quick Claw', 'Acupressure',
|
|
@@ -126,30 +155,49 @@ export const Formats = [
|
|
|
126
155
|
name: '[Gen 9] ZU',
|
|
127
156
|
mod: 'gen9',
|
|
128
157
|
ruleset: ['[Gen 9] PU'],
|
|
129
|
-
banlist: [
|
|
158
|
+
banlist: [
|
|
159
|
+
'PU',
|
|
160
|
+
'Basculin-White-Striped',
|
|
161
|
+
'Beartic',
|
|
162
|
+
'Electrode',
|
|
163
|
+
'Fraxure',
|
|
164
|
+
'Girafarig',
|
|
165
|
+
'Qwilfish-Hisui',
|
|
166
|
+
'Sneasel-Hisui',
|
|
167
|
+
'Vigoroth'
|
|
168
|
+
]
|
|
130
169
|
},
|
|
131
170
|
{
|
|
132
171
|
name: '[Gen 9] LC UU',
|
|
133
172
|
mod: 'gen9',
|
|
134
173
|
ruleset: ['[Gen 9] LC'],
|
|
135
174
|
banlist: [
|
|
136
|
-
'Bramblin', 'Crabrawler',
|
|
137
|
-
'
|
|
138
|
-
'
|
|
139
|
-
'
|
|
140
|
-
'
|
|
141
|
-
'
|
|
142
|
-
'
|
|
143
|
-
'
|
|
144
|
-
'
|
|
145
|
-
'
|
|
175
|
+
'Bramblin', 'Crabrawler',
|
|
176
|
+
'Diglett-Alola', 'Drifloon',
|
|
177
|
+
'Fennekin', 'Foongus',
|
|
178
|
+
'Gimmighoul-Roaming', 'Glimmet',
|
|
179
|
+
'Gothita', 'Greavard',
|
|
180
|
+
'Grimer-Alola', 'Grookey',
|
|
181
|
+
'Growlithe-Hisui', 'Larvesta',
|
|
182
|
+
'Magnemite', 'Mareanie',
|
|
183
|
+
'Meowth-Base', 'Meowth-Alola',
|
|
184
|
+
'Mudbray', 'Numel',
|
|
185
|
+
'Nymble', 'Pawniard',
|
|
186
|
+
'Quaxly', 'Sandile',
|
|
187
|
+
'Shellder', 'Shroodle',
|
|
188
|
+
'Slowpoke-Galar', 'Stunky',
|
|
189
|
+
'Surskit', 'Tinkatink',
|
|
190
|
+
'Toedscool', 'Voltorb',
|
|
191
|
+
'Voltorb-Hisui', 'Wattrel',
|
|
192
|
+
'Wingull', 'Zorua',
|
|
193
|
+
'Zorua-Hisui'
|
|
146
194
|
]
|
|
147
195
|
},
|
|
148
196
|
{
|
|
149
197
|
name: '[Gen 9] CAP',
|
|
150
198
|
mod: 'gen9',
|
|
151
199
|
ruleset: ['[Gen 9] OU', '+CAP'],
|
|
152
|
-
banlist: ['
|
|
200
|
+
banlist: ['Crucibellite']
|
|
153
201
|
},
|
|
154
202
|
{
|
|
155
203
|
name: '[Gen 9] Free-For-All',
|
|
@@ -157,23 +205,25 @@ export const Formats = [
|
|
|
157
205
|
gameType: 'freeforall',
|
|
158
206
|
ruleset: ['Standard', '!Evasion Items Clause'],
|
|
159
207
|
banlist: [
|
|
160
|
-
'Annihilape', '
|
|
161
|
-
'
|
|
162
|
-
'
|
|
163
|
-
'
|
|
164
|
-
'
|
|
165
|
-
'
|
|
166
|
-
'
|
|
167
|
-
'
|
|
168
|
-
'
|
|
169
|
-
'
|
|
170
|
-
'
|
|
171
|
-
'
|
|
172
|
-
'
|
|
208
|
+
'Annihilape', 'Arceus', 'Calyrex-Ice',
|
|
209
|
+
'Calyrex-Shadow', 'Chi-Yu', 'Dialga',
|
|
210
|
+
'Dialga-Origin', 'Flutter Mane', 'Giratina',
|
|
211
|
+
'Giratina-Origin', 'Groudon', 'Iron Bundle',
|
|
212
|
+
'Koraidon', 'Kyogre', 'Landorus-Base',
|
|
213
|
+
'Magearna', 'Mewtwo', 'Miraidon',
|
|
214
|
+
'Palafin', 'Palkia', 'Palkia-Origin',
|
|
215
|
+
'Rayquaza', 'Spectrier', 'Urshifu-Base',
|
|
216
|
+
'Zacian', 'Zacian-Crowned', 'Moody',
|
|
217
|
+
'Shadow Tag', 'Toxic Debris', 'Acupressure',
|
|
218
|
+
'Aromatic Mist', 'Baton Pass', 'Court Change',
|
|
219
|
+
'Final Gambit', 'Flatter', 'Follow Me',
|
|
220
|
+
'Heal Pulse', 'Last Respects', 'Poison Fang',
|
|
221
|
+
'Rage Powder', 'Spicy Extract', 'Swagger',
|
|
222
|
+
'Toxic', 'Toxic Spikes'
|
|
173
223
|
]
|
|
174
224
|
},
|
|
175
225
|
{
|
|
176
|
-
name: '[Gen 9] Battle Stadium Singles
|
|
226
|
+
name: '[Gen 9] Battle Stadium Singles Regulation C',
|
|
177
227
|
mod: 'gen9',
|
|
178
228
|
ruleset: [
|
|
179
229
|
'Flat Rules',
|
|
@@ -181,19 +231,13 @@ export const Formats = [
|
|
|
181
231
|
'Paldea Pokedex',
|
|
182
232
|
'Min Source Gen = 9',
|
|
183
233
|
'VGC Timer'
|
|
184
|
-
]
|
|
185
|
-
banlist: ['Sub-Legendary']
|
|
234
|
+
]
|
|
186
235
|
},
|
|
187
236
|
{
|
|
188
|
-
name: '[Gen 9] Battle Stadium Singles Regulation
|
|
237
|
+
name: '[Gen 9] Battle Stadium Singles Regulation D',
|
|
189
238
|
mod: 'gen9',
|
|
190
|
-
ruleset: [
|
|
191
|
-
|
|
192
|
-
'!! Adjust Level = 50',
|
|
193
|
-
'Paldea Pokedex',
|
|
194
|
-
'Min Source Gen = 9',
|
|
195
|
-
'VGC Timer'
|
|
196
|
-
]
|
|
239
|
+
ruleset: ['Flat Rules', '!! Adjust Level = 50', 'Min Source Gen = 9', 'VGC Timer'],
|
|
240
|
+
banlist: ['Walking Wake', 'Iron Leaves']
|
|
197
241
|
},
|
|
198
242
|
{
|
|
199
243
|
name: '[Gen 9] Custom Game',
|
|
@@ -234,7 +278,7 @@ export const Formats = [
|
|
|
234
278
|
mod: 'gen9',
|
|
235
279
|
gameType: 'doubles',
|
|
236
280
|
ruleset: ['Standard Doubles', 'Little Cup', 'Sleep Clause Mod'],
|
|
237
|
-
banlist: ['Dunsparce', 'Murkrow', 'Scyther', 'Sneasel']
|
|
281
|
+
banlist: ['Dunsparce', 'Murkrow', 'Qwilfish-Hisui', 'Scyther', 'Sneasel', 'Sneasel-Hisui']
|
|
238
282
|
},
|
|
239
283
|
{
|
|
240
284
|
name: '[Gen 9] 2v2 Doubles',
|
|
@@ -250,16 +294,27 @@ export const Formats = [
|
|
|
250
294
|
'Evasion Items Clause'
|
|
251
295
|
],
|
|
252
296
|
banlist: [
|
|
253
|
-
'
|
|
254
|
-
'
|
|
255
|
-
'
|
|
256
|
-
'
|
|
257
|
-
'
|
|
297
|
+
'Arceus', 'Calyrex-Ice',
|
|
298
|
+
'Calyrex-Shadow', 'Chi-Yu',
|
|
299
|
+
'Dialga', 'Dialga-Origin',
|
|
300
|
+
'Eternatus', 'Giratina',
|
|
301
|
+
'Giratina-Origin', 'Groudon',
|
|
302
|
+
'Koraidon', 'Kyogre',
|
|
303
|
+
'Magearna', 'Mewtwo',
|
|
304
|
+
'Miraidon', 'Palkia',
|
|
305
|
+
'Palkia-Origin', 'Rayquaza',
|
|
306
|
+
'Tornadus', 'Urshifu',
|
|
307
|
+
'Urshifu-Rapid-Strike', 'Zacian',
|
|
308
|
+
'Zacian-Crowned', 'Zamazenta',
|
|
309
|
+
'Zamazenta-Crowned', 'Commander',
|
|
310
|
+
'Moody', 'Focus Sash',
|
|
311
|
+
"King's Rock", 'Ally Switch',
|
|
312
|
+
'Final Gambit', 'Perish Song',
|
|
258
313
|
'Swagger'
|
|
259
314
|
]
|
|
260
315
|
},
|
|
261
316
|
{
|
|
262
|
-
name: '[Gen 9] VGC 2023
|
|
317
|
+
name: '[Gen 9] VGC 2023 Regulation C',
|
|
263
318
|
mod: 'gen9',
|
|
264
319
|
gameType: 'doubles',
|
|
265
320
|
ruleset: [
|
|
@@ -269,21 +324,20 @@ export const Formats = [
|
|
|
269
324
|
'Min Source Gen = 9',
|
|
270
325
|
'VGC Timer',
|
|
271
326
|
'Open Team Sheets'
|
|
272
|
-
]
|
|
273
|
-
banlist: ['Sub-Legendary']
|
|
327
|
+
]
|
|
274
328
|
},
|
|
275
329
|
{
|
|
276
|
-
name: '[Gen 9] VGC 2023 Regulation
|
|
330
|
+
name: '[Gen 9] VGC 2023 Regulation D',
|
|
277
331
|
mod: 'gen9',
|
|
278
332
|
gameType: 'doubles',
|
|
279
333
|
ruleset: [
|
|
280
334
|
'Flat Rules',
|
|
281
335
|
'!! Adjust Level = 50',
|
|
282
|
-
'Paldea Pokedex',
|
|
283
336
|
'Min Source Gen = 9',
|
|
284
337
|
'VGC Timer',
|
|
285
338
|
'Open Team Sheets'
|
|
286
|
-
]
|
|
339
|
+
],
|
|
340
|
+
banlist: ['Walking Wake', 'Iron Leaves']
|
|
287
341
|
},
|
|
288
342
|
{
|
|
289
343
|
name: '[Gen 9] Doubles Custom Game',
|
|
@@ -311,17 +365,12 @@ export const Formats = [
|
|
|
311
365
|
'Sleep Clause Mod'
|
|
312
366
|
],
|
|
313
367
|
banlist: [
|
|
314
|
-
'ND Uber',
|
|
315
|
-
'
|
|
316
|
-
'
|
|
317
|
-
'
|
|
318
|
-
'
|
|
319
|
-
'
|
|
320
|
-
"King's Rock",
|
|
321
|
-
'Quick Claw',
|
|
322
|
-
'Razor Fang',
|
|
323
|
-
'Assist',
|
|
324
|
-
'Baton Pass',
|
|
368
|
+
'ND Uber', 'ND AG',
|
|
369
|
+
'Arena Trap', 'Moody',
|
|
370
|
+
'Power Construct', 'Shadow Tag',
|
|
371
|
+
"King's Rock", 'Quick Claw',
|
|
372
|
+
'Razor Fang', 'Assist',
|
|
373
|
+
'Baton Pass', 'Last Respects',
|
|
325
374
|
'Shed Tail'
|
|
326
375
|
]
|
|
327
376
|
},
|
|
@@ -372,28 +421,62 @@ export const Formats = [
|
|
|
372
421
|
'Espathra', 'Eternatus', 'Flutter Mane',
|
|
373
422
|
'Genesect', 'Gengar-Mega', 'Giratina',
|
|
374
423
|
'Giratina-Origin', 'Groudon', 'Ho-Oh',
|
|
375
|
-
'Hoopa-Unbound', '
|
|
376
|
-
'
|
|
377
|
-
'
|
|
378
|
-
'
|
|
379
|
-
'
|
|
380
|
-
'
|
|
381
|
-
'
|
|
382
|
-
'Necrozma-
|
|
383
|
-
'
|
|
384
|
-
'
|
|
385
|
-
'
|
|
386
|
-
'
|
|
387
|
-
'Zamazenta', '
|
|
388
|
-
'Zygarde-
|
|
389
|
-
'
|
|
390
|
-
'
|
|
391
|
-
|
|
392
|
-
'
|
|
393
|
-
'
|
|
424
|
+
'Hoopa-Unbound', 'Iron Bundle', 'Kangaskhan-Mega',
|
|
425
|
+
'Kartana', 'Kingambit', 'Koraidon',
|
|
426
|
+
'Kyogre', 'Kyurem-Black', 'Kyurem-White',
|
|
427
|
+
'Lucario-Mega', 'Lugia', 'Lunala',
|
|
428
|
+
'Magearna', 'Marshadow', 'Mawile-Mega',
|
|
429
|
+
'Medicham-Mega', 'Metagross-Mega', 'Mewtwo',
|
|
430
|
+
'Miraidon', 'Naganadel', 'Necrozma-Dawn-Wings',
|
|
431
|
+
'Necrozma-Dusk-Mane', 'Palafin', 'Palkia',
|
|
432
|
+
'Pheromosa', 'Rayquaza', 'Reshiram',
|
|
433
|
+
'Salamence-Mega', 'Shaymin-Sky', 'Solgaleo',
|
|
434
|
+
'Urshifu-Base', 'Xerneas', 'Yveltal',
|
|
435
|
+
'Zacian', 'Zacian-Crowned', 'Zamazenta',
|
|
436
|
+
'Zamazenta-Crowned', 'Zekrom', 'Zygarde-Base',
|
|
437
|
+
'Zygarde-Complete', 'Moody', 'Shadow Tag',
|
|
438
|
+
'Power Construct', 'Booster Energy', 'Damp Rock',
|
|
439
|
+
'Focus Band', 'Icy Rock', "King's Rock",
|
|
440
|
+
'Leppa Berry', 'Quick Claw', 'Smooth Rock',
|
|
441
|
+
'Terrain Extender', 'Acupressure', 'Baton Pass',
|
|
442
|
+
'Last Respects'
|
|
394
443
|
]
|
|
395
444
|
},
|
|
396
445
|
{ name: '[Gen 9] National Dex AG', mod: 'gen9', ruleset: ['Standard NatDex'] },
|
|
446
|
+
{
|
|
447
|
+
name: '[Gen 9] National Dex Doubles',
|
|
448
|
+
mod: 'gen9',
|
|
449
|
+
gameType: 'doubles',
|
|
450
|
+
ruleset: [
|
|
451
|
+
'Standard NatDex',
|
|
452
|
+
'OHKO Clause',
|
|
453
|
+
'Evasion Moves Clause',
|
|
454
|
+
'Evasion Abilities Clause',
|
|
455
|
+
'Species Clause',
|
|
456
|
+
'Gravity Sleep Clause'
|
|
457
|
+
],
|
|
458
|
+
banlist: [
|
|
459
|
+
'Arceus', 'Calyrex-Ice',
|
|
460
|
+
'Calyrex-Shadow', 'Dialga',
|
|
461
|
+
'Dialga-Origin', 'Eternatus',
|
|
462
|
+
'Genesect', 'Gengar-Mega',
|
|
463
|
+
'Giratina', 'Giratina-Origin',
|
|
464
|
+
'Groudon', 'Ho-Oh',
|
|
465
|
+
'Koraidon', 'Kyogre',
|
|
466
|
+
'Kyurem-White', 'Lugia',
|
|
467
|
+
'Lunala', 'Magearna',
|
|
468
|
+
'Melmetal', 'Mewtwo',
|
|
469
|
+
'Miraidon', 'Necrozma-Dawn-Wings',
|
|
470
|
+
'Necrozma-Dusk-Mane', 'Palkia',
|
|
471
|
+
'Palkia-Origin', 'Rayquaza',
|
|
472
|
+
'Reshiram', 'Shedinja',
|
|
473
|
+
'Solgaleo', 'Xerneas',
|
|
474
|
+
'Yveltal', 'Zacian',
|
|
475
|
+
'Zacian-Crowned', 'Zamazenta-Crowned',
|
|
476
|
+
'Zekrom', 'Commander',
|
|
477
|
+
'Power Construct', 'Swagger'
|
|
478
|
+
]
|
|
479
|
+
},
|
|
397
480
|
{
|
|
398
481
|
name: '[Gen 8] JolteMons Random Battle',
|
|
399
482
|
mod: 'gen8joltemons',
|
|
@@ -425,7 +508,8 @@ export const Formats = [
|
|
|
425
508
|
],
|
|
426
509
|
banlist: [
|
|
427
510
|
'Calyrex-Shadow', 'Miraidon',
|
|
428
|
-
'
|
|
511
|
+
'Slaking', 'Zacian-Crowned',
|
|
512
|
+
'Arena Trap', 'Comatose',
|
|
429
513
|
'Contrary', 'Gorilla Tactics',
|
|
430
514
|
'Huge Power', 'Illusion',
|
|
431
515
|
'Innards Out', 'Magnet Pull',
|
|
@@ -434,11 +518,10 @@ export const Formats = [
|
|
|
434
518
|
'Poison Heal', 'Pure Power',
|
|
435
519
|
'Shadow Tag', 'Stakeout',
|
|
436
520
|
'Water Bubble', 'Wonder Guard',
|
|
437
|
-
'
|
|
438
|
-
'
|
|
439
|
-
'
|
|
440
|
-
'
|
|
441
|
-
'Shell Smash'
|
|
521
|
+
'Belly Drum', 'Ceaseless Edge',
|
|
522
|
+
'Last Respects', 'Quiver Dance',
|
|
523
|
+
'Rage Fist', 'Revival Blessing',
|
|
524
|
+
'Shed Tail', 'Shell Smash'
|
|
442
525
|
]
|
|
443
526
|
},
|
|
444
527
|
{
|
|
@@ -682,41 +765,26 @@ export const Formats = [
|
|
|
682
765
|
]
|
|
683
766
|
},
|
|
684
767
|
{
|
|
685
|
-
name: '[Gen
|
|
686
|
-
mod: '
|
|
687
|
-
ruleset: ['
|
|
688
|
-
banlist: ['OU', 'UUBL', 'Drizzle', 'Drought']
|
|
689
|
-
},
|
|
690
|
-
{
|
|
691
|
-
name: '[Gen 7] Monotype',
|
|
692
|
-
mod: 'gen7',
|
|
693
|
-
ruleset: ['Same Type Clause', 'Standard', 'Swagger Clause'],
|
|
768
|
+
name: '[Gen 8 BDSP] OU',
|
|
769
|
+
mod: 'gen8bdsp',
|
|
770
|
+
ruleset: ['Standard', 'Evasion Abilities Clause'],
|
|
694
771
|
banlist: [
|
|
695
|
-
'
|
|
696
|
-
'
|
|
697
|
-
'
|
|
698
|
-
'
|
|
699
|
-
'
|
|
700
|
-
'
|
|
701
|
-
'
|
|
702
|
-
'Magearna', 'Marshadow', 'Mawile-Mega',
|
|
703
|
-
'Medicham-Mega', 'Metagross-Mega', 'Mewtwo',
|
|
704
|
-
'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane',
|
|
705
|
-
'Palkia', 'Pheromosa', 'Rayquaza',
|
|
706
|
-
'Reshiram', 'Salamence-Mega', 'Shaymin-Sky',
|
|
707
|
-
'Solgaleo', 'Tapu Lele', 'Xerneas',
|
|
708
|
-
'Yveltal', 'Zekrom', 'Zygarde',
|
|
709
|
-
'Battle Bond', 'Shadow Tag', 'Damp Rock',
|
|
710
|
-
'Focus Band', "King's Rock", 'Quick Claw',
|
|
711
|
-
'Razor Fang', 'Smooth Rock', 'Terrain Extender',
|
|
772
|
+
'Uber',
|
|
773
|
+
'Arena Trap',
|
|
774
|
+
'Drizzle',
|
|
775
|
+
'Moody',
|
|
776
|
+
'Shadow Tag',
|
|
777
|
+
"King's Rock",
|
|
778
|
+
'Razor Fang',
|
|
712
779
|
'Baton Pass'
|
|
713
780
|
]
|
|
714
781
|
},
|
|
782
|
+
{ name: '[Gen 1] Ubers', mod: 'gen1', ruleset: ['Standard'] },
|
|
715
783
|
{
|
|
716
|
-
name: '[Gen 7]
|
|
784
|
+
name: '[Gen 7] UU',
|
|
717
785
|
mod: 'gen7',
|
|
718
|
-
ruleset: ['[Gen 7]
|
|
719
|
-
banlist: ['
|
|
786
|
+
ruleset: ['[Gen 7] OU'],
|
|
787
|
+
banlist: ['OU', 'UUBL', 'Drizzle', 'Drought', 'Kommonium Z', 'Mewnium Z']
|
|
720
788
|
},
|
|
721
789
|
{
|
|
722
790
|
name: '[Gen 8] OU',
|
|
@@ -1019,18 +1087,6 @@ export const Formats = [
|
|
|
1019
1087
|
ruleset: ['[Gen 8] National Dex'],
|
|
1020
1088
|
banlist: ['ND OU', 'ND UUBL', 'Drizzle', 'Drought', 'Light Clay', 'Slowbronite']
|
|
1021
1089
|
},
|
|
1022
|
-
{
|
|
1023
|
-
name: '[Gen 8 BDSP] OU',
|
|
1024
|
-
mod: 'gen8bdsp',
|
|
1025
|
-
ruleset: ['Standard'],
|
|
1026
|
-
banlist: [
|
|
1027
|
-
'Uber', 'Arena Trap',
|
|
1028
|
-
'Drizzle', 'Moody',
|
|
1029
|
-
'Sand Veil', 'Shadow Tag',
|
|
1030
|
-
'Snow Cloak', "King's Rock",
|
|
1031
|
-
'Razor Fang', 'Baton Pass'
|
|
1032
|
-
]
|
|
1033
|
-
},
|
|
1034
1090
|
{
|
|
1035
1091
|
name: '[Gen 8] Battle Stadium Singles',
|
|
1036
1092
|
mod: 'gen8',
|
|
@@ -1130,12 +1186,6 @@ export const Formats = [
|
|
|
1130
1186
|
ruleset: ['Standard', 'Mega Rayquaza Clause'],
|
|
1131
1187
|
banlist: ['Baton Pass']
|
|
1132
1188
|
},
|
|
1133
|
-
{
|
|
1134
|
-
name: '[Gen 7] UU',
|
|
1135
|
-
mod: 'gen7',
|
|
1136
|
-
ruleset: ['[Gen 7] OU'],
|
|
1137
|
-
banlist: ['OU', 'UUBL', 'Drizzle', 'Drought', 'Kommonium Z', 'Mewnium Z']
|
|
1138
|
-
},
|
|
1139
1189
|
{
|
|
1140
1190
|
name: '[Gen 7] RU',
|
|
1141
1191
|
mod: 'gen7',
|
|
@@ -1143,6 +1193,12 @@ export const Formats = [
|
|
|
1143
1193
|
banlist: ['UU', 'RUBL', 'Mimikyu', 'Aurora Veil'],
|
|
1144
1194
|
unbanlist: ['Drought']
|
|
1145
1195
|
},
|
|
1196
|
+
{
|
|
1197
|
+
name: '[Gen 7] NU',
|
|
1198
|
+
mod: 'gen7',
|
|
1199
|
+
ruleset: ['[Gen 7] RU'],
|
|
1200
|
+
banlist: ['RU', 'NUBL', 'Drought']
|
|
1201
|
+
},
|
|
1146
1202
|
{ name: '[Gen 7] PU', mod: 'gen7', ruleset: ['[Gen 7] NU'], banlist: ['NU', 'PUBL'] },
|
|
1147
1203
|
{
|
|
1148
1204
|
name: '[Gen 7] LC',
|
|
@@ -1162,6 +1218,31 @@ export const Formats = [
|
|
|
1162
1218
|
'Sonic Boom', 'Sticky Web'
|
|
1163
1219
|
]
|
|
1164
1220
|
},
|
|
1221
|
+
{
|
|
1222
|
+
name: '[Gen 7] Monotype',
|
|
1223
|
+
mod: 'gen7',
|
|
1224
|
+
ruleset: ['Same Type Clause', 'Standard', 'Swagger Clause'],
|
|
1225
|
+
banlist: [
|
|
1226
|
+
'Aegislash', 'Arceus', 'Blaziken',
|
|
1227
|
+
'Darkrai', 'Deoxys-Base', 'Deoxys-Attack',
|
|
1228
|
+
'Dialga', 'Genesect', 'Gengar-Mega',
|
|
1229
|
+
'Giratina', 'Giratina-Origin', 'Groudon',
|
|
1230
|
+
'Ho-Oh', 'Hoopa-Unbound', 'Kangaskhan-Mega',
|
|
1231
|
+
'Kartana', 'Kyogre', 'Kyurem-White',
|
|
1232
|
+
'Lucario-Mega', 'Lugia', 'Lunala',
|
|
1233
|
+
'Magearna', 'Marshadow', 'Mawile-Mega',
|
|
1234
|
+
'Medicham-Mega', 'Metagross-Mega', 'Mewtwo',
|
|
1235
|
+
'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane',
|
|
1236
|
+
'Palkia', 'Pheromosa', 'Rayquaza',
|
|
1237
|
+
'Reshiram', 'Salamence-Mega', 'Shaymin-Sky',
|
|
1238
|
+
'Solgaleo', 'Tapu Lele', 'Xerneas',
|
|
1239
|
+
'Yveltal', 'Zekrom', 'Zygarde',
|
|
1240
|
+
'Battle Bond', 'Shadow Tag', 'Damp Rock',
|
|
1241
|
+
'Focus Band', "King's Rock", 'Quick Claw',
|
|
1242
|
+
'Razor Fang', 'Smooth Rock', 'Terrain Extender',
|
|
1243
|
+
'Baton Pass'
|
|
1244
|
+
]
|
|
1245
|
+
},
|
|
1165
1246
|
{
|
|
1166
1247
|
name: '[Gen 7] 1v1',
|
|
1167
1248
|
mod: 'gen7',
|
|
@@ -1370,6 +1451,12 @@ export const Formats = [
|
|
|
1370
1451
|
mod: 'gen6',
|
|
1371
1452
|
ruleset: ['Standard', 'Swagger Clause', 'Mega Rayquaza Clause']
|
|
1372
1453
|
},
|
|
1454
|
+
{
|
|
1455
|
+
name: '[Gen 6] UU',
|
|
1456
|
+
mod: 'gen6',
|
|
1457
|
+
ruleset: ['[Gen 6] OU'],
|
|
1458
|
+
banlist: ['OU', 'UUBL', 'Drizzle', 'Drought']
|
|
1459
|
+
},
|
|
1373
1460
|
{ name: '[Gen 6] RU', mod: 'gen6', ruleset: ['[Gen 6] UU'], banlist: ['UU', 'RUBL'] },
|
|
1374
1461
|
{ name: '[Gen 6] NU', mod: 'gen6', ruleset: ['[Gen 6] RU'], banlist: ['RU', 'NUBL'] },
|
|
1375
1462
|
{
|
|
@@ -1908,6 +1995,22 @@ export const Formats = [
|
|
|
1908
1995
|
ruleset: ['Standard'],
|
|
1909
1996
|
banlist: ['Uber', 'OU', 'UUBL', 'UU', 'NUBL', 'NU']
|
|
1910
1997
|
},
|
|
1998
|
+
{
|
|
1999
|
+
name: '[Gen 3] LC',
|
|
2000
|
+
mod: 'gen3',
|
|
2001
|
+
ruleset: ['Standard', 'Little Cup'],
|
|
2002
|
+
banlist: [
|
|
2003
|
+
'Chansey',
|
|
2004
|
+
'Meditite',
|
|
2005
|
+
'Omanyte',
|
|
2006
|
+
'Scyther',
|
|
2007
|
+
'Wynaut',
|
|
2008
|
+
'Zigzagoon',
|
|
2009
|
+
'Agility + Baton Pass',
|
|
2010
|
+
'Dragon Rage',
|
|
2011
|
+
'Sonic Boom'
|
|
2012
|
+
]
|
|
2013
|
+
},
|
|
1911
2014
|
{
|
|
1912
2015
|
name: '[Gen 3] 1v1',
|
|
1913
2016
|
mod: 'gen3',
|
|
@@ -2038,7 +2141,6 @@ export const Formats = [
|
|
|
2038
2141
|
'Default Level = 100'
|
|
2039
2142
|
]
|
|
2040
2143
|
},
|
|
2041
|
-
{ name: '[Gen 1] Ubers', mod: 'gen1', ruleset: ['Standard'] },
|
|
2042
2144
|
{
|
|
2043
2145
|
name: '[Gen 1] UU',
|
|
2044
2146
|
mod: 'gen1',
|