mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
* Fixed tooltip text of Vorinclex, Voice of Hunger.
This commit is contained in:
parent
3142866ede
commit
f8439a7729
1 changed files with 4 additions and 2 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue