From b7ea47bdcb3ceeb8668a7b89154404fa2fc52006 Mon Sep 17 00:00:00 2001 From: Guangcong Luo Date: Fri, 24 Feb 2012 23:51:45 -0500 Subject: [PATCH] Ban DW abilities for all gen 5 pokemon except 2. --- tools.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tools.js b/tools.js index 2d3fdeba19..7285ccc18f 100644 --- a/tools.js +++ b/tools.js @@ -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;