Package mage.watchers.common

Examples of mage.watchers.common.AttackedThisTurnWatcher


        effect = new BoostTargetEffect(new TargetPermanentPowerCount(), new StaticValue(0), Duration.EndOfTurn);
        effect.setText("and gets +X/+0 until end of turn, where X is its power");
        this.getSpellAbility().addEffect(effect);
        this.getSpellAbility().addEffect(new BerserkDestroyEffect());
        this.getSpellAbility().addTarget(new TargetCreaturePermanent());
        this.addWatcher(new AttackedThisTurnWatcher());

    }
View Full Code Here


        this.expansionSetCode = "7ED";

        this.color.setRed(true);

        // Untap all creatures that attacked this turn. After this main phase, there is an additional combat phase followed by an additional main phase.
        this.addWatcher(new AttackedThisTurnWatcher());
        this.getSpellAbility().addEffect(new RelentlessAssaultUntapEffect());
        this.getSpellAbility().addEffect(new RelentlessAssaultAddPhasesEffect());
    }
View Full Code Here

        this.addAbility(new AlternativeCostSourceAbility(new ExileFromHandCost(new TargetCardInHand(2, filter))));
       
        // Untap all creatures that attacked this turn. After this main phase, there is an additional combat phase followed by an additional main phase.
        this.getSpellAbility().addEffect(new FuryOfTheHordeUntapEffect());
        this.getSpellAbility().addEffect(new FuryOfTheHordeAddPhasesEffect());
        this.addWatcher(new AttackedThisTurnWatcher());
       
    }
View Full Code Here

        this.getSpellAbility().addEffect(new WorldAtWarEffect());

        // Rebound
        this.addAbility(new ReboundAbility());

        this.addWatcher(new AttackedThisTurnWatcher());
    }
View Full Code Here

TOP

Related Classes of mage.watchers.common.AttackedThisTurnWatcher

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.