60 lines
2.4 KiB
Groovy
60 lines
2.4 KiB
Groovy
[
|
|
new MagicSpellCardEvent() {
|
|
@Override
|
|
public MagicEvent getEvent(final MagicCardOnStack cardOnStack,final MagicPayedCost payedCost) {
|
|
return new MagicEvent(
|
|
cardOnStack,
|
|
MagicTargetChoice.TARGET_CREATURE_YOU_CONTROL,
|
|
new MagicTapTargetPicker(true,false),
|
|
this,
|
|
"Target creature\$ you control gets +1/+0 until end of turn and is unblockable this turn."
|
|
);
|
|
}
|
|
@Override
|
|
public void executeEvent(
|
|
final MagicGame game,
|
|
final MagicEvent event,
|
|
final Object[] choiceResults) {
|
|
event.processTargetPermanent(game,choiceResults,0,new MagicPermanentAction() {
|
|
public void doAction(final MagicPermanent creature) {
|
|
game.doAction(new MagicChangeTurnPTAction(creature, 1, 0));
|
|
game.doAction(new MagicSetAbilityAction(creature, MagicAbility.Unblockable));
|
|
}
|
|
});
|
|
}
|
|
},
|
|
new MagicCardActivation(
|
|
[
|
|
MagicConditionFactory.ManaCost("{3}{U}{R}")
|
|
],
|
|
new MagicActivationHints(MagicTiming.Tapping,true),
|
|
"Overload"
|
|
) {
|
|
public MagicEvent[] getCostEvent(final MagicCard source) {
|
|
return [
|
|
new MagicPayManaCostEvent(source, source.getController(), MagicManaCost.create("{3}{U}{R}"))
|
|
];
|
|
}
|
|
@Override
|
|
public MagicEvent getEvent(final MagicCardOnStack cardOnStack,final MagicPayedCost payedCost) {
|
|
return new MagicEvent(
|
|
cardOnStack,
|
|
this,
|
|
"Each creature you control gets +1/+0 until end of turn and is unblockable this turn."
|
|
);
|
|
}
|
|
@Override
|
|
public void executeEvent(
|
|
final MagicGame game,
|
|
final MagicEvent event,
|
|
final Object[] choiceResults) {
|
|
final Collection<MagicPermanent> targets=
|
|
game.filterPermanents(event.getPlayer(),MagicTargetFilter.TARGET_CREATURE_YOU_CONTROL);
|
|
for (final MagicPermanent creature : targets) {
|
|
game.doAction(new MagicChangeTurnPTAction(creature, 1, 0));
|
|
game.doAction(new MagicSetAbilityAction(creature, MagicAbility.Unblockable));
|
|
}
|
|
}
|
|
}
|
|
]
|