Package mage.abilities.common

Examples of mage.abilities.common.BecomesTappedCreatureControlledTriggeredAbility


        this.expansionSetCode = "WWK";

        this.color.setGreen(true);

        // Whenever a creature you control becomes tapped, you may put a quest counter on Quest for Renewal.
        this.addAbility(new BecomesTappedCreatureControlledTriggeredAbility(new AddCountersSourceEffect(CounterType.QUEST.createInstance()), true));
       
        // As long as there are four or more quest counters on Quest for Renewal, untap all creatures you control during each other player's untap step.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new ConditionalContinousEffect(
                new UntapAllDuringEachOtherPlayersUntapStepEffect(filter),
                new SourceHasCounterCondition(CounterType.QUEST, 4),
View Full Code Here

TOP

Related Classes of mage.abilities.common.BecomesTappedCreatureControlledTriggeredAbility

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.