pokemon-showdown/data/mods/gen5/rulesets.ts
Strahm, Jeffrey S.(S&T-Student) 188426490b Rename FormatsData to FormatData
(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)
2020-09-07 19:35:14 -07:00

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',
],
},
};