mirror of
https://github.com/correl/mage.git
synced 2024-11-25 11:09:53 +00:00
Fixed Captivating Unicorn trigger
This commit is contained in:
parent
a51af7055e
commit
1d32a6761d
1 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@ package mage.cards.c;
|
|||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||
import mage.abilities.abilityword.ConstellationAbility;
|
||||
import mage.abilities.effects.common.TapTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
|
@ -25,7 +25,7 @@ public final class CaptivatingUnicorn extends CardImpl {
|
|||
this.toughness = new MageInt(4);
|
||||
|
||||
// Constellation — Whenever an enchantment enters the battlefield under your control, tap target creature an opponent controls.
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(new TapTargetEffect(), false, false);
|
||||
Ability ability = new ConstellationAbility(new TapTargetEffect(), false, false);
|
||||
ability.addTarget(new TargetOpponentsCreaturePermanent());
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue