From f6e7e6d01d66a041aa6d36e87e8ce44b72a880c8 Mon Sep 17 00:00:00 2001 From: Zzooouhh Date: Fri, 13 Oct 2017 00:56:08 +0200 Subject: [PATCH] Text edit and minor cleanup --- Mage.Sets/src/mage/cards/e/EnergyArc.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Mage.Sets/src/mage/cards/e/EnergyArc.java b/Mage.Sets/src/mage/cards/e/EnergyArc.java index 654fc01850a..f3c4440db47 100644 --- a/Mage.Sets/src/mage/cards/e/EnergyArc.java +++ b/Mage.Sets/src/mage/cards/e/EnergyArc.java @@ -51,9 +51,9 @@ public class EnergyArc extends CardImpl { // Untap any number of target creatures. Prevent all combat damage that would be dealt to and dealt by those creatures this turn. this.getSpellAbility().addTarget(new TargetCreaturePermanent(0, Integer.MAX_VALUE)); - this.getSpellAbility().addEffect(new UntapTargetEffect()); - this.getSpellAbility().addEffect(new PreventDamageByTargetEffect(Duration.EndOfTurn, true)); - this.getSpellAbility().addEffect(new PreventDamageToTargetEffect(Duration.EndOfTurn, Integer.MAX_VALUE, true)); + this.getSpellAbility().addEffect(new UntapTargetEffect().setText("Untap any number of target creatures. ")); + this.getSpellAbility().addEffect(new PreventDamageByTargetEffect(Duration.EndOfTurn, true).setText("Prevent all combat damage that would be dealt to ")); + this.getSpellAbility().addEffect(new PreventDamageToTargetEffect(Duration.EndOfTurn, true).setText("and dealt by those creatures this turn.")); } public EnergyArc(final EnergyArc card) {