21 lines
643 B
Groovy
21 lines
643 B
Groovy
|
[
|
||
|
new MagicSpellCardEvent() {
|
||
|
@Override
|
||
|
public MagicEvent getEvent(final MagicCardOnStack cardOnStack,final MagicPayedCost payedCost) {
|
||
|
return new MagicEvent(
|
||
|
cardOnStack,
|
||
|
this,
|
||
|
"PN puts four 1/1 red Goblin creature tokens onto the battlefield."
|
||
|
);
|
||
|
}
|
||
|
@Override
|
||
|
public void executeEvent(final MagicGame game, final MagicEvent event) {
|
||
|
game.doAction(new MagicPlayTokensAction(
|
||
|
event.getPlayer(),
|
||
|
TokenCardDefinitions.get("Goblin1"),
|
||
|
4
|
||
|
));
|
||
|
}
|
||
|
}
|
||
|
]
|