mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
* Galvanic Blast - Fixed a minor typo.
This commit is contained in:
parent
c98671282f
commit
dfc72a9adb
1 changed files with 3 additions and 4 deletions
|
@ -28,12 +28,12 @@
|
|||
package mage.cards.g;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.constants.CardType;
|
||||
import mage.abilities.condition.common.MetalcraftCondition;
|
||||
import mage.abilities.decorator.ConditionalOneShotEffect;
|
||||
import mage.abilities.effects.common.DamageTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.target.common.TargetCreatureOrPlayer;
|
||||
|
||||
/**
|
||||
|
@ -42,13 +42,12 @@ import mage.target.common.TargetCreatureOrPlayer;
|
|||
*/
|
||||
public class GalvanicBlast extends CardImpl {
|
||||
|
||||
private final String effectText = "{this} deals 2 damage to target creature or player.<br>Metalcraft - {this}t deals 4 damage to that creature or player instead if you control three or more artifacts";
|
||||
private final String effectText = "{this} deals 2 damage to target creature or player.<br>Metalcraft - {this} deals 4 damage to that creature or player instead if you control three or more artifacts";
|
||||
|
||||
public GalvanicBlast(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId,setInfo,new CardType[]{CardType.INSTANT},"{R}");
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{R}");
|
||||
this.color.setRed(true);
|
||||
|
||||
|
||||
// Galvanic Blast deals 2 damage to target creature or player.
|
||||
// Metalcraft - Galvanic Blast deals 4 damage to that creature or player instead if you control three or more artifacts.
|
||||
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(new DamageTargetEffect(4), new DamageTargetEffect(2), MetalcraftCondition.getInstance(), effectText));
|
||||
|
|
Loading…
Reference in a new issue