added Slashing Tiger and Slinking Giant

master
beholder 2011-10-11 11:00:42 +02:00
parent cb321e3f8f
commit 3ea08f6417
3 changed files with 46 additions and 1 deletions

View File

@ -14844,6 +14844,33 @@ type=Creature
subtype=Kor,Soldier
color=w
converted=5
cost={2}{W}{W}
cost={3}{W}{W}
pt=3/5
timing=main
>Slashing Tiger
url=http://magiccards.info/me3/en/133.html
image=http://magiccards.info/scans/en/me3/133.jpg
value=3
rarity=C
type=Creature
subtype=Cat
color=g
converted=4
cost={2}{G}{G}
pt=3/3
timing=main
>Slinking Giant
url=http://magiccards.info/shm/en/106.html
image=http://magiccards.info/scans/en/shm/106.jpg
value=3
rarity=U
type=Creature
subtype=Giant,Rogue
color=r
converted=4
cost={2}{R}{R}
pt=4/4
ability=wither
timing=main

View File

@ -0,0 +1,8 @@
package magic.card;
import magic.model.trigger.MagicBecomesBlockedPumpTrigger;
public class Slashing_Tiger {
public static final MagicBecomesBlockedPumpTrigger T1 = new MagicBecomesBlockedPumpTrigger(2,2,false);
}

View File

@ -0,0 +1,10 @@
package magic.card;
import magic.model.trigger.MagicBecomesBlockedPumpTrigger;
import magic.model.trigger.MagicWhenBlocksPumpTrigger;
public class Slinking_Giant {
public static final MagicBecomesBlockedPumpTrigger T1 = new MagicBecomesBlockedPumpTrigger(-3,0,false);
public static final MagicWhenBlocksPumpTrigger T2 = new MagicWhenBlocksPumpTrigger(-3,0);
}