Minor formatting.

This commit is contained in:
LevelX2 2014-03-21 08:35:51 +01:00
parent e2f797bfc8
commit e4231c7977
2 changed files with 2 additions and 1 deletions

View file

@ -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));

View file

@ -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);
}