mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
fixed Igneous Elemental cost reduction (fixes #5829)
This commit is contained in:
parent
2be63e3cea
commit
3599d6343c
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ public final class IgneousElemental extends CardImpl {
|
||||||
|
|
||||||
// This spell costs {2} less to cast if there is a land card in your graveyard.
|
// This spell costs {2} less to cast if there is a land card in your graveyard.
|
||||||
Ability ability = new SimpleStaticAbility(Zone.STACK, new SpellCostReductionSourceEffect(
|
Ability ability = new SimpleStaticAbility(Zone.STACK, new SpellCostReductionSourceEffect(
|
||||||
1, new CardsInControllerGraveCondition(1, StaticFilters.FILTER_CARD_LAND)
|
2, new CardsInControllerGraveCondition(1, StaticFilters.FILTER_CARD_LAND)
|
||||||
).setText("This spell costs {2} less to cast if there is a land card in your graveyard."));
|
).setText("This spell costs {2} less to cast if there is a land card in your graveyard."));
|
||||||
ability.setRuleAtTheTop(true);
|
ability.setRuleAtTheTop(true);
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
|
|
Loading…
Reference in a new issue