Merge pull request #1177 from NaniMan/patch-1

Monotype bans updated
This commit is contained in:
The Immortal
2014-08-29 17:07:47 +08:00
2 changed files with 7 additions and 1 deletions

View File

@@ -439,7 +439,7 @@ exports.Formats = [
ruleset: ['Pokemon', 'Standard', 'Team Preview', 'Swagger Clause', 'Baton Pass Clause', 'Same Type Clause'],
banlist: ['Gengarite', 'Kangaskhanite', 'Lucarionite',
'Arceus', 'Blaziken', 'Darkrai', 'Deoxys', 'Deoxys-Attack', 'Dialga', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh',
'Kyogre', 'Kyurem-White', 'Lugia', 'Mewtwo', 'Palkia', 'Rayquaza', 'Reshiram', 'Shaymin-Sky', 'Talonflame', 'Xerneas',
'Kyogre', 'Lugia', 'Mewtwo', 'Palkia', 'Rayquaza', 'Reshiram', 'Talonflame', 'Xerneas',
'Yveltal', 'Zekrom'
]
},

View File

@@ -529,6 +529,12 @@ exports.BattleFormats = {
break;
case 'Water':
if (teamHas['damprock']) return ["Damp Rock is banned from Water monotype teams."];
break;
case 'Dragon':
if (teamHas['kyuremwhite']) return ["Kyurem-White is banned from Dragon monotype teams."];
break;
case 'Flying':
if (teamHas['shayminsky']) return ["Shaymin-Sky is banned from Flying monotype teams."];
}
}
}