mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +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.
|
||||
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."));
|
||||
ability.setRuleAtTheTop(true);
|
||||
this.addAbility(ability);
|
||||
|
|
Loading…
Reference in a new issue