magarena/release/Magarena/scripts/Hunger_of_the_Howlpack.groovy

30 lines
1.1 KiB
Groovy
Raw Normal View History

2013-05-18 19:56:10 -07:00
[
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
));
}
});
}
}
]