2013-05-16 01:13:37 -07:00
|
|
|
[
|
|
|
|
new MagicPermanentActivation(
|
|
|
|
[
|
|
|
|
MagicCondition.ABILITY_ONCE_CONDITION,
|
|
|
|
MagicConditionFactory.ManaCost("{3}{G}")
|
|
|
|
],
|
|
|
|
new MagicActivationHints(MagicTiming.Pump),
|
|
|
|
"Pump") {
|
|
|
|
@Override
|
|
|
|
public MagicEvent[] getCostEvent(final MagicPermanent source) {
|
|
|
|
return [
|
2013-05-21 19:54:06 -07:00
|
|
|
new MagicPayManaCostEvent(source,"{3}{G}"),
|
2013-05-16 01:13:37 -07:00
|
|
|
new MagicPlayAbilityEvent(source)
|
|
|
|
];
|
|
|
|
}
|
|
|
|
@Override
|
|
|
|
public MagicEvent getPermanentEvent(final MagicPermanent source,final MagicPayedCost payedCost) {
|
|
|
|
return new MagicEvent(
|
|
|
|
source,
|
|
|
|
this,
|
|
|
|
"SN gets +3/+3 until end of turn."
|
|
|
|
);
|
|
|
|
}
|
|
|
|
@Override
|
|
|
|
public void executeEvent(
|
|
|
|
final MagicGame game,
|
|
|
|
final MagicEvent event) {
|
|
|
|
game.doAction(new MagicChangeTurnPTAction(event.getPermanent(),3,3));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|