27 lines
1.1 KiB
Groovy
27 lines
1.1 KiB
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\$ unless its controller pays {3}. " +
|
|
"If you control a Wizard, 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.addEvent(new MagicCounterUnlessEvent(event.getSource(),targetSpell,MagicManaCost.create("{3}")));
|
|
final MagicPlayer you = event.getPlayer();
|
|
if (you.controlsPermanent(MagicSubType.Wizard)) {
|
|
game.doAction(new MagicDrawAction(you));
|
|
}
|
|
}
|
|
});
|
|
}
|
|
}
|
|
]
|