24 lines
927 B
Groovy
24 lines
927 B
Groovy
[
|
|
new MagicSpellCardEvent() {
|
|
@Override
|
|
public MagicEvent getEvent(final MagicCardOnStack cardOnStack,final MagicPayedCost payedCost) {
|
|
return new MagicEvent(
|
|
cardOnStack,
|
|
MagicTargetChoice.POS_TARGET_CREATURE,
|
|
MagicLifelinkTargetPicker.create(),
|
|
this,
|
|
"Target creature\$ gets +2/+2 and gains lifelink 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,2,2));
|
|
game.doAction(new MagicSetAbilityAction(creature,MagicAbility.Lifelink));
|
|
}
|
|
});
|
|
}
|
|
}
|
|
]
|