mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
* Hold the Line - Fixed wrong casting costs.
This commit is contained in:
parent
be33352a1d
commit
24dd46e15d
1 changed files with 4 additions and 5 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue