Examples of DredgeAbility


Examples of mage.abilities.keyword.DredgeAbility

        // {1}, Remove a +1/+1 counter from Golgari Grave-Troll: Regenerate Golgari Grave-Troll.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new RegenerateSourceEffect(), new ManaCostsImpl("{1}"));
        ability.addCost(new RemoveCountersSourceCost(CounterType.P1P1.createInstance()));
        this.addAbility(ability);
        // Dredge 6
        this.addAbility(new DredgeAbility(6));
    }
View Full Code Here

Examples of mage.abilities.keyword.DredgeAbility

        // Target player reveals his or her hand. You choose a card from it. That player discards that card.
        this.getSpellAbility().addTarget(new TargetPlayer());
        this.getSpellAbility().addEffect(new DiscardCardYouChooseTargetEffect(TargetController.ANY));
        // Dredge 2
        this.addAbility(new DredgeAbility(2));
    }
View Full Code Here

Examples of mage.abilities.keyword.DredgeAbility

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

        // Dredge 3
        this.addAbility(new DredgeAbility(3));
    }
View Full Code Here

Examples of mage.abilities.keyword.DredgeAbility

        // Dakmor Salvage enters the battlefield tapped.
        this.addAbility(new EntersBattlefieldTappedAbility());
        // {tap}: Add {B} to your mana pool.
        this.addAbility(new BlackManaAbility());
        // Dredge 2
        this.addAbility(new DredgeAbility(2));
    }
View Full Code Here

Examples of mage.abilities.keyword.DredgeAbility

        // Target creature gets -1/-1 until end of turn.
        this.getSpellAbility().addEffect(new BoostTargetEffect(-1, -1, Duration.EndOfTurn));
        this.getSpellAbility().addTarget(new TargetCreaturePermanent());
        // Dredge 3
        this.addAbility(new DredgeAbility(3));
    }
View Full Code Here

Examples of mage.abilities.keyword.DredgeAbility

       
        // At the beginning of your end step, destroy each creature with converted mana cost equal to the number of +1/+1 counters on Necroplasm.
        this.addAbility(new BeginningOfEndStepTriggeredAbility(new NecroplasmEffect(), TargetController.YOU, false));
       
        // Dredge 2
        this.addAbility(new DredgeAbility(2));
    }
View Full Code Here

Examples of mage.abilities.keyword.DredgeAbility

        // Flying
        this.addAbility(FlyingAbility.getInstance());
        // Whenever Stinkweed Imp deals combat damage to a creature, destroy that creature.
        this.addAbility(new DealsDamageToACreatureTriggeredAbility(new DestroyTargetEffect(), true, false, true));
        // Dredge 5
        this.addAbility(new DredgeAbility(5));
    }
View Full Code Here

Examples of mage.abilities.keyword.DredgeAbility

        // Return up to three target land cards from your graveyard to your hand.
        this.getSpellAbility().addEffect(new ReturnToHandTargetEffect());
        this.getSpellAbility().addTarget(new TargetCardInYourGraveyard(0, 3, new FilterLandCard("land cards from your graveyard")));
        // Dredge 3
        this.addAbility(new DredgeAbility(3));
    }
View Full Code Here

Examples of mage.abilities.keyword.DredgeAbility

        // Sacrifice Shambling Shell: Put a +1/+1 counter on target creature.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new AddCountersTargetEffect(CounterType.P1P1.createInstance()), new SacrificeSourceCost());
        ability.addTarget(new TargetCreaturePermanent());
        this.addAbility(ability);
        // Dredge 3
        this.addAbility(new DredgeAbility(3));
    }
View Full Code Here

Examples of mage.abilities.keyword.DredgeAbility

        this.getSpellAbility().addEffect(new AttachEffect(Outcome.BoostCreature));
        this.addAbility(new EnchantAbility(auraTarget.getTargetName()));
        // Enchanted creature gets +3/+3.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostEnchantedEffect(3, 3, Duration.WhileOnBattlefield)));
        // Dredge 2
        this.addAbility(new DredgeAbility(2));
    }
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.