magarena/release/Magarena/scripts/Smash_to_Smithereens.groovy

25 lines
1015 B
Groovy

[
new MagicSpellCardEvent() {
@Override
public MagicEvent getEvent(final MagicCardOnStack cardOnStack,final MagicPayedCost payedCost) {
return new MagicEvent(
cardOnStack,
MagicTargetChoice.NEG_TARGET_ARTIFACT,
new MagicDestroyTargetPicker(false),
this,
"Destroy target artifact\$. SN deals 3 damage to that artifact's controller."
);
}
@Override
public void executeEvent(final MagicGame game, final MagicEvent event) {
event.processTargetPermanent(game,new MagicPermanentAction() {
public void doAction(final MagicPermanent permanent) {
game.doAction(new MagicDestroyAction(permanent));
final MagicDamage damage=new MagicDamage(event.getSource(),permanent.getController(),3);
game.doAction(new MagicDealDamageAction(damage));
}
});
}
}
]