Package mage.abilities.keyword

Examples of mage.abilities.keyword.DredgeAbility


        // {1}, Sacrifice Grave-Shell Scarab: Draw a card.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DrawCardSourceControllerEffect(1), new GenericManaCost(1));
        ability.addCost(new SacrificeSourceCost());
        this.addAbility(ability);
        // Dredge 1
        this.addAbility(new DredgeAbility(1));
    }
View Full Code Here


        // When Golgari Thug dies, put target creature card from your graveyard on top of your library.
        Ability ability = new DiesTriggeredAbility(new PutOnLibraryTargetEffect(true));
        ability.addTarget(new TargetCardInYourGraveyard(filter));
        this.addAbility(ability);
        // Dredge 4
        this.addAbility(new DredgeAbility(4));
    }
View Full Code Here

TOP

Related Classes of mage.abilities.keyword.DredgeAbility

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.