magarena/release/Magarena/scripts/Shattering_Pulse.groovy

28 lines
1.1 KiB
Groovy
Raw Normal View History

2013-05-26 04:06:33 -07:00
[
new MagicSpellCardEvent() {
@Override
public MagicEvent getEvent(final MagicCardOnStack cardOnStack,final MagicPayedCost payedCost) {
return new MagicEvent(
cardOnStack,
MagicTargetChoice.TARGET_ARTIFACT,
2013-05-26 04:06:33 -07:00
new MagicDestroyTargetPicker(false),
this,
2013-06-23 18:29:26 -07:00
"Destroy target artifact\$. " +
"If the buyback cost was payed, return SN to its owner's hand as it resolves."
2013-05-26 04:06:33 -07:00
);
}
@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));
if (event.isBuyback()) {
game.doAction(new MagicChangeCardDestinationAction(event.getCardOnStack(), MagicLocationType.OwnersHand));
2013-06-23 18:29:26 -07:00
}
2013-05-26 04:06:33 -07:00
}
});
}
}
]