23 lines
857 B
Groovy
23 lines
857 B
Groovy
|
[
|
||
|
new MagicSpellCardEvent() {
|
||
|
@Override
|
||
|
public MagicEvent getEvent(final MagicCardOnStack cardOnStack,final MagicPayedCost payedCost) {
|
||
|
return new MagicEvent(
|
||
|
cardOnStack,
|
||
|
MagicTargetChoice.NEG_TARGET_CREATURE_SPELL,
|
||
|
this,
|
||
|
"Counter target creature spell\$. Draw a card."
|
||
|
);
|
||
|
}
|
||
|
@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 MagicDrawAction(event.getPlayer(),1));
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
]
|