mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-09-07 08:45:32 -05:00
Validator: Fix HA Raikou/Entei/Suicune legality in pentagon formats
This commit is contained in:
@@ -283,7 +283,7 @@ export class TeamValidator {
|
||||
|
||||
if (template.unreleasedHidden && ruleTable.has('-unreleased')) {
|
||||
problems.push(`${name}'s Hidden Ability is unreleased.`);
|
||||
} else if (['entei', 'suicune', 'raikou'].includes(template.id) && format.requirePlus) {
|
||||
} else if (['entei', 'suicune', 'raikou'].includes(template.id) && (format.requirePlus || format.requirePentagon)) {
|
||||
problems.push(`${name}'s Hidden Ability is only available from Virtual Console, which is not allowed in this format.`);
|
||||
} else if (dex.gen === 6 && ability.name === 'Symbiosis' &&
|
||||
(set.species.endsWith('Orange') || set.species.endsWith('White'))) {
|
||||
|
||||
Reference in New Issue
Block a user