Ban DW abilities for all gen 5 pokemon except 2.

This commit is contained in:
Guangcong Luo
2012-02-24 23:51:45 -05:00
parent 0fb4bbbef7
commit b7ea47bdcb

View File

@@ -411,13 +411,17 @@ function BattleTools()
unreleasedDW = {
Serperior: 1, Chandelure: 1, Ditto: 1,
Breloom: 1, Zapdos: 1, Feraligatr: 1, Gothitelle: 1,
'Ho-Oh': 1, Lugia: 1, Raikou: 1
'Ho-Oh': 1, Lugia: 1, Raikou: 1, Cinccino: 1
};
if (unreleasedDW[set.species] && banlistTable['Unreleased'])
{
problems.push(set.name+" ("+set.species+")'s Dream World ability is unreleased.");
}
else if (template.num >= 494 && set.species !== 'Darmanitan' && set.species !== 'Munna')
{
problems.push(set.name+" ("+set.species+")'s Dream World ability is unreleased.");
}
}
}
var limit1 = 0;