* Yeva's Forcemage - Made target of triggered ability mandatory.

This commit is contained in:
LevelX2 2013-08-12 18:43:24 +02:00
parent 09126d321a
commit 603aad61b5

View file

@ -56,7 +56,7 @@ public class YevasForcemage extends CardImpl<YevasForcemage> {
// When Yeva's Forcemage enters the battlefield, target creature gets +2/+2 until end of turn.
Ability ability = new EntersBattlefieldTriggeredAbility(new BoostTargetEffect(2, 2, Duration.EndOfTurn));
ability.addTarget(new TargetCreaturePermanent());
ability.addTarget(new TargetCreaturePermanent(true));
this.addAbility(ability);
}