mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
* Yeva's Forcemage - Made target of triggered ability mandatory.
This commit is contained in:
parent
09126d321a
commit
603aad61b5
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue