Package mage.abilities.keyword

Examples of mage.abilities.keyword.DelveAbility


        this.color.setGreen(true);
        this.power = new MageInt(4);
        this.toughness = new MageInt(4);

        // Delve
        this.addAbility(new DelveAbility());
        // Trample
        this.addAbility(TrampleAbility.getInstance());
    }
View Full Code Here


        this.expansionSetCode = "KTK";

        this.color.setBlue(true);

        // Delve
        this.addAbility(new DelveAbility());
        // Put target nonland permanent on top of its owner's library
        this.getSpellAbility().addEffect(new PutOnLibraryTargetEffect(true));
        this.getSpellAbility().addTarget(new TargetNonlandPermanent());
    }
View Full Code Here

        this.expansionSetCode = "KTK";

        this.color.setBlack(true);

        // Delve
        this.addAbility(new DelveAbility());
        // Target player sacrifices two creatures
        this.getSpellAbility().addEffect(new SacrificeEffect(new FilterCreaturePermanent(), 2, "Target player"));
        this.getSpellAbility().addTarget(new TargetPlayer());
    }
View Full Code Here

        this.expansionSetCode = "KTK";

        this.color.setBlack(true);

        // Delve
        this.addAbility(new DelveAbility());
       
        // Destroy target creature.
        this.getSpellAbility().addEffect(new DestroyTargetEffect());
        this.getSpellAbility().addTarget(new TargetCreaturePermanent());
    }
View Full Code Here

TOP

Related Classes of mage.abilities.keyword.DelveAbility

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.