2013-01-13 05:42:52 -08:00
|
|
|
[
|
|
|
|
new MagicPermanentActivation(
|
|
|
|
[
|
2013-02-26 21:18:13 -08:00
|
|
|
MagicConditionFactory.ManaCost("{1}{U}{R}")
|
2013-01-13 05:42:52 -08:00
|
|
|
],
|
|
|
|
new MagicActivationHints(MagicTiming.Pump),
|
|
|
|
"Pump") {
|
|
|
|
@Override
|
|
|
|
public MagicEvent[] getCostEvent(final MagicPermanent source) {
|
2013-02-26 21:18:13 -08:00
|
|
|
return [new MagicPayManaCostEvent(source,source.getController(),MagicManaCost.create("{1}{U}{R}"))];
|
2013-01-13 05:42:52 -08:00
|
|
|
}
|
|
|
|
@Override
|
|
|
|
public MagicEvent getPermanentEvent(final MagicPermanent source,final MagicPayedCost payedCost) {
|
|
|
|
return new MagicEvent(
|
|
|
|
source,
|
|
|
|
this,
|
|
|
|
"SN gets +3/+0 and gains flying until end of turn."
|
|
|
|
);
|
|
|
|
}
|
|
|
|
@Override
|
|
|
|
public void executeEvent(
|
|
|
|
final MagicGame game,
|
2013-03-22 22:00:53 -07:00
|
|
|
final MagicEvent event) {
|
2013-01-13 05:42:52 -08:00
|
|
|
game.doAction(new MagicChangeTurnPTAction(event.getPermanent(),3,0));
|
|
|
|
game.doAction(new MagicSetAbilityAction(event.getPermanent(),MagicAbility.Flying));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|