Examples of addManaCost()


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

  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.