2013-05-25 19:35:36 -07:00
|
|
|
[
|
|
|
|
new MagicPermanentActivation(
|
|
|
|
[MagicCondition.CAN_TAP_CONDITION],
|
|
|
|
new MagicActivationHints(MagicTiming.Removal),
|
|
|
|
"Destroy"
|
|
|
|
) {
|
|
|
|
@Override
|
|
|
|
public MagicEvent[] getCostEvent(final MagicPermanent source) {
|
|
|
|
return [new MagicTapEvent(source)];
|
|
|
|
}
|
|
|
|
@Override
|
|
|
|
public MagicEvent getPermanentEvent(final MagicPermanent source,final MagicPayedCost payedCost) {
|
|
|
|
return new MagicEvent(
|
|
|
|
source,
|
|
|
|
MagicTargetChoice.NEG_TARGET_CREATURE_POWER_4_OR_MORE,
|
|
|
|
new MagicDestroyTargetPicker(true),
|
|
|
|
this,
|
2013-05-25 19:43:47 -07:00
|
|
|
"Destroy target creature\$ with power 4 or greater."
|
2013-05-25 19:35:36 -07:00
|
|
|
);
|
|
|
|
}
|
|
|
|
@Override
|
|
|
|
public void executeEvent(final MagicGame game, final MagicEvent event) {
|
|
|
|
event.processTargetPermanent(game,new MagicPermanentAction() {
|
|
|
|
public void doAction(final MagicPermanent creature) {
|
|
|
|
game.doAction(new MagicDestroyAction(creature));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|