mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
* Imaginary Threats - Fixed that the creatures of the target player were not forced to attack.
This commit is contained in:
parent
4af878fad2
commit
2c5dfef315
1 changed files with 2 additions and 0 deletions
|
@ -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"));
|
||||
|
|
Loading…
Reference in a new issue