Package mage.abilities.effects.common

Examples of mage.abilities.effects.common.LookLibraryMayPutToBottomEffect


        this.expansionSetCode = "DST";

        // Darksteel Pendant is indestructible.
        this.addAbility(IndestructibleAbility.getInstance());
        // {1}, {tap}: Look at the top card of your library. You may put that card on the bottom of your library.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new LookLibraryMayPutToBottomEffect(), new GenericManaCost(1));
        ability.addCost(new TapSourceCost());
        this.addAbility(ability);
    }
View Full Code Here


        this.addAbility(new SimpleStaticAbility(Zone.ALL, new EnterBattlefieldPayCostOrPutGraveyardEffect(new SacrificeTargetCost(new TargetControlledPermanent(filter)))));

        // {tap}: Add {1}{U} to your mana pool.
        this.addAbility(new SimpleManaAbility(Zone.BATTLEFIELD, new Mana(0, 0, 1, 0, 0, 1,0 ), new TapSourceCost()));
        // {1}, {tap}: Look at the top card of your library. You may put that card on the bottom of your library.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new LookLibraryMayPutToBottomEffect(), new GenericManaCost(1));
        ability.addCost(new TapSourceCost());
        this.addAbility(ability);


    }
View Full Code Here

        this.expansionSetCode = "INV";

        this.color.setBlue(true);

        // Look at the top card of your library. You may put that card on the bottom of your library.
        this.getSpellAbility().addEffect(new LookLibraryMayPutToBottomEffect());
       
        // Draw a card.
        this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1));
    }
View Full Code Here

TOP

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

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.