mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-23 08:16:16 -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.
13 lines
350 B
JavaScript
13 lines
350 B
JavaScript
'use strict';
|
|
|
|
/**@type {{[k: string]: ModdedFormatsData}} */
|
|
let BattleFormats = {
|
|
standard: {
|
|
effectType: 'ValidatorRule',
|
|
name: 'Standard',
|
|
ruleset: ['Obtainable', 'Sleep Clause Mod', 'Freeze Clause Mod', 'Species Clause', 'OHKO Clause', 'Evasion Moves Clause', 'Exact HP Mod', 'Cancel Mod'],
|
|
},
|
|
};
|
|
|
|
exports.BattleFormats = BattleFormats;
|