mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
Fix #10489 (Mirror of Galadriel)
This commit is contained in:
parent
a5260ea75f
commit
fac63a0faf
1 changed files with 3 additions and 1 deletions
|
@ -3,6 +3,7 @@ package mage.cards.m;
|
|||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
import mage.abilities.costs.CostAdjuster;
|
||||
import mage.abilities.costs.common.TapSourceCost;
|
||||
import mage.abilities.costs.mana.GenericManaCost;
|
||||
import mage.abilities.dynamicvalue.common.PermanentsOnBattlefieldCount;
|
||||
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
||||
|
@ -34,6 +35,7 @@ public final class MirrorOfGaladriel extends CardImpl {
|
|||
Ability ability = new SimpleActivatedAbility(
|
||||
new ScryEffect(1, false), new GenericManaCost(5)
|
||||
);
|
||||
ability.addCost(new TapSourceCost());
|
||||
ability.addEffect(new DrawCardSourceControllerEffect(1));
|
||||
ability.addEffect(new InfoEffect(
|
||||
"This ability costs {1} less to activate for each legendary creature you control."
|
||||
|
@ -73,4 +75,4 @@ enum MirrorOfGaladrielAdjuster implements CostAdjuster {
|
|||
CardUtil.reduceCost(ability, value);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue