updated some and/or text

This commit is contained in:
Evan Kranzler 2018-04-19 14:03:09 -04:00
parent 1e7071e7ae
commit 46507f3353
4 changed files with 14 additions and 17 deletions

View file

@ -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);
}

View file

@ -44,7 +44,7 @@ public class FuriousReprisal extends CardImpl {
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));
}

View file

@ -44,10 +44,9 @@ public class PinnacleOfRage extends CardImpl {
public PinnacleOfRage(UUID ownerId, CardSetInfo setInfo) {
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");
effect.setText("{this} deals 3 damage to each of two targets");
this.getSpellAbility().addTarget(new TargetAnyTarget(2, 2));
this.getSpellAbility().addEffect(effect);
}

View file

@ -46,17 +46,15 @@ public class ShowerOfCoals extends CardImpl {
public ShowerOfCoals(UUID ownerId, CardSetInfo setInfo) {
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.<br/><br/><i>Threshold</i> - {this} deals 4 damage to each of those creatures and/or players instead if seven or more cards are in your graveyard.");
"{this} deals 2 damage to each of up to three targets.<br/><br/><i>Threshold</i> - {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) {