* Colfenor'S Urn - Fixed rule text.

This commit is contained in:
LevelX2 2020-01-15 17:30:43 +01:00
parent d20a20fb6a
commit bf1da82567

View file

@ -40,7 +40,8 @@ public final class ColfenorsUrn extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{3}");
// Whenever a creature with toughness 4 or greater is put into your graveyard from the battlefield, you may exile it.
this.addAbility(new PutIntoGraveFromBattlefieldAllTriggeredAbility(new ExileTargetForSourceEffect(), true, filter, true, true));
this.addAbility(new PutIntoGraveFromBattlefieldAllTriggeredAbility(
new ExileTargetForSourceEffect().setText("exile it"), true, filter, true, true));
// At the beginning of the end step, if three or more cards have been exiled with Colfenor's Urn, sacrifice it. If you do, return those cards to the battlefield under their owner's control.
this.addAbility(new BeginningOfEndStepTriggeredAbility(Zone.BATTLEFIELD, new ColfenorsUrnEffect(), TargetController.ANY, new ColfenorsUrnCondition(), false));