24 lines
925 B
Groovy
24 lines
925 B
Groovy
[
|
|
new MagicSpellCardEvent() {
|
|
@Override
|
|
public MagicEvent getEvent(final MagicCardOnStack cardOnStack,final MagicPayedCost payedCost) {
|
|
return new MagicEvent(
|
|
cardOnStack,
|
|
MagicTargetChoice.NEG_TARGET_CREATURE,
|
|
new MagicWeakenTargetPicker(1,1),
|
|
this,
|
|
"Put a -1/-1 counter on target creature\$. Draw a card."
|
|
);
|
|
}
|
|
@Override
|
|
public void executeEvent(final MagicGame game, final MagicEvent event) {
|
|
event.processTargetPermanent(game,new MagicPermanentAction() {
|
|
public void doAction(final MagicPermanent creature) {
|
|
game.doAction(new MagicChangeCountersAction(creature,MagicCounterType.MinusOne,1,true));
|
|
game.doAction(new MagicDrawAction(event.getPlayer()));
|
|
}
|
|
});
|
|
}
|
|
}
|
|
]
|