mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-21 14:59:50 -05:00
16 lines
295 B
JavaScript
16 lines
295 B
JavaScript
'use strict';
|
|
|
|
/**@type {{[k: string]: ModdedFormatsData}} */
|
|
let BattleFormats = {
|
|
pokemon: {
|
|
inherit: true,
|
|
banlist: [
|
|
'Chansey + Charm + Seismic Toss',
|
|
'Blissey + Charm + Seismic Toss',
|
|
'Huntail + Shell Smash + Sucker Punch',
|
|
],
|
|
},
|
|
};
|
|
|
|
exports.BattleFormats = BattleFormats;
|