Examples of CounterTargetAndSearchGraveyardHandLibraryEffect


Examples of mage.abilities.effects.common.CounterTargetAndSearchGraveyardHandLibraryEffect

        this.color.setBlue(true);

        // Counter target spell.
        // Search its controller's graveyard, hand, and library for all cards with the same name as that spell and exile them. Then that player shuffles his or her library.
        this.getSpellAbility().addTarget(new TargetSpell());
        this.getSpellAbility().addEffect(new CounterTargetAndSearchGraveyardHandLibraryEffect());
    }
View Full Code Here

Examples of mage.abilities.effects.common.CounterTargetAndSearchGraveyardHandLibraryEffect

        this.color.setBlue(true);

        // Counter target instant or sorcery spell.
        // Search its controller's graveyard, hand, and library for all cards with the same name as that spell and exile them. Then that player shuffles his or her library.
        this.getSpellAbility().addTarget(new TargetSpell(filter));
        this.getSpellAbility().addEffect(new CounterTargetAndSearchGraveyardHandLibraryEffect());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.