From c01cfd03957c90fc62a666f03a138d9fd2ca6c52 Mon Sep 17 00:00:00 2001 From: Neil Gentleman Date: Wed, 18 Nov 2015 01:46:59 -0800 Subject: [PATCH] fix Meteor Blast card name --- .../mage/sets/commander2015/MeteorBlast.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Mage.Sets/src/mage/sets/commander2015/MeteorBlast.java b/Mage.Sets/src/mage/sets/commander2015/MeteorBlast.java index 85444fe8028..91f6998f97c 100644 --- a/Mage.Sets/src/mage/sets/commander2015/MeteorBlast.java +++ b/Mage.Sets/src/mage/sets/commander2015/MeteorBlast.java @@ -47,11 +47,11 @@ import mage.target.common.TargetCreatureOrPlayer; public class MeteorBlast extends CardImpl { public MeteorBlast(UUID ownerId) { - super(ownerId, 28, "Meteor Volley", Rarity.UNCOMMON, new CardType[]{CardType.SORCERY}, "{X}{R}{R}{R}"); + super(ownerId, 28, "Meteor Blast", Rarity.UNCOMMON, new CardType[]{CardType.SORCERY}, "{X}{R}{R}{R}"); this.expansionSetCode = "C15"; - // Meteor Volley deals 4 damage to each of X target creatures and/or players. - this.getSpellAbility().addEffect(new MeteorVolleyEffect()); + // Meteor Blast deals 4 damage to each of X target creatures and/or players. + this.getSpellAbility().addEffect(new MeteorBlastEffect()); } public MeteorBlast(final MeteorBlast card) { @@ -73,14 +73,14 @@ public class MeteorBlast extends CardImpl { } } -class MeteorVolleyEffect extends OneShotEffect { +class MeteorBlastEffect extends OneShotEffect { - public MeteorVolleyEffect() { - super(Outcome.Benefit); + public MeteorBlastEffect() { + super(Outcome.Damage); staticText = "{this} deals 4 damage to each of X target creatures and/or players"; } - public MeteorVolleyEffect(final MeteorVolleyEffect effect) { + public MeteorBlastEffect(final MeteorBlastEffect effect) { super(effect); } @@ -107,7 +107,7 @@ class MeteorVolleyEffect extends OneShotEffect { } @Override - public MeteorVolleyEffect copy() { - return new MeteorVolleyEffect(this); + public MeteorBlastEffect copy() { + return new MeteorBlastEffect(this); } }