Package mage.abilities.effects.common

Examples of mage.abilities.effects.common.RevealAndShuffleIntoLibrarySourceEffect


       
        // Darksteel Colossus is indestructible.
        this.addAbility(IndestructibleAbility.getInstance());

        // If Darksteel Colossus would be put into a graveyard from anywhere, reveal Darksteel Colossus and shuffle it into its owner's library instead.       
        this.addAbility(new PutIntoGraveFromAnywhereAbility(new RevealAndShuffleIntoLibrarySourceEffect()));
    }
View Full Code Here


        // Blightsteel Colossus is indestructible.
        this.addAbility(IndestructibleAbility.getInstance());
       
        // If Blightsteel Colossus would be put into a graveyard from anywhere, reveal Blightsteel Colossus and shuffle it into its owner's library instead.
        this.addAbility(new PutIntoGraveFromAnywhereAbility(new RevealAndShuffleIntoLibrarySourceEffect()));
    }
View Full Code Here

        //               to it (such as Day of Judgment).
       
        // Protection from everything
        this.addAbility(new ProgenitusProtectionAbility());
        // If Progenitus would be put into a graveyard from anywhere, reveal Progenitus and shuffle it into its owner's library instead.
        this.addAbility(new PutIntoGraveFromAnywhereAbility(new RevealAndShuffleIntoLibrarySourceEffect()));
    }
View Full Code Here

                new ExileTargetEffect(),
                new ManaCostsImpl("{W}{U}{B}{R}{G}"));
        ability.addTarget(new TargetPermanent());
        this.addAbility(ability);
        // If Legacy Weapon would be put into a graveyard from anywhere, reveal Legacy Weapon and shuffle it into its owner's library instead.
        this.addAbility(new PutIntoGraveFromAnywhereAbility(new RevealAndShuffleIntoLibrarySourceEffect()));
    }
View Full Code Here

TOP

Related Classes of mage.abilities.effects.common.RevealAndShuffleIntoLibrarySourceEffect

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.