35 lines
1.1 KiB
Groovy
35 lines
1.1 KiB
Groovy
[
|
|
new MagicPermanentActivation(
|
|
[
|
|
//add ONE for the card itself
|
|
MagicConditionFactory.ManaCost("{3}{B}{G}"),
|
|
],
|
|
new MagicActivationHints(MagicTiming.Draw),
|
|
"Draw"
|
|
) {
|
|
@Override
|
|
public MagicEvent[] getCostEvent(final MagicPermanent source) {
|
|
return [
|
|
new MagicTapEvent(source),
|
|
new MagicPayManaCostEvent(source,"{2}{B}{G}"),
|
|
new MagicSacrificePermanentEvent(
|
|
source,
|
|
MagicTargetChoice.SACRIFICE_CREATURE
|
|
)
|
|
];
|
|
}
|
|
@Override
|
|
public MagicEvent getPermanentEvent(final MagicPermanent source, final MagicPayedCost payedCost) {
|
|
return new MagicEvent(
|
|
source,
|
|
this,
|
|
"PN draws a card."
|
|
);
|
|
}
|
|
@Override
|
|
public void executeEvent(final MagicGame game, final MagicEvent event) {
|
|
game.doAction(new MagicDrawAction(event.getPlayer()));
|
|
}
|
|
}
|
|
]
|