fixed Igneous Cur activation cost

This commit is contained in:
Evan Kranzler 2020-06-12 20:33:30 -04:00
parent a26e56f896
commit 56c3435d4c

View file

@ -27,7 +27,7 @@ public final class IgneousCur extends CardImpl {
// {1}{R}: Igneous Cur gets +2/+0 until end of turn. // {1}{R}: Igneous Cur gets +2/+0 until end of turn.
this.addAbility(new SimpleActivatedAbility( this.addAbility(new SimpleActivatedAbility(
new BoostSourceEffect(2, 0, Duration.EndOfTurn), new ManaCostsImpl("{2}{R}") new BoostSourceEffect(2, 0, Duration.EndOfTurn), new ManaCostsImpl("{1}{R}")
)); ));
} }