2013-05-25 19:25:10 -07:00
|
|
|
[
|
|
|
|
new MagicSpellCardEvent() {
|
|
|
|
@Override
|
|
|
|
public MagicEvent getEvent(final MagicCardOnStack cardOnStack, final MagicPayedCost payedCost) {
|
|
|
|
return new MagicEvent(
|
|
|
|
cardOnStack,
|
|
|
|
MagicTargetChoice.POS_TARGET_CREATURE,
|
|
|
|
MagicPumpTargetPicker.create(),
|
|
|
|
this,
|
2013-05-25 19:43:47 -07:00
|
|
|
"Target creature\$ gets +2/+2 until end of turn. " +
|
2013-05-25 19:25:10 -07:00
|
|
|
"If it's paired with a creature, that creature " +
|
|
|
|
"also gets +2/+2 until end of turn."
|
|
|
|
);
|
|
|
|
}
|
|
|
|
@Override
|
|
|
|
public void executeEvent(final MagicGame game, final MagicEvent event) {
|
|
|
|
event.processTargetPermanent(game,new MagicPermanentAction() {
|
|
|
|
public void doAction(final MagicPermanent creature) {
|
|
|
|
game.doAction(new MagicChangeTurnPTAction(creature,2,2));
|
|
|
|
if (creature.isPaired()) {
|
|
|
|
game.doAction(new MagicChangeTurnPTAction(
|
|
|
|
creature.getPairedCreature(),
|
|
|
|
2,
|
|
|
|
2
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|