From 1cb3012c37bb23ac61ee8d962aafd0363875c2e0 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Thu, 26 Mar 2015 19:28:21 +0100 Subject: [PATCH] * Skyshroud Cutter - Fixed wrong live gain from 6 to correctly 5. --- Mage.Sets/src/mage/sets/nemesis/SkyshroudCutter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/nemesis/SkyshroudCutter.java b/Mage.Sets/src/mage/sets/nemesis/SkyshroudCutter.java index e37fb51cafc..e31ee11733a 100644 --- a/Mage.Sets/src/mage/sets/nemesis/SkyshroudCutter.java +++ b/Mage.Sets/src/mage/sets/nemesis/SkyshroudCutter.java @@ -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) {