added Skinbrand Goblin

master
melvin 2013-02-16 13:05:46 +08:00
parent 1e2aac832f
commit e202ac5ddf
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,14 @@
[
new MagicBloodrushActivation(
MagicManaCost.RED_GREEN,
"Target attacking creature\$ gets +2/+1 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,2,1));
}
});
}
}
]

View File

@ -0,0 +1,11 @@
name=Skinbrand Goblin
url=http://magiccards.info/gtc/en/105.html
image=http://magiccards.info/scans/en/gtc/105.jpg
value=2.365
rarity=C
type=Creature
subtype=Goblin,Warrior
cost={1}{R}
pt=2/1
timing=main
requires_groovy_code