* Pact of Negation - Fixed that the cost haven't to be paid at the beginning of your next turn.

This commit is contained in:
LevelX2 2013-07-15 20:37:42 +02:00
parent 73160df305
commit 4456d0ff79

View file

@ -53,7 +53,7 @@ public class PactOfNegation extends CardImpl<PactOfNegation> {
this.getSpellAbility().addTarget(new TargetSpell());
this.getSpellAbility().addEffect(new CounterTargetEffect());
// At the beginning of your next upkeep, pay {3}{U}{U}. If you don't, you lose the game.
this.getSpellAbility().addEffect(new CreateDelayedTriggeredAbilityEffect(new PactDelayedTriggeredAbility(new ManaCostsImpl("{3}{U}{U}"))));
this.getSpellAbility().addEffect(new CreateDelayedTriggeredAbilityEffect(new PactDelayedTriggeredAbility(new ManaCostsImpl("{3}{U}{U}")), false));
}
public PactOfNegation(final PactOfNegation card) {