Add script for Rootgrapple

master
Jericho Pumpkin 2013-10-11 21:02:12 +00:00
parent 787e15ed2f
commit e4fcec4d83
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,26 @@
[
new MagicSpellCardEvent() {
@Override
public MagicEvent getEvent(final MagicCardOnStack cardOnStack,final MagicPayedCost payedCost) {
return new MagicEvent(
cardOnStack,
MagicTargetChoice.NEG_TARGET_NONCREATURE,
new MagicDestroyTargetPicker(false),
this,
"Destroy target noncreature permanent\$. " +
"If you control a Treefolk, draw a card."
);
}
@Override
public void executeEvent(final MagicGame game, final MagicEvent event) {
event.processTargetPermanent(game,new MagicPermanentAction() {
public void doAction(final MagicPermanent targetPermanent) {
game.doAction(new MagicDestroyAction(targetPermanent));
if(event.getPlayer().getNrOfPermanents(MagicSubType.Treefolk) > 0){
game.doAction(new MagicDrawAction(event.getPlayer()));
}
}
});
}
}
]

View File

@ -0,0 +1,11 @@
name=Rootgrapple
url=http://magiccards.info/lw/en/234.html
image=http://magiccards.info/scans/en/lw/234.jpg
value=3.273
rarity=C
removal=3
cost={4}{G}
type=Tribal,Instant
subtype=Treefolk
timing=removal
requires_groovy_code