2013-02-15 21:05:46 -08:00
|
|
|
[
|
|
|
|
new MagicBloodrushActivation(
|
2013-02-26 21:20:43 -08:00
|
|
|
MagicManaCost.create("{R}"),
|
2013-06-15 07:27:32 -07:00
|
|
|
"Target attacking creature\$ gets +2/+1 until end of turn."
|
|
|
|
) {
|
2013-02-15 21:05:46 -08:00
|
|
|
@Override
|
2013-03-22 22:00:53 -07:00
|
|
|
public void executeEvent(final MagicGame game,final MagicEvent event) {
|
2013-03-21 06:35:09 -07:00
|
|
|
event.processTargetPermanent(game,new MagicPermanentAction() {
|
2013-02-15 21:05:46 -08:00
|
|
|
public void doAction(final MagicPermanent creature) {
|
|
|
|
game.doAction(new MagicChangeTurnPTAction(creature,2,1));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|