2013-05-18 04:50:46 -07:00
|
|
|
[
|
|
|
|
new MagicWhenComesIntoPlayTrigger() {
|
2013-04-12 19:32:25 -07:00
|
|
|
@Override
|
|
|
|
public MagicEvent executeTrigger(
|
|
|
|
final MagicGame game,
|
|
|
|
final MagicPermanent permanent,
|
2013-06-23 18:29:26 -07:00
|
|
|
final MagicPayedCost payedCost) {
|
2013-06-19 07:23:35 -07:00
|
|
|
return payedCost.isKicked() ?
|
2013-04-12 19:32:25 -07:00
|
|
|
new MagicEvent(
|
|
|
|
permanent,
|
|
|
|
MagicTargetChoice.POS_TARGET_CREATURE,
|
|
|
|
this,
|
2013-05-18 04:50:46 -07:00
|
|
|
"Target creature\$ gains flying until end of turn."
|
2013-04-12 19:32:25 -07:00
|
|
|
):
|
|
|
|
MagicEvent.NONE;
|
|
|
|
}
|
2013-06-23 18:29:26 -07:00
|
|
|
|
2013-04-12 19:32:25 -07:00
|
|
|
@Override
|
2013-05-18 04:50:46 -07:00
|
|
|
public void executeEvent(final MagicGame game, final MagicEvent event) {
|
2013-04-12 19:32:25 -07:00
|
|
|
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-04-12 19:32:25 -07:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2013-05-18 04:50:46 -07:00
|
|
|
}
|
|
|
|
]
|