added Skinbrand Goblin
parent
1e2aac832f
commit
e202ac5ddf
|
@ -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));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
|
@ -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
|
Loading…
Reference in New Issue