Examples of ExileTargetAndSearchGraveyardHandLibraryEffect


Examples of mage.abilities.effects.common.ExileTargetAndSearchGraveyardHandLibraryEffect

        this.color.setGreen(true);

        // Exile target artifact. Search its controller's graveyard, hand, and library for all cards
        // with the same name as that artifact and exile them. Then that player shuffles his or her library.
        this.getSpellAbility().addTarget(new TargetPermanent(filter));
        this.getSpellAbility().addEffect(new ExileTargetAndSearchGraveyardHandLibraryEffect(false, "its controller's","all cards with the same name as that artifact"));
    }
View Full Code Here

Examples of mage.abilities.effects.common.ExileTargetAndSearchGraveyardHandLibraryEffect

        this.color.setRed(true);

        // Exile target nonbasic land. Search its controller's graveyard, hand, and library for all cards with
        // the same name as that land and exile them. Then that player shuffles his or her library.
        this.getSpellAbility().addTarget(new TargetPermanent(filter));
        this.getSpellAbility().addEffect(new ExileTargetAndSearchGraveyardHandLibraryEffect(false, "its controller's","all cards with the same name as that land"));
    }
View Full Code Here

Examples of mage.abilities.effects.common.ExileTargetAndSearchGraveyardHandLibraryEffect

        this.color.setWhite(true);

        // Exile target enchantment.
        // Search its controller's graveyard, hand, and library for all cards with the same name as that enchantment and exile them. Then that player shuffles his or her library.
        this.getSpellAbility().addTarget(new TargetPermanent(filter));
        this.getSpellAbility().addEffect(new ExileTargetAndSearchGraveyardHandLibraryEffect(false, "its controller's","all cards with the same name as that enchantment"));
    }
View Full Code Here

Examples of mage.abilities.effects.common.ExileTargetAndSearchGraveyardHandLibraryEffect

        this.color.setBlack(true);

        // Exile target nonblack creature. Search its controller's graveyard, hand, and library for all cards
        // with the same name as that creature and exile them. Then that player shuffles his or her library.
        this.getSpellAbility().addTarget(new TargetCreaturePermanent(filter));
        this.getSpellAbility().addEffect(new ExileTargetAndSearchGraveyardHandLibraryEffect(false, "its controller's","all cards with the same name as that creature"));
    }
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.