From 46507f33539ee42ddbd060d41abe66e02e3455af Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Thu, 19 Apr 2018 14:03:09 -0400 Subject: [PATCH] updated some and/or text --- .../src/mage/cards/c/ChandraTheFirebrand.java | 4 ++-- Mage.Sets/src/mage/cards/f/FuriousReprisal.java | 4 ++-- Mage.Sets/src/mage/cards/p/PinnacleOfRage.java | 7 +++---- Mage.Sets/src/mage/cards/s/ShowerOfCoals.java | 16 +++++++--------- 4 files changed, 14 insertions(+), 17 deletions(-) diff --git a/Mage.Sets/src/mage/cards/c/ChandraTheFirebrand.java b/Mage.Sets/src/mage/cards/c/ChandraTheFirebrand.java index 7a50f606a5..61e60e4be9 100644 --- a/Mage.Sets/src/mage/cards/c/ChandraTheFirebrand.java +++ b/Mage.Sets/src/mage/cards/c/ChandraTheFirebrand.java @@ -55,7 +55,7 @@ import mage.target.targetpointer.FixedTarget; public class ChandraTheFirebrand extends CardImpl { public ChandraTheFirebrand(UUID ownerId, CardSetInfo setInfo) { - super(ownerId,setInfo,new CardType[]{CardType.PLANESWALKER},"{3}{R}"); + super(ownerId, setInfo, new CardType[]{CardType.PLANESWALKER}, "{3}{R}"); this.addSuperType(SuperType.LEGENDARY); this.subtype.add(SubType.CHANDRA); @@ -72,7 +72,7 @@ public class ChandraTheFirebrand extends CardImpl { this.addAbility(new LoyaltyAbility(effect, -2)); // -6: Chandra, the Firebrand deals 6 damage to each of up to six target creatures and/or players - LoyaltyAbility ability2 = new LoyaltyAbility(new DamageTargetEffect(6, true, "each of up to six target creatures and/or players"), -6); + LoyaltyAbility ability2 = new LoyaltyAbility(new DamageTargetEffect(6, true, "each of up to six targets"), -6); ability2.addTarget(new TargetAnyTarget(0, 6)); this.addAbility(ability2); } diff --git a/Mage.Sets/src/mage/cards/f/FuriousReprisal.java b/Mage.Sets/src/mage/cards/f/FuriousReprisal.java index 7fba562660..f791cda488 100644 --- a/Mage.Sets/src/mage/cards/f/FuriousReprisal.java +++ b/Mage.Sets/src/mage/cards/f/FuriousReprisal.java @@ -41,10 +41,10 @@ import mage.target.common.TargetAnyTarget; public class FuriousReprisal extends CardImpl { public FuriousReprisal(UUID ownerId, CardSetInfo setInfo) { - super(ownerId,setInfo,new CardType[]{CardType.SORCERY},"{3}{R}"); + super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{3}{R}"); // Furious Reprisal deals 2 damage to each of two target creatures and/or players. - this.getSpellAbility().addEffect(new DamageTargetEffect(2, true, "each of two target creatures and/or players")); + this.getSpellAbility().addEffect(new DamageTargetEffect(2, true, "each of two targets")); this.getSpellAbility().addTarget(new TargetAnyTarget(2, 2)); } diff --git a/Mage.Sets/src/mage/cards/p/PinnacleOfRage.java b/Mage.Sets/src/mage/cards/p/PinnacleOfRage.java index 657ee9bab2..ab3d468041 100644 --- a/Mage.Sets/src/mage/cards/p/PinnacleOfRage.java +++ b/Mage.Sets/src/mage/cards/p/PinnacleOfRage.java @@ -42,13 +42,12 @@ import mage.target.common.TargetAnyTarget; public class PinnacleOfRage extends CardImpl { public PinnacleOfRage(UUID ownerId, CardSetInfo setInfo) { - super(ownerId,setInfo,new CardType[]{CardType.SORCERY},"{4}{R}{R}"); - + super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{4}{R}{R}"); // Pinnacle of Rage deals 3 damage to each of two target creatures and/or players. Effect effect = new DamageTargetEffect(3); - effect.setText("{this} deals 3 damage to each of two target creatures and/or players"); - this.getSpellAbility().addTarget(new TargetAnyTarget(2,2)); + effect.setText("{this} deals 3 damage to each of two targets"); + this.getSpellAbility().addTarget(new TargetAnyTarget(2, 2)); this.getSpellAbility().addEffect(effect); } diff --git a/Mage.Sets/src/mage/cards/s/ShowerOfCoals.java b/Mage.Sets/src/mage/cards/s/ShowerOfCoals.java index 390f9f9f61..b66e2159ca 100644 --- a/Mage.Sets/src/mage/cards/s/ShowerOfCoals.java +++ b/Mage.Sets/src/mage/cards/s/ShowerOfCoals.java @@ -44,19 +44,17 @@ import mage.target.common.TargetAnyTarget; public class ShowerOfCoals extends CardImpl { public ShowerOfCoals(UUID ownerId, CardSetInfo setInfo) { - super(ownerId,setInfo,new CardType[]{CardType.SORCERY},"{3}{R}{R}"); - + super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{3}{R}{R}"); // Shower of Coals deals 2 damage to each of up to three target creatures and/or players. // Threshold - Shower of Coals deals 4 damage to each of those creatures and/or players instead if seven or more cards are in your graveyard. - Effect effect = new ConditionalOneShotEffect(new DamageTargetEffect(4), - new DamageTargetEffect(2), - new CardsInControllerGraveCondition(7), - "{this} deals 2 damage to each of up to three target creatures and/or players.

Threshold - {this} deals 4 damage to each of those creatures and/or players instead if seven or more cards are in your graveyard."); - this.getSpellAbility().addTarget(new TargetAnyTarget(0,3)); + Effect effect = new ConditionalOneShotEffect(new DamageTargetEffect(4), + new DamageTargetEffect(2), + new CardsInControllerGraveCondition(7), + "{this} deals 2 damage to each of up to three targets.

Threshold - {this} deals 4 damage to each of those permanents and/or players instead if seven or more cards are in your graveyard."); + this.getSpellAbility().addTarget(new TargetAnyTarget(0, 3)); this.getSpellAbility().addEffect(effect); - - + } public ShowerOfCoals(final ShowerOfCoals card) {