magarena/release/Magarena/scripts/Leap_of_Faith.groovy

29 lines
1.1 KiB
Groovy
Raw Normal View History

2013-05-25 20:22:57 -07:00
[
new MagicSpellCardEvent() {
@Override
public MagicEvent getEvent(final MagicCardOnStack cardOnStack, final MagicPayedCost payedCost) {
return new MagicEvent(
cardOnStack,
MagicTargetChoice.POS_TARGET_CREATURE,
MagicFlyingTargetPicker.create(),
this,
2013-05-25 20:25:09 -07:00
"Target creature\$ gains flying until end of turn. " +
2013-05-25 20:22:57 -07:00
"Prevent all damage that would be dealt to that creature this 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 MagicSetAbilityAction(creature,MagicAbility.Flying));
game.doAction(MagicChangeStateAction.Set(
2013-05-25 20:22:57 -07:00
creature,
MagicPermanentState.PreventAllDamage
2013-05-25 20:22:57 -07:00
));
}
});
}
}
]