30 lines
1.1 KiB
Groovy
30 lines
1.1 KiB
Groovy
[
|
|
new MagicSpellCardEvent() {
|
|
@Override
|
|
public MagicEvent getEvent(final MagicCardOnStack cardOnStack,final MagicPayedCost payedCost) {
|
|
return new MagicEvent(
|
|
cardOnStack,
|
|
MagicTargetChoice.POS_TARGET_CREATURE,
|
|
MagicPumpTargetPicker.create(),
|
|
this,
|
|
"PN puts a +1/+1 counter on target creature\$. " +
|
|
"Put three +1/+1 counters on that creature instead if a creature died this turn."
|
|
);
|
|
}
|
|
@Override
|
|
public void executeEvent(final MagicGame game, final MagicEvent event) {
|
|
event.processTargetPermanent(game,new MagicPermanentAction() {
|
|
public void doAction(final MagicPermanent creature) {
|
|
final int amount = game.getCreatureDiedThisTurn() ? 3 : 1;
|
|
game.doAction(new MagicChangeCountersAction(
|
|
creature,
|
|
MagicCounterType.PlusOne,
|
|
amount,
|
|
true
|
|
));
|
|
}
|
|
});
|
|
}
|
|
}
|
|
]
|