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) {
|
2013-07-06 23:57:29 -07:00
|
|
|
game.doAction(new MagicGainAbilityAction(creature,MagicAbility.Flying));
|
2013-06-21 23:40:39 -07:00
|
|
|
game.doAction(MagicChangeStateAction.Set(
|
2013-05-25 20:22:57 -07:00
|
|
|
creature,
|
2013-06-21 23:40:39 -07:00
|
|
|
MagicPermanentState.PreventAllDamage
|
2013-05-25 20:22:57 -07:00
|
|
|
));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|