Add script for Elvish Skysweeper

master
Jericho Pumpkin 2013-10-06 12:01:45 +00:00
parent 3d5b545d3a
commit b94838fbef
2 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,35 @@
[
new MagicPermanentActivation(
new MagicActivationHints(MagicTiming.Removal),
"Destroy"
) {
@Override
public Iterable<MagicEvent> getCostEvent(final MagicPermanent source) {
return [
new MagicPayManaCostEvent(source,"{4}{G}"),
new MagicSacrificePermanentEvent(source, MagicTargetChoice.SACRIFICE_CREATURE)
];
}
@Override
public MagicEvent getPermanentEvent(final MagicPermanent source, final MagicPayedCost payedCost) {
return new MagicEvent(
source,
MagicTargetChoice.NEG_TARGET_CREATURE_WITH_FLYING,
new MagicDestroyTargetPicker(false),
this,
"Destroy target creature\$ with flying."
);
}
@Override
public void executeEvent(final MagicGame game, final MagicEvent event) {
event.processTargetPermanent(game,new MagicPermanentAction() {
public void doAction(final MagicPermanent creature) {
game.doAction(new MagicDestroyAction(creature));
}
});
}
}
]

View File

@ -0,0 +1,11 @@
name=Elvish Skysweeper
url=http://magiccards.info/rav/en/162.html
image=http://magiccards.info/scans/en/rav/162.jpg
value=2.866
rarity=C
type=Creature
subtype=Elf,Warrior
cost={G}
pt=1/1
timing=main
requires_groovy_code