mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-09-10 02:05:35 -05:00
DPP: Sleep Moves Clause (#11687)
This commit is contained in:
committed by
GitHub
parent
7a3f4dbbe2
commit
537afeea76
@@ -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'],
|
||||
},
|
||||
|
||||
@@ -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', () => {
|
||||
|
||||
Reference in New Issue
Block a user