23 lines
930 B
Groovy
23 lines
930 B
Groovy
[
|
|
new MagicSpellCardEvent() {
|
|
@Override
|
|
public MagicEvent getEvent(final MagicCardOnStack cardOnStack,final MagicPayedCost payedCost) {
|
|
return new MagicEvent(
|
|
cardOnStack,
|
|
MagicTargetChoice.NEG_TARGET_SPELL,
|
|
this,
|
|
"Counter target spell\$. Its controller puts the top two cards of his or her library into his or her graveyard."
|
|
);
|
|
}
|
|
@Override
|
|
public void executeEvent(final MagicGame game, final MagicEvent event) {
|
|
event.processTargetCardOnStack(game,new MagicCardOnStackAction() {
|
|
public void doAction(final MagicCardOnStack targetSpell) {
|
|
game.doAction(new MagicCounterItemOnStackAction(targetSpell));
|
|
game.doAction(new MagicMillLibraryAction(targetSpell.getController(),2));
|
|
}
|
|
});
|
|
}
|
|
}
|
|
]
|