2013-10-12 19:07:02 -07:00
|
|
|
[
|
|
|
|
new MagicSpellCardEvent() {
|
|
|
|
@Override
|
|
|
|
public MagicEvent getEvent(final MagicCardOnStack cardOnStack,final MagicPayedCost payedCost) {
|
|
|
|
return new MagicEvent(
|
|
|
|
cardOnStack,
|
|
|
|
this,
|
|
|
|
"PN puts five 0/1 colorless Eldrazi Spawn creature tokens onto the battlefield." +
|
|
|
|
"They have \"Sacrifice this creature: Add {1} to your mana pool.\""
|
|
|
|
);
|
|
|
|
}
|
|
|
|
@Override
|
|
|
|
public void executeEvent(final MagicGame game, final MagicEvent event) {
|
|
|
|
game.doAction(new MagicPlayTokensAction(
|
|
|
|
event.getPlayer(),
|
2013-10-24 23:18:49 -07:00
|
|
|
TokenCardDefinitions.get("0/1 colorless Eldrazi Spawn creature token"),
|
2013-10-12 19:07:02 -07:00
|
|
|
5
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|