magarena/release/Magarena/scripts/Holy_Justiciar.groovy

41 lines
1.4 KiB
Groovy
Raw Normal View History

2013-05-28 05:09:55 -07:00
[
new MagicPermanentActivation(
new MagicActivationHints(MagicTiming.Tapping),
"Tap"
) {
@Override
public Iterable<MagicEvent> getCostEvent(final MagicPermanent source) {
2013-05-28 05:09:55 -07:00
return [
new MagicTapEvent(source), new MagicPayManaCostEvent(source, "{2}{W}")
2013-05-28 05:09:55 -07:00
];
}
@Override
public MagicEvent getPermanentEvent(final MagicPermanent source, final MagicPayedCost payedCost) {
return new MagicEvent(
source,
MagicTargetChoice.NEG_TARGET_CREATURE,
2013-06-22 01:49:43 -07:00
MagicTapTargetPicker.Tap,
2013-05-28 05:09:55 -07:00
this,
"Tap target creature\$. If that creature is a Zombie, exile it."
);
}
@Override
public void executeEvent(final MagicGame game, final MagicEvent event) {
event.processTargetPermanent(game,new MagicPermanentAction() {
public void doAction(final MagicPermanent creature) {
game.doAction(new MagicTapAction(creature,true));
if (creature.hasSubType(MagicSubType.Zombie)) {
game.doAction(new MagicRemoveFromPlayAction(
creature,
MagicLocationType.Exile
));
}
}
});
}
}
]