From 40abff2c56e5a6482d7329c1d2e695b13533e5a2 Mon Sep 17 00:00:00 2001 From: magenoxx Date: Wed, 21 Mar 2012 18:34:24 +0400 Subject: [PATCH] FaithsShield - fixed symbols --- .../src/mage/sets/darkascension/FaithsShield.java | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/Mage.Sets/src/mage/sets/darkascension/FaithsShield.java b/Mage.Sets/src/mage/sets/darkascension/FaithsShield.java index ef944ba8e43..949f4b7b1a4 100644 --- a/Mage.Sets/src/mage/sets/darkascension/FaithsShield.java +++ b/Mage.Sets/src/mage/sets/darkascension/FaithsShield.java @@ -27,18 +27,13 @@ */ package mage.sets.darkascension; -import java.util.UUID; -import mage.Constants; import mage.Constants.CardType; import mage.Constants.Duration; import mage.Constants.Outcome; import mage.Constants.Rarity; import mage.abilities.Ability; import mage.abilities.condition.common.FatefulHourCondition; -import mage.abilities.condition.common.MetalcraftCondition; -import mage.abilities.decorator.ConditionalOneShotEffect; import mage.abilities.effects.OneShotEffect; -import mage.abilities.effects.common.CreateTokenEffect; import mage.abilities.effects.common.continious.GainAbilityControlledEffect; import mage.abilities.effects.common.continious.GainAbilityControllerEffect; import mage.abilities.effects.common.continious.GainProtectionFromColorTargetEffect; @@ -47,10 +42,11 @@ import mage.cards.CardImpl; import mage.choices.ChoiceColor; import mage.filter.Filter; import mage.filter.FilterCard; -import mage.filter.common.FilterCreaturePermanent; import mage.game.Game; import mage.target.common.TargetControlledPermanent; +import java.util.UUID; + /** * * @author BetaSteward @@ -65,7 +61,7 @@ public class FaithsShield extends CardImpl { // Target permanent you control gains protection from the color of your choice until end of turn. - // Fateful hour — If you have 5 or less life, instead you and each permanent you control gain protection from the color of your choice until end of turn. + // Fateful hour - If you have 5 or less life, instead you and each permanent you control gain protection from the color of your choice until end of turn. this.getSpellAbility().addEffect(new FaithsShieldEffect()); this.getSpellAbility().addTarget(new TargetControlledPermanent()); this.getSpellAbility().addChoice(new ChoiceColor()); @@ -85,7 +81,7 @@ class FaithsShieldEffect extends OneShotEffect { public FaithsShieldEffect() { super(Outcome.Protect); - staticText = "Target permanent you control gains protection from the color of your choice until end of turn\nFateful hour — If you have 5 or less life, instead you and each permanent you control gain protection from the color of your choice until end of turn"; + staticText = "Target permanent you control gains protection from the color of your choice until end of turn\nFateful hour - If you have 5 or less life, instead you and each permanent you control gain protection from the color of your choice until end of turn"; } public FaithsShieldEffect(final FaithsShieldEffect effect) {