23 lines
804 B
Groovy
23 lines
804 B
Groovy
|
[
|
||
|
new MagicSpellCardEvent() {
|
||
|
@Override
|
||
|
public MagicEvent getEvent(final MagicCardOnStack cardOnStack, final MagicPayedCost payedCost) {
|
||
|
return new MagicEvent(
|
||
|
cardOnStack,
|
||
|
MagicTargetChoice.TARGET_PLAYER,
|
||
|
this,
|
||
|
"Target player\$ puts the top three cards of his or her " +
|
||
|
"library into his or her graveyard."
|
||
|
);
|
||
|
}
|
||
|
@Override
|
||
|
public void executeEvent(final MagicGame game, final MagicEvent event) {
|
||
|
event.processTargetPlayer(game,new MagicPlayerAction() {
|
||
|
public void doAction(final MagicPlayer player) {
|
||
|
game.doAction(new MagicMillLibraryAction(player,3));
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
]
|