- Fixed It That Betrays.

This commit is contained in:
jeffwadsworth 2012-05-31 09:56:52 -05:00
parent 15959b82cd
commit 4cb48b342f
2 changed files with 76 additions and 2 deletions

View file

@ -35,7 +35,7 @@ import mage.abilities.keyword.AnnihilatorAbility;
import mage.cards.CardImpl;
import mage.filter.common.FilterNonTokenPermanent;
import mage.abilities.effects.common.ReturnToBattlefieldUnderYourControlTargetEffect;
import mage.abilities.common.OpponentSacrificesPermanentTriggeredAbility;
import mage.abilities.common.OpponentSacrificesNonTokenPermanentTriggeredAbility;
/**
@ -57,7 +57,7 @@ public class ItThatBetrays extends CardImpl<ItThatBetrays> {
this.addAbility(new AnnihilatorAbility(2));
// Whenever an opponent sacrifices a nontoken permanent, put that card onto the battlefield under your control.
this.addAbility(new OpponentSacrificesPermanentTriggeredAbility(new ReturnToBattlefieldUnderYourControlTargetEffect()));
this.addAbility(new OpponentSacrificesNonTokenPermanentTriggeredAbility(new ReturnToBattlefieldUnderYourControlTargetEffect()));
}
public ItThatBetrays(final ItThatBetrays card) {