Examples of MetalcraftCost


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

Examples of mage.abilities.costs.common.MetalcraftCost

        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

Examples of mage.abilities.costs.common.MetalcraftCost

                new ReturnSourceFromGraveyardToBattlefieldEffect(true),
                new ManaCostsImpl("{4}"),
                new IsStepCondition(PhaseStep.UPKEEP),
                null
        );       
        ability.addCost(new MetalcraftCost());      
        this.addAbility(ability);
    }
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.