* Imaginary Threats - Fixed that the creatures of the target player were not forced to attack.

This commit is contained in:
LevelX2 2017-07-09 00:13:14 +02:00
parent 4af878fad2
commit 2c5dfef315

View file

@ -45,6 +45,7 @@ import mage.filter.predicate.permanent.ControllerIdPredicate;
import mage.game.Game;
import mage.players.Player;
import mage.target.common.TargetOpponent;
import mage.watchers.common.AttackedThisTurnWatcher;
/**
*
@ -57,6 +58,7 @@ public class ImaginaryThreats extends CardImpl {
// Creatures target opponent controls attack this turn if able. During that player's next untap step, creatures he or she controls don't untap.
getSpellAbility().addEffect(new ImaginaryThreatsEffect());
getSpellAbility().addWatcher(new AttackedThisTurnWatcher());
getSpellAbility().addTarget(new TargetOpponent());
getSpellAbility().addEffect(new DontUntapInPlayersNextUntapStepAllEffect(new FilterCreaturePermanent())
.setText("During that player's next untap step, creatures he or she controls don't untap"));