mirror of
https://github.com/magefree/mage.git
synced 2026-01-18 17:29:58 -08:00
* Fixed that conditional mana (e.g. River of Tears) did not trigger mana adding effects like Vorinclex, Voice of Hunger.
This commit is contained in:
parent
dc6dc07e47
commit
b62dadf95d
5 changed files with 124 additions and 17 deletions
|
|
@ -50,9 +50,9 @@ public class MirarisWake extends CardImpl {
|
|||
super(ownerId, 139, "Mirari's Wake", Rarity.RARE, new CardType[]{CardType.ENCHANTMENT}, "{3}{G}{W}");
|
||||
this.expansionSetCode = "JUD";
|
||||
|
||||
|
||||
// Creatures you control get +1/+1.
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostControlledEffect(1,1,Duration.WhileOnBattlefield)));
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostControlledEffect(1, 1, Duration.WhileOnBattlefield)));
|
||||
|
||||
// Whenever you tap a land for mana, add one mana to your mana pool of any type that land produced.
|
||||
AddManaOfAnyTypeProducedEffect effect = new AddManaOfAnyTypeProducedEffect();
|
||||
effect.setText("add one mana to your mana pool of any type that land produced");
|
||||
|
|
|
|||
|
|
@ -62,7 +62,9 @@ public class VorinclexVoiceOfHunger extends CardImpl {
|
|||
this.power = new MageInt(7);
|
||||
this.toughness = new MageInt(6);
|
||||
|
||||
// Trample
|
||||
this.addAbility(TrampleAbility.getInstance());
|
||||
|
||||
// Whenever you tap a land for mana, add one mana to your mana pool of any type that land produced.
|
||||
ManaEffect effect = new AddManaOfAnyTypeProducedEffect();
|
||||
effect.setText("add one mana to your mana pool of any type that land produced");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue