From ea9c00ed86bcc4ecb8f821af7be0b5531019e1e1 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 11 Sep 2016 00:22:14 +0200 Subject: [PATCH] * Chandra, Torch of Defiance - Fixed cost of fourth ability. --- .../src/mage/sets/kaladesh/ChandraTorchOfDefiance.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Mage.Sets/src/mage/sets/kaladesh/ChandraTorchOfDefiance.java b/Mage.Sets/src/mage/sets/kaladesh/ChandraTorchOfDefiance.java index 08da58f4ba..93decd6b22 100644 --- a/Mage.Sets/src/mage/sets/kaladesh/ChandraTorchOfDefiance.java +++ b/Mage.Sets/src/mage/sets/kaladesh/ChandraTorchOfDefiance.java @@ -82,7 +82,7 @@ public class ChandraTorchOfDefiance extends CardImpl { this.addAbility(ability); // -7: You get an emblem with "Whenever you cast a spell, this emblem deals 5 damage to target creature or player." - this.addAbility(new LoyaltyAbility(new GetEmblemEffect(new ChandraTorchOfDefianceEmblem()), -6)); + this.addAbility(new LoyaltyAbility(new GetEmblemEffect(new ChandraTorchOfDefianceEmblem()), -7)); } public ChandraTorchOfDefiance(final ChandraTorchOfDefiance card) { @@ -121,10 +121,10 @@ class ChandraTorchOfDefianceEffect extends OneShotEffect { if (card != null) { controller.moveCardToExileWithInfo(card, source.getSourceId(), sourceObject.getIdName(), source.getSourceId(), game, Zone.LIBRARY, true); if (controller.chooseUse(Outcome.Benefit, "Cast the card? (You still pay the costs)", source, game) && !card.getCardType().contains(CardType.LAND)) { - controller.cast(card.getSpellAbility(), game, false); - } else { - new DamagePlayersEffect(Outcome.Damage, new StaticValue(2), TargetController.OPPONENT).apply(game, source); - } + controller.cast(card.getSpellAbility(), game, false); + } else { + new DamagePlayersEffect(Outcome.Damage, new StaticValue(2), TargetController.OPPONENT).apply(game, source); + } } return true; }