* Skyshroud Cutter - Fixed wrong live gain from 6 to correctly 5.

This commit is contained in:
LevelX2 2015-03-26 19:28:21 +01:00
parent 0d84127146
commit 1cb3012c37

View file

@ -60,7 +60,7 @@ public class SkyshroudCutter extends CardImpl {
this.toughness = new MageInt(2);
// If you control a Forest, rather than pay Skyshroud Cutter's mana cost, you may have each other player gain 5 life.
this.addAbility(new AlternativeCostSourceAbility(new GainLifePlayersCost(6), new PermanentsOnTheBattlefieldCondition(filter)));
this.addAbility(new AlternativeCostSourceAbility(new GainLifePlayersCost(5), new PermanentsOnTheBattlefieldCondition(filter)));
}
public SkyshroudCutter(final SkyshroudCutter card) {