Package mage.abilities.costs.common

Examples of mage.abilities.costs.common.MetalcraftCost


        super(ownerId, 179, "Mox Opal", Rarity.MYTHIC, new CardType[]{CardType.ARTIFACT}, "{0}");
        this.supertype.add("Legendary");
        this.expansionSetCode = "SOM";

        Ability ability = new AnyColorManaAbility();
        ability.addCost(new MetalcraftCost());
        this.addAbility(ability);
    }
View Full Code Here


        this.color.setBlue(true);
        this.power = new MageInt(4);
        this.toughness = new MageInt(3);
        this.addAbility(FlyingAbility.getInstance());
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new ArgentSphinxEffect(), new ManaCostsImpl("{U}"));
        ability.addCost(new MetalcraftCost());
        this.addAbility(ability);
    }
View Full Code Here

                new ReturnSourceFromGraveyardToBattlefieldEffect(true),
                new ManaCostsImpl("{4}"),
                new IsStepCondition(PhaseStep.UPKEEP),
                null
        );       
        ability.addCost(new MetalcraftCost());      
        this.addAbility(ability);
    }
View Full Code Here

TOP

Related Classes of mage.abilities.costs.common.MetalcraftCost

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.