mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 04:39:18 -08:00
* Wild Celebrants - Fixed missing target definition.
This commit is contained in:
parent
27d81accd8
commit
7247d444ec
1 changed files with 2 additions and 1 deletions
|
|
@ -54,9 +54,10 @@ public class WildCelebrants extends CardImpl<WildCelebrants> {
|
|||
this.toughness = new MageInt(3);
|
||||
|
||||
// When Wild Celebrants enters the battlefield, you may destroy target artifact.
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(new DestroyTargetEffect());
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(new DestroyTargetEffect(), true);
|
||||
Target target = new TargetArtifactPermanent();
|
||||
target.setRequired(true);
|
||||
ability.addTarget(target);
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue