mirror of
https://github.com/correl/mage.git
synced 2025-01-12 03:00:13 +00:00
[ZNR] fixed Molten Blast targeting (#7046)
This commit is contained in:
parent
c5f6b19a83
commit
9303073093
1 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@ import mage.cards.CardImpl;
|
|||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.target.common.TargetArtifactPermanent;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
import mage.target.common.TargetCreatureOrPlaneswalker;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
|
@ -22,7 +22,7 @@ public final class MoltenBlast extends CardImpl {
|
|||
// Choose one —
|
||||
// • Molten Blast deals 2 damage to target creature or planeswalker.
|
||||
getSpellAbility().addEffect(new DamageTargetEffect(3));
|
||||
getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
getSpellAbility().addTarget(new TargetCreatureOrPlaneswalker());
|
||||
|
||||
// • Destroy target artifact.
|
||||
Mode mode = new Mode(new DestroyTargetEffect());
|
||||
|
|
Loading…
Reference in a new issue