2013-03-11 00:33:19 -07:00
|
|
|
[
|
|
|
|
new MagicPermanentActivation(
|
|
|
|
[MagicCondition.ONE_SAPROLING_CONDITION],
|
|
|
|
new MagicActivationHints(MagicTiming.Removal),
|
|
|
|
"-1/-1") {
|
|
|
|
@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.NEG_TARGET_CREATURE,
|
|
|
|
new MagicWeakenTargetPicker(1,1),
|
|
|
|
this,
|
|
|
|
"Target creature\$ gets -1/-1 until end of turn."
|
|
|
|
);
|
|
|
|
}
|
|
|
|
@Override
|
|
|
|
public void executeEvent(
|
|
|
|
final MagicGame game,
|
2013-03-22 22:00:53 -07:00
|
|
|
final MagicEvent event) {
|
2013-03-21 06:35:09 -07:00
|
|
|
event.processTargetPermanent(game,new MagicPermanentAction() {
|
2013-03-11 00:33:19 -07:00
|
|
|
public void doAction(final MagicPermanent creature) {
|
|
|
|
game.doAction(new MagicChangeTurnPTAction(creature,-1,-1));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|