2013-03-10 22:27:54 -07:00
|
|
|
[
|
|
|
|
new MagicPermanentActivation(
|
|
|
|
[MagicCondition.ONE_SAPROLING_CONDITION],
|
|
|
|
new MagicActivationHints(MagicTiming.Pump),
|
|
|
|
"Pump") {
|
|
|
|
@Override
|
|
|
|
public MagicEvent[] getCostEvent(final MagicPermanent source) {
|
|
|
|
return [
|
|
|
|
new MagicSacrificePermanentEvent(
|
|
|
|
source,
|
|
|
|
source.getController(),
|
|
|
|
MagicTargetChoice.SACRIFICE_SAPROLING
|
|
|
|
)
|
|
|
|
];
|
|
|
|
}
|
|
|
|
@Override
|
|
|
|
public MagicEvent getPermanentEvent(final MagicPermanent source,final MagicPayedCost payedCost) {
|
|
|
|
return new MagicEvent(
|
|
|
|
source,
|
|
|
|
MagicTargetChoice.POS_TARGET_CREATURE,
|
|
|
|
MagicPumpTargetPicker.create(),
|
|
|
|
this,
|
2013-03-10 22:59:53 -07:00
|
|
|
"Target creature\$ gets +1/+1 until end of turn."
|
2013-03-10 22:27:54 -07:00
|
|
|
);
|
|
|
|
}
|
|
|
|
@Override
|
|
|
|
public void executeEvent(
|
|
|
|
final MagicGame game,
|
|
|
|
final MagicEvent event,
|
|
|
|
final Object[] choiceResults) {
|
|
|
|
event.processTargetPermanent(game,choiceResults,0,new MagicPermanentAction() {
|
|
|
|
public void doAction(final MagicPermanent creature) {
|
|
|
|
game.doAction(new MagicChangeTurnPTAction(creature,1,1));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|