30 lines
1.2 KiB
Groovy
30 lines
1.2 KiB
Groovy
|
[
|
||
|
new MagicSpellCardEvent() {
|
||
|
@Override
|
||
|
public MagicEvent getEvent(final MagicCardOnStack cardOnStack,final MagicPayedCost payedCost) {
|
||
|
return new MagicEvent(
|
||
|
cardOnStack,
|
||
|
new MagicBuybackChoice(
|
||
|
MagicTargetChoice.NEG_TARGET_ARTIFACT_OR_CREATURE_OR_LAND,
|
||
|
MagicManaCost.create("{2}{U}")),
|
||
|
new MagicTapTargetPicker(true,false),
|
||
|
this,
|
||
|
"Tap target artifact, creature, or land\$. " +
|
||
|
"If the buyback cost was payed\$, return SN to its owner's hand as it resolves."
|
||
|
);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void executeEvent(final MagicGame game, final MagicEvent event) {
|
||
|
event.processTargetPermanent(game,new MagicPermanentAction() {
|
||
|
public void doAction(final MagicPermanent permanent) {
|
||
|
game.doAction(new MagicTapAction(permanent,true));
|
||
|
if (event.isBuyback()) {
|
||
|
game.doAction(new MagicChangeCardDestinationAction(event.getCardOnStack(), MagicLocationType.OwnersHand));
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
]
|