25 lines
926 B
Groovy
25 lines
926 B
Groovy
[
|
|
new MagicSpellCardEvent() {
|
|
@Override
|
|
public MagicEvent getEvent(final MagicCardOnStack cardOnStack,final MagicPayedCost payedCost) {
|
|
return new MagicEvent(
|
|
cardOnStack,
|
|
this,
|
|
"PN gains 1 life for each creature on the battlefield. " +
|
|
"Prevent all combat damage that would be dealt this turn."
|
|
);
|
|
}
|
|
@Override
|
|
public void executeEvent(final MagicGame game, final MagicEvent event) {
|
|
final MagicPlayer player = event.getPlayer();
|
|
final int amount = game.getNrOfPermanents(MagicType.Creature);
|
|
if (amount > 0) {
|
|
game.doAction(new MagicChangeLifeAction(player,amount));
|
|
}
|
|
game.doAction(new MagicAddTurnTriggerAction(
|
|
MagicIfDamageWouldBeDealtTrigger.PreventCombatDamage
|
|
));
|
|
}
|
|
}
|
|
]
|