mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
[STX] fixed Mage Duel cost reduction not applying
This commit is contained in:
parent
7ef8f84b69
commit
76839ad060
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ public final class MageDuel extends CardImpl {
|
||||||
// This spell costs {2} less to cast if you've cast another instant or sorcery spell this turn.
|
// This spell costs {2} less to cast if you've cast another instant or sorcery spell this turn.
|
||||||
this.addAbility(new SimpleStaticAbility(
|
this.addAbility(new SimpleStaticAbility(
|
||||||
Zone.ALL, new SpellCostReductionSourceEffect(2, MageDuelCondition.instance).setCanWorksOnStackOnly(true)
|
Zone.ALL, new SpellCostReductionSourceEffect(2, MageDuelCondition.instance).setCanWorksOnStackOnly(true)
|
||||||
).setRuleAtTheTop(true));
|
).setRuleAtTheTop(true), new SpellsCastWatcher());
|
||||||
|
|
||||||
// Target creature you control gets +1/+2 until end of turn. Then it fights target creature you don't control.
|
// Target creature you control gets +1/+2 until end of turn. Then it fights target creature you don't control.
|
||||||
this.getSpellAbility().addEffect(new BoostTargetEffect(1, 2));
|
this.getSpellAbility().addEffect(new BoostTargetEffect(1, 2));
|
||||||
|
|
Loading…
Reference in a new issue