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

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

View file

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

View file

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

View file

@ -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.<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.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.<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) {