2013-02-17 04:23:53 -08:00
|
|
|
[
|
|
|
|
new MagicSpellCardEvent() {
|
|
|
|
@Override
|
|
|
|
public MagicEvent getEvent(final MagicCardOnStack cardOnStack,final MagicPayedCost payedCost) {
|
|
|
|
return new MagicEvent(
|
|
|
|
cardOnStack,
|
|
|
|
MagicTargetChoice.TARGET_CREATURE_YOUR_OPPONENT_CONTROLS,
|
|
|
|
new MagicNoCombatTargetPicker(true,true,false),
|
|
|
|
this,
|
|
|
|
"Detain target creature\$ an opponent controls. Draw a card."
|
|
|
|
);
|
|
|
|
}
|
|
|
|
@Override
|
2013-06-15 07:08:11 -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-17 04:23:53 -08:00
|
|
|
public void doAction(final MagicPermanent creature) {
|
2013-05-02 06:10:37 -07:00
|
|
|
game.doAction(new MagicDetainAction(event.getPlayer(), creature));
|
2013-06-21 20:55:22 -07:00
|
|
|
game.doAction(new MagicDrawAction(event.getPlayer()));
|
2013-02-17 04:23:53 -08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|