Package mage.abilities.mana

Examples of mage.abilities.mana.ColorlessManaAbility.addEffect()


    public PristineTalisman(UUID ownerId) {
        super(ownerId, 151, "Pristine Talisman", Rarity.COMMON, new CardType[]{CardType.ARTIFACT}, "{3}");
        this.expansionSetCode = "NPH";

        ColorlessManaAbility ability = new ColorlessManaAbility();
        ability.addEffect(new GainLifeEffect(1));
        this.addAbility(ability);
    }

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