* Fixed tooltip text of Vorinclex, Voice of Hunger.

This commit is contained in:
LevelX2 2015-02-12 13:54:30 +01:00
parent 3142866ede
commit f8439a7729

View file

@ -33,6 +33,7 @@ import mage.abilities.TriggeredAbilityImpl;
import mage.abilities.common.TapForManaAllTriggeredManaAbility;
import mage.abilities.effects.common.AddManaOfAnyTypeProducedEffect;
import mage.abilities.effects.common.DontUntapInControllersNextUntapStepTargetEffect;
import mage.abilities.effects.common.ManaEffect;
import mage.abilities.keyword.TrampleAbility;
import mage.cards.CardImpl;
import mage.constants.CardType;
@ -63,9 +64,10 @@ public class VorinclexVoiceOfHunger extends CardImpl {
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");
this.addAbility(new TapForManaAllTriggeredManaAbility(
new AddManaOfAnyTypeProducedEffect(),
new FilterControlledLandPermanent("you tap a land"),
effect, new FilterControlledLandPermanent("you tap a land"),
SetTargetPointer.PERMANENT));
// Whenever an opponent taps a land for mana, that land doesn't untap during its controller's next untap step.