* Fixed Wirewood Channeler and Harabaz Druid allowing any combinations of Colors instead if any one color.

This commit is contained in:
LevelX2 2015-04-04 14:58:47 +02:00
parent 2723bf6cb7
commit 03b8a22c43
4 changed files with 35 additions and 9 deletions

View file

@ -30,6 +30,7 @@ package mage.sets.legions;
import java.util.UUID;
import mage.MageInt;
import mage.Mana;
import mage.abilities.costs.common.TapSourceCost;
import mage.abilities.dynamicvalue.common.PermanentsOnBattlefieldCount;
import mage.abilities.mana.DynamicManaAbility;
import mage.cards.CardImpl;
@ -61,8 +62,8 @@ public class WirewoodChanneler extends CardImpl {
this.toughness = new MageInt(2);
// {T}: Add X mana of any one color to your mana pool, where X is the number of Elves on the battlefield.
DynamicManaAbility ability = new DynamicManaAbility(new Mana(0,0,0,0,0,0,1), new PermanentsOnBattlefieldCount(filter),
"Add X mana of any one color to your mana pool, where X is the number of Elves on the battlefield");
DynamicManaAbility ability = new DynamicManaAbility(new Mana(0,0,0,0,0,0,1), new PermanentsOnBattlefieldCount(filter), new TapSourceCost(),
"Add X mana of any one color to your mana pool, where X is the number of Elves on the battlefield", true);
this.addAbility(ability);
}

View file

@ -30,6 +30,7 @@ package mage.sets.worldwake;
import java.util.UUID;
import mage.MageInt;
import mage.Mana;
import mage.abilities.costs.common.TapSourceCost;
import mage.abilities.dynamicvalue.common.PermanentsOnBattlefieldCount;
import mage.abilities.mana.DynamicManaAbility;
import mage.cards.CardImpl;
@ -61,8 +62,8 @@ public class HarabazDruid extends CardImpl {
this.toughness = new MageInt(1);
// {T}: Add X mana of any one color to your mana pool, where X is the number of Allies you control.
this.addAbility(new DynamicManaAbility(new Mana(0,0,0,0,0,0,1), new PermanentsOnBattlefieldCount(filter),
"Add X mana of any one color to your mana pool, where X is the number of Allies you control"));
this.addAbility(new DynamicManaAbility(new Mana(0,0,0,0,0,0,1), new PermanentsOnBattlefieldCount(filter), new TapSourceCost(),
"Add X mana of any one color to your mana pool, where X is the number of Allies you control", true));
}
public HarabazDruid(final HarabazDruid card) {