* Hold the Line - Fixed wrong casting costs.

This commit is contained in:
LevelX2 2015-07-25 09:40:09 +02:00
parent be33352a1d
commit 24dd46e15d

View file

@ -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);
}
}
}