From 24dd46e15dcab1ca1b9e1e55feef660af681b9ad Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sat, 25 Jul 2015 09:40:09 +0200 Subject: [PATCH] * Hold the Line - Fixed wrong casting costs. --- .../src/mage/sets/championsofkamigawa/HoldTheLine.java | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Mage.Sets/src/mage/sets/championsofkamigawa/HoldTheLine.java b/Mage.Sets/src/mage/sets/championsofkamigawa/HoldTheLine.java index 95f5deee3ef..3177a4759f9 100644 --- a/Mage.Sets/src/mage/sets/championsofkamigawa/HoldTheLine.java +++ b/Mage.Sets/src/mage/sets/championsofkamigawa/HoldTheLine.java @@ -28,11 +28,11 @@ package mage.sets.championsofkamigawa; import java.util.UUID; +import mage.abilities.effects.common.continuous.BoostAllEffect; +import mage.cards.CardImpl; import mage.constants.CardType; import mage.constants.Duration; import mage.constants.Rarity; -import mage.abilities.effects.common.continuous.BoostAllEffect; -import mage.cards.CardImpl; import mage.filter.common.FilterBlockingCreature; /** @@ -44,10 +44,9 @@ public class HoldTheLine extends CardImpl { private static final FilterBlockingCreature filter = new FilterBlockingCreature("Blocking creatures"); public HoldTheLine(UUID ownerId) { - super(ownerId, 13, "Hold the Line", Rarity.RARE, new CardType[]{CardType.INSTANT}, "{2}{W}{W}"); + super(ownerId, 13, "Hold the Line", Rarity.RARE, new CardType[]{CardType.INSTANT}, "{1}{W}{W}"); this.expansionSetCode = "CHK"; - // Blocking creatures get +7/+7 until end of turn. this.getSpellAbility().addEffect(new BoostAllEffect(7, 7, Duration.EndOfTurn, filter, false)); } @@ -60,4 +59,4 @@ public class HoldTheLine extends CardImpl { public HoldTheLine copy() { return new HoldTheLine(this); } -} \ No newline at end of file +}