add Second Harvest

master
ShawnieBoy 2016-06-09 16:44:17 +01:00
parent f52741f076
commit c90d18d594
2 changed files with 21 additions and 2 deletions

View File

@ -0,0 +1,18 @@
[
new MagicSpellCardEvent() {
@Override
public MagicEvent getEvent(final MagicCardOnStack cardOnStack,final MagicPayedCost payedCost) {
return new MagicEvent(
cardOnStack,
this,
"For each token PN controls, he or she puts a token onto the battlefield that's a copy of that permanent."
);
}
@Override
public void executeEvent(final MagicGame game, final MagicEvent event) {
TOKEN_YOU_CONTROL.filter(event) each {
game.doAction(new PlayTokenAction(event.getPlayer(), it));
}
}
}
]

View File

@ -4,6 +4,7 @@ value=2.500
rarity=R
type=Instant
cost={2}{G}{G}
effect=For each token you control, put a token onto the battlefield that's a copy of that permanent.
timing=removal
ability=Cast SN with AI only if you control a token.
timing=token
requires_groovy_code
oracle=For each token you control, put a token onto the battlefield that's a copy of that permanent.