37 lines
1.4 KiB
Groovy
37 lines
1.4 KiB
Groovy
[
|
|
new MagicPermanentActivation(
|
|
new MagicActivationHints(MagicTiming.Pump),
|
|
"Mill"
|
|
) {
|
|
|
|
@Override
|
|
public Iterable<MagicEvent> getCostEvent(final MagicPermanent source) {
|
|
return [new MagicPayManaCostEvent(source,"{2}")];
|
|
}
|
|
|
|
@Override
|
|
public MagicEvent getPermanentEvent(final MagicPermanent source,final MagicPayedCost payedCost) {
|
|
return new MagicEvent(
|
|
source,
|
|
MagicTargetChoice.TARGET_PLAYER,
|
|
this,
|
|
"Target player\$ puts the top card of his or her library " +
|
|
"into his or her graveyard. SN gets +X/+X " +
|
|
"until end of turn, where X is that card's converted mana cost"
|
|
);
|
|
}
|
|
|
|
@Override
|
|
public void executeEvent(final MagicGame game, final MagicEvent event) {
|
|
event.processTargetPlayer(game,new MagicPlayerAction() {
|
|
public void doAction(final MagicPlayer player) {
|
|
final MagicCard card = player.getLibrary().getCardAtTop();
|
|
game.doAction(new MagicMillLibraryAction(player,1));
|
|
final int amount = card.getCardDefinition().getConvertedCost();
|
|
game.doAction(new MagicChangeTurnPTAction(event.getPermanent(),amount,amount));
|
|
}
|
|
});
|
|
}
|
|
}
|
|
]
|