Package mage.abilities.effects.common

Examples of mage.abilities.effects.common.ShuffleLibraryTargetEffect


        // Each player plays with the top card of his or her library revealed.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new PlayWithTheTopCardRevealedEffect(true)));
       
        // {tap}, Sacrifice Lantern of Insight: Target player shuffles his or her library.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new ShuffleLibraryTargetEffect(), new TapSourceCost());
        ability.addCost(new SacrificeSourceCost());
        ability.addTarget(new TargetPlayer());
        this.addAbility(ability);
    }
View Full Code Here


        this.color.setRed(true);
        this.power = new MageInt(1);
        this.toughness = new MageInt(1);
   
    // {R}, {T}: Target player shuffles his or her library.
    Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new ShuffleLibraryTargetEffect(), new TapSourceCost());
    ability.addManaCost(new ManaCostsImpl("{R}"));
    ability.addTarget(new TargetPlayer());
    this.addAbility(ability);
    }
View Full Code Here

TOP

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

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.