38 lines
1.2 KiB
Groovy
38 lines
1.2 KiB
Groovy
[
|
|
new MagicPermanentActivation(
|
|
[new MagicArtificialCondition(
|
|
MagicConditionFactory.ManaCost("{G}{G}")
|
|
)],
|
|
new MagicActivationHints(MagicTiming.Pump),
|
|
"Pump"
|
|
) {
|
|
|
|
@Override
|
|
public Iterable<MagicEvent> getCostEvent(final MagicPermanent source) {
|
|
return [
|
|
new MagicPayManaCostTapEvent(source, "{G}")
|
|
];
|
|
}
|
|
|
|
@Override
|
|
public MagicEvent getPermanentEvent(final MagicPermanent source,final MagicPayedCost payedCost) {
|
|
return new MagicEvent(
|
|
source,
|
|
MagicTargetChoice.POS_TARGET_LEGENDARY_CREATURE,
|
|
MagicPumpTargetPicker.create(),
|
|
this,
|
|
"Target legendary creature\$ gets +1/+1 until end of turn."
|
|
);
|
|
}
|
|
|
|
@Override
|
|
public void executeEvent(final MagicGame game, final MagicEvent event) {
|
|
event.processTargetPermanent(game,new MagicPermanentAction() {
|
|
public void doAction(final MagicPermanent creature) {
|
|
game.doAction(new MagicChangeTurnPTAction(creature,1,1));
|
|
}
|
|
});
|
|
}
|
|
}
|
|
]
|