forked from External/mage
31 lines
1.1 KiB
Java
31 lines
1.1 KiB
Java
package mage.abilities.condition.common;
|
|
|
|
import mage.MageObjectReference;
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.condition.Condition;
|
|
import mage.game.Game;
|
|
import mage.game.permanent.Permanent;
|
|
import mage.watchers.common.AttackedThisTurnWatcher;
|
|
|
|
/**
|
|
*
|
|
* @author jeffwadsworth
|
|
*/
|
|
public enum DidNotAttackThisTurnEnchantedCondition implements Condition {
|
|
|
|
instance;
|
|
|
|
@Override
|
|
public boolean apply(Game game, Ability source) {
|
|
Permanent auraPermanent = game.getPermanentOrLKIBattlefield(source.getSourceId());
|
|
if (auraPermanent != null) {
|
|
Permanent enchantedPermanent = game.getPermanent(auraPermanent.getAttachedTo());
|
|
AttackedThisTurnWatcher watcher = game.getState().getWatcher(AttackedThisTurnWatcher.class);
|
|
return enchantedPermanent != null
|
|
&& watcher != null
|
|
&& !watcher.getAttackedThisTurnCreatures().contains(
|
|
new MageObjectReference(enchantedPermanent, game));
|
|
}
|
|
return false;
|
|
}
|
|
}
|