forked from External/mage
Minor formatting.
This commit is contained in:
parent
e2f797bfc8
commit
e4231c7977
2 changed files with 2 additions and 1 deletions
|
|
@ -50,6 +50,7 @@ public class VirulentSwipe extends CardImpl<VirulentSwipe> {
|
|||
|
||||
this.color.setBlack(true);
|
||||
|
||||
// Target creature gets +2/+0 and gains deathtouch until end of turn.
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
this.getSpellAbility().addEffect(new BoostTargetEffect(2, 0, Duration.EndOfTurn));
|
||||
this.getSpellAbility().addEffect(new GainAbilityTargetEffect(DeathtouchAbility.getInstance(), Duration.EndOfTurn));
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ public class Electropotence extends CardImpl<Electropotence> {
|
|||
|
||||
// Whenever a creature enters the battlefield under your control, you may pay {2}{R}. If you do, that creature deals damage equal to its power to target creature or player.
|
||||
Ability ability = new ElectropotenceTriggeredAbility();
|
||||
ability.addTarget(new TargetCreatureOrPlayer());
|
||||
ability.addTarget(new TargetCreatureOrPlayer(true));
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue