mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 12:19:59 -08:00
* Fixed Wirewood Channeler and Harabaz Druid allowing any combinations of Colors instead if any one color.
This commit is contained in:
parent
2723bf6cb7
commit
03b8a22c43
4 changed files with 35 additions and 9 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue