Examples of PutIntoGraveFromAnywhereAbility


Examples of mage.abilities.common.PutIntoGraveFromAnywhereAbility

       
        // 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

Examples of mage.abilities.common.PutIntoGraveFromAnywhereAbility

        // 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

Examples of mage.abilities.common.PutIntoGraveFromAnywhereAbility

        //               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

Examples of mage.abilities.common.PutIntoGraveFromAnywhereAbility

                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
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.