magarena/release/Magarena/scripts/Putrid_Leech.groovy

35 lines
1.0 KiB
Groovy
Raw Normal View History

2013-05-18 19:17:36 -07:00
[
new MagicPermanentActivation(
[
MagicCondition.ABILITY_ONCE_CONDITION,
MagicCondition.TWO_LIFE_CONDITION
],
new MagicActivationHints(MagicTiming.Pump),
"Pump"
) {
@Override
public MagicEvent[] getCostEvent(final MagicPermanent source) {
return [
new MagicPayLifeEvent(source,source.getController(),2),
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));
}
}
]