Package mage.abilities.keyword

Examples of mage.abilities.keyword.MultikickerAbility.addManaCost()


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

    MultikickerAbility ability = new MultikickerAbility(new CreateTokenEffect(new WolfToken()), false);
    ability.addManaCost(new ColoredManaCost(ColoredManaSymbol.G));
    this.addAbility(ability);
  }

  public WolfbriarElemental(final WolfbriarElemental card) {
    super(card);
View Full Code Here


  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());
  }

  public EverflowingChalice(final EverflowingChalice card) {
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.