mirror of
https://github.com/correl/mage.git
synced 2025-03-17 01:06:26 -09:00
* Mycosynth Lattice - Added hint text for the use of floating mana (closes #1544).
This commit is contained in:
parent
029f47ec32
commit
0cd5ab12f7
2 changed files with 5 additions and 2 deletions
|
@ -8,6 +8,7 @@ import mage.abilities.common.SimpleStaticAbility;
|
||||||
import mage.abilities.effects.AsThoughEffectImpl;
|
import mage.abilities.effects.AsThoughEffectImpl;
|
||||||
import mage.abilities.effects.AsThoughManaEffect;
|
import mage.abilities.effects.AsThoughManaEffect;
|
||||||
import mage.abilities.effects.ContinuousEffectImpl;
|
import mage.abilities.effects.ContinuousEffectImpl;
|
||||||
|
import mage.abilities.hint.StaticHint;
|
||||||
import mage.cards.Card;
|
import mage.cards.Card;
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.cards.CardSetInfo;
|
import mage.cards.CardSetInfo;
|
||||||
|
@ -34,7 +35,9 @@ public final class MycosynthLattice extends CardImpl {
|
||||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new EverythingIsColorlessEffect()));
|
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new EverythingIsColorlessEffect()));
|
||||||
|
|
||||||
// Players may spend mana as though it were mana of any color.
|
// Players may spend mana as though it were mana of any color.
|
||||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new ManaCanBeSpentAsAnyColorEffect()));
|
Ability ability = new SimpleStaticAbility(Zone.BATTLEFIELD, new ManaCanBeSpentAsAnyColorEffect());
|
||||||
|
ability.addHint(new StaticHint("(XMage hint: You can use floating mana by clicking on the related symbol of the needed mana type in your mana pool player area.)"));
|
||||||
|
this.addAbility(ability);
|
||||||
}
|
}
|
||||||
|
|
||||||
public MycosynthLattice(final MycosynthLattice card) {
|
public MycosynthLattice(final MycosynthLattice card) {
|
||||||
|
|
|
@ -32,7 +32,7 @@ public final class SunderingStroke extends CardImpl {
|
||||||
));
|
));
|
||||||
this.getSpellAbility().addTarget(new TargetAnyTargetAmount(7, 3));
|
this.getSpellAbility().addTarget(new TargetAnyTargetAmount(7, 3));
|
||||||
this.getSpellAbility().addHint(new StaticHint(
|
this.getSpellAbility().addHint(new StaticHint(
|
||||||
"(You have to choose how 7 damage is divided even if you spend seven red mana)"
|
"(You have to choose how 7 damage is divided even if you spend seven red mana.)"
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue