Examples of SunburstAbility


Examples of mage.abilities.keyword.SunburstAbility

        this.subtype.add("Fish");
        this.power = new MageInt(0);
        this.toughness = new MageInt(0);

        // Sunburst
        this.addAbility(new SunburstAbility(this));
        // Flying
        this.addAbility(FlyingAbility.getInstance());
    }
View Full Code Here

Examples of mage.abilities.keyword.SunburstAbility

    public EngineeredExplosives(UUID ownerId) {
        super(ownerId, 118, "Engineered Explosives", Rarity.RARE, new CardType[]{CardType.ARTIFACT}, "{X}");
        this.expansionSetCode = "5DN";

        // Sunburst
        this.addAbility(new SunburstAbility(this));
        // {2}, Sacrifice Engineered Explosives: Destroy each nonland permanent with converted mana cost equal to the number of charge counters on Engineered Explosives.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new EngineeredExplosivesEffect(), new ManaCostsImpl("{2}"));
        ability.addCost(new SacrificeSourceCost());
        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.