mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-24 08:46:26 -05:00
- `Obtainable` and `Team Preview` are now part of `Standard` - `minSourceGen: 8` is now a part of `-Unreleased` (which is part of `Obtainable`) in Gen 8. Instead, it's NatDex that overrides it with `minSourceGen: 1`. This allows `!Standard, Standard NatDex` and `!Standard NatDex, Standard` to work as intended. - Duplicate rules are now checked for (does not apply to subrules, so multiple inheritance is still possible) - It is now possible to inherit `minSourceGen` from rules.
15 lines
512 B
JavaScript
15 lines
512 B
JavaScript
'use strict';
|
|
|
|
/**@type {{[k: string]: ModdedFormatsData}} */
|
|
let BattleFormats = {
|
|
standard: {
|
|
effectType: 'ValidatorRule',
|
|
name: 'Standard',
|
|
desc: "The standard ruleset for all offical Smogon singles tiers (Ubers, OU, etc.)",
|
|
ruleset: ['Obtainable', 'Sleep Clause Mod', 'Switch Priority Clause Mod', 'Species Clause', 'Nickname Clause', 'OHKO Clause', 'Moody Clause', 'Evasion Moves Clause', 'Endless Battle Clause', 'HP Percentage Mod', 'Cancel Mod'],
|
|
},
|
|
};
|
|
|
|
exports.BattleFormats = BattleFormats;
|
|
|