DPP: Sleep Moves Clause (#11687)

This commit is contained in:
André Bastos Dias
2026-01-08 18:49:48 +00:00
committed by GitHub
parent 7a3f4dbbe2
commit 537afeea76
2 changed files with 3 additions and 3 deletions

View File

@@ -3973,7 +3973,7 @@ export const Formats: import('../sim/dex-formats').FormatList = [
{
name: "[Gen 4] OU",
mod: 'gen4',
ruleset: ['Standard', 'Evasion Abilities Clause', 'Baton Pass Stat Trap Clause', 'Freeze Clause Mod'],
ruleset: ['Standard', 'Evasion Abilities Clause', 'Baton Pass Stat Trap Clause', 'Freeze Clause Mod', 'Sleep Moves Clause', '!Sleep Clause Mod'],
banlist: ['AG', 'Uber', 'Arena Trap', 'Quick Claw', 'Soul Dew', 'Swagger'],
},
{
@@ -4835,7 +4835,7 @@ export const Formats: import('../sim/dex-formats').FormatList = [
name: "[Gen 4] UU",
mod: 'gen4',
searchShow: false,
ruleset: ['[Gen 4] OU', '!Baton Pass Stat Trap Clause', '!Freeze Clause Mod'],
ruleset: ['[Gen 4] OU', '!Baton Pass Stat Trap Clause', '!Freeze Clause Mod', '!Sleep Moves Clause', 'Sleep Clause Mod'],
banlist: ['OU', 'UUBL', 'Baton Pass'],
unbanlist: ['Arena Trap', 'Snow Cloak', 'Quick Claw', 'Swagger'],
},

View File

@@ -156,7 +156,7 @@ describe('Team Validator', () => {
const team = [
{ species: 'smeargle', ability: 'owntempo', moves: ['bellydrum', 'spore', 'sketch'], evs: { hp: 1 } },
];
assert.legalTeam(team, 'gen4ou');
assert.legalTeam(team, 'gen4anythinggoes');
});
it('should accept both ability types for Mega Evolutions', () => {