mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-15 00:40:13 -05:00
(The name FormatsData is inconsistent with how we name other things; especially since it's supposed to be data for a single format. It was probably originally a typo. -Zarel)
17 lines
484 B
TypeScript
17 lines
484 B
TypeScript
export const Formats: {[k: string]: ModdedFormatData} = {
|
|
standard: {
|
|
inherit: true,
|
|
ruleset: [
|
|
'Obtainable', 'Team Preview', 'Species Clause', 'Nickname Clause', 'OHKO Clause', 'Moody Clause', 'Evasion Moves Clause', 'Endless Battle Clause', 'HP Percentage Mod', 'Cancel Mod',
|
|
],
|
|
},
|
|
obtainablemoves: {
|
|
inherit: true,
|
|
banlist: [
|
|
// Shell Smash: Clamperl Gen 5+ level-up
|
|
// Sucker Punch: Huntail Gen 4 tutor
|
|
'Huntail + Shell Smash + Sucker Punch',
|
|
],
|
|
},
|
|
};
|