23 lines
810 B
Groovy
23 lines
810 B
Groovy
|
[
|
||
|
new MagicSpellCardEvent() {
|
||
|
@Override
|
||
|
public MagicEvent getEvent(final MagicCardOnStack cardOnStack,final MagicPayedCost payedCost) {
|
||
|
return new MagicEvent(
|
||
|
cardOnStack,
|
||
|
MagicTargetChoice.POS_TARGET_CREATURE,
|
||
|
MagicPumpTargetPicker.create(),
|
||
|
this,
|
||
|
"Target creature\$ gets +4/+4 until end of turn."
|
||
|
);
|
||
|
}
|
||
|
@Override
|
||
|
public void executeEvent(final MagicGame game, final MagicEvent event) {
|
||
|
event.processTargetPermanent(game,new MagicPermanentAction() {
|
||
|
public void doAction(final MagicPermanent creature) {
|
||
|
game.doAction(new MagicChangeTurnPTAction(creature,4,4));
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
]
|