26 lines
994 B
Groovy
26 lines
994 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 can't cast spells this turn."
|
|
);
|
|
}
|
|
@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 MagicChangePlayerStateAction(
|
|
targetSpell.getController(),
|
|
MagicPlayerState.CantCastSpells
|
|
));
|
|
}
|
|
});
|
|
}
|
|
}
|
|
]
|