magarena/release/Magarena/scripts/Galvanic_Blast.groovy

27 lines
1.2 KiB
Groovy
Raw Normal View History

2013-10-15 22:39:10 -07:00
[
new MagicSpellCardEvent() {
@Override
public MagicEvent getEvent(final MagicCardOnStack cardOnStack,final MagicPayedCost payedCost) {
2013-10-15 23:16:55 -07:00
final int amount = MagicCondition.METALCRAFT_CONDITION.accept(cardOnStack) ? 4 : 2;
2013-10-15 22:39:10 -07:00
return new MagicEvent(
cardOnStack,
MagicTargetChoice.NEG_TARGET_CREATURE_OR_PLAYER,
2013-10-15 23:16:55 -07:00
new MagicDamageTargetPicker(amount),
2013-10-15 22:39:10 -07:00
this,
"SN deals 2 damage to target creature or player\$. "+
"If you control three or more artifacts, it deals 4 damage to that creature or player instead."
);
}
@Override
public void executeEvent(final MagicGame game, final MagicEvent event) {
event.processTarget(game,new MagicTargetAction() {
public void doAction(final MagicTarget target) {
final int amount = MagicCondition.METALCRAFT_CONDITION.accept(event.getSource()) ? 4 : 2;
final MagicDamage damage=new MagicDamage(event.getSource(),target,amount);
game.doAction(new MagicDealDamageAction(damage));
}
});
}
}
]