added Zhur-Taa Swine

master
melvin 2013-02-16 13:09:25 +08:00
parent aa2a7199f0
commit 98ff33bd15
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,14 @@
[
new MagicBloodrushActivation(
MagicManaCost.ONE_RED_GREEN,
"Target attacking creature\$ gets +5/+4 until end of turn.") {
@Override
public void executeEvent(final MagicGame game,final MagicEvent event,final Object[] choiceResults) {
event.processTargetPermanent(game,choiceResults,0,new MagicPermanentAction() {
public void doAction(final MagicPermanent creature) {
game.doAction(new MagicChangeTurnPTAction(creature,5,4));
}
});
}
}
]

View File

@ -0,0 +1,11 @@
name=Zhur-Taa Swine
url=http://magiccards.info/gtc/en/210
image=http://magiccards.info/scans/en/gtc/210.jpg
value=2.365
rarity=C
type=Creature
subtype=Boar
cost={3}{R}{G}
pt=5/4
timing=main
requires_groovy_code