32 lines
1.0 KiB
Groovy
32 lines
1.0 KiB
Groovy
[
|
|
new MagicPermanentActivation(
|
|
[
|
|
MagicCondition.ABILITY_ONCE_CONDITION,
|
|
MagicConditionFactory.ManaCost("{2}{G}")
|
|
],
|
|
new MagicActivationHints(MagicTiming.Pump),
|
|
"Pump"
|
|
) {
|
|
@Override
|
|
public MagicEvent[] getCostEvent(final MagicPermanent source) {
|
|
return [
|
|
new MagicPayManaCostEvent(source,source.getController(),MagicManaCost.create("{2}{G}")),
|
|
new MagicPlayAbilityEvent(source)
|
|
];
|
|
}
|
|
@Override
|
|
public MagicEvent getPermanentEvent(final MagicPermanent source,final MagicPayedCost payedCost) {
|
|
return new MagicEvent(
|
|
source,
|
|
this,
|
|
"SN gets +2/+2 until end of turn."
|
|
);
|
|
}
|
|
@Override
|
|
public void executeEvent(final MagicGame game, final MagicEvent event) {
|
|
final MagicPermanent permanent=event.getPermanent();
|
|
game.doAction(new MagicChangeTurnPTAction(permanent,2,2));
|
|
}
|
|
}
|
|
]
|