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);
}