Package mage.abilities.effects.common

Examples of mage.abilities.effects.common.AddCountersSourceEffect


* @author BetaSteward_at_googlemail.com
*/
public class LevelUpAbility extends ActivatedAbilityImpl<LevelUpAbility> {

  public LevelUpAbility(ManaCosts costs) {
    super(Zone.BATTLEFIELD, new AddCountersSourceEffect("Level", 1), costs);
    this.timing = TimingRule.SORCERY;
  }
View Full Code Here


public class EverflowingChalice extends CardImpl<EverflowingChalice> {

  public EverflowingChalice(UUID ownerId) {
    super(ownerId, 123, "Everflowing Chalice", Rarity.UNCOMMON, new CardType[]{CardType.ARTIFACT}, "{0}");
    this.expansionSetCode = "WWK";
    MultikickerAbility ability = new MultikickerAbility(new AddCountersSourceEffect("charge", 1), false);
    ability.addManaCost(new GenericManaCost(2));
    this.addAbility(ability);
    this.addAbility(new EverflowingChaliceAbility());
  }
View Full Code Here

  public SunspringExpedition(UUID ownerId) {
    super(ownerId, 37, "Sunspring Expedition", Rarity.COMMON, new CardType[]{CardType.ENCHANTMENT}, "{W}");
    this.expansionSetCode = "ZEN";
    this.color.setWhite(true);

    this.addAbility(new LandfallAbility(new AddCountersSourceEffect("quest", 1), true));
    Costs costs = new CostsImpl();
    costs.add(new RemoveCountersSourceCost("quest", 3));
    costs.add(new SacrificeSourceCost());
    ActivatedAbility ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new GainLifeEffect(8), costs);
    this.addAbility(ability);
View Full Code Here

}

class BeastmasterAscensionAbility extends TriggeredAbilityImpl<BeastmasterAscensionAbility> {

  public BeastmasterAscensionAbility() {
    super(Zone.BATTLEFIELD, new AddCountersSourceEffect("quest", 1), true);
  }
View Full Code Here

TOP

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

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.