mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
fix Meteor Blast card name
This commit is contained in:
parent
50a02403a0
commit
c01cfd0395
1 changed files with 9 additions and 9 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue