magarena/release/Magarena/scripts/Blowfly_Infestation.groovy

26 lines
1.0 KiB
Groovy
Raw Normal View History

2013-05-18 19:56:54 -07:00
[
new MagicWhenOtherDiesTrigger() {
2013-04-12 19:32:25 -07:00
@Override
public MagicEvent executeTrigger(final MagicGame game,final MagicPermanent permanent,final MagicPermanent otherPermanent) {
return (otherPermanent.isCreature() &&
otherPermanent.getCounters(MagicCounterType.MinusOne) > 0) ?
new MagicEvent(
permanent,
MagicTargetChoice.TARGET_CREATURE,
new MagicWeakenTargetPicker(1,1),
this,
2013-05-18 19:56:54 -07:00
"Put a -1/-1 counter on target creature\$."
2013-04-12 19:32:25 -07:00
):
MagicEvent.NONE;
}
@Override
2013-05-18 19:56:54 -07:00
public void executeEvent(final MagicGame game, final MagicEvent event) {
2013-04-12 19:32:25 -07:00
event.processTargetPermanent(game,new MagicPermanentAction() {
public void doAction(final MagicPermanent creature) {
game.doAction(new MagicChangeCountersAction(creature,MagicCounterType.MinusOne,1,true));
}
});
}
2013-05-18 19:56:54 -07:00
}
]