From 7fd068bd7440215ff088d566a08579e23eb24ea7 Mon Sep 17 00:00:00 2001 From: doncarton Date: Sun, 5 Mar 2017 01:39:20 +0300 Subject: [PATCH] Should it be mandatory? --- Mage.Sets/src/mage/cards/c/ConsulsShieldguard.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/c/ConsulsShieldguard.java b/Mage.Sets/src/mage/cards/c/ConsulsShieldguard.java index 07e5a0d365c..fea0524b41f 100644 --- a/Mage.Sets/src/mage/cards/c/ConsulsShieldguard.java +++ b/Mage.Sets/src/mage/cards/c/ConsulsShieldguard.java @@ -27,7 +27,6 @@ */ package mage.cards.c; -import java.util.UUID; import mage.MageInt; import mage.abilities.Ability; import mage.abilities.common.AttacksTriggeredAbility; @@ -45,6 +44,8 @@ import mage.filter.common.FilterAttackingCreature; import mage.filter.predicate.permanent.AnotherPredicate; import mage.target.common.TargetCreaturePermanent; +import java.util.UUID; + /** * * @author LevelX2 @@ -69,7 +70,7 @@ public class ConsulsShieldguard extends CardImpl { // Whenever Consul's Shiedguard attacks, you may pay {E}. If you do, another target attacking creature gets indestructible until end of turn. DoIfCostPaid doIfCostPaidEffect = new DoIfCostPaid(new GainAbilityTargetEffect(IndestructibleAbility.getInstance(), Duration.EndOfTurn), new PayEnergyCost(1)); - Ability ability = new AttacksTriggeredAbility(doIfCostPaidEffect, false, + Ability ability = new AttacksTriggeredAbility(doIfCostPaidEffect, true, "Whenever {this} attacks, you may pay {E}. If you do, another target attacking creature gets indestructible until end of turn."); ability.addTarget(new TargetCreaturePermanent(filter)); this.addAbility(ability);