added Skyshroud Behemoth and Skyshroud Ridgeback

master
beholder 2011-10-18 12:59:04 +02:00
parent eb812c84be
commit e45e1ef998
3 changed files with 54 additions and 0 deletions

View File

@ -15492,3 +15492,29 @@ subtype=Golem
converted=4 converted=4
cost={4} cost={4}
timing=main timing=main
>Skyshroud Behemoth
url=http://magiccards.info/ne/en/116.html
image=http://magiccards.info/scans/en/ne/116.jpg
value=5
rarity=R
type=Creature
subtype=Beast
color=g
converted=7
cost={5}{G}{G}
pt=10/10
timing=main
>Skyshroud Ridgeback
url=http://magiccards.info/ne/en/120.html
image=http://magiccards.info/scans/en/ne/120.jpg
value=2
rarity=C
type=Creature
subtype=Beast
color=g
converted=1
cost={G}
pt=2/3
timing=main

View File

@ -0,0 +1,16 @@
package magic.card;
import magic.model.MagicCounterType;
import magic.model.trigger.MagicComesIntoPlayWithCounterTrigger;
import magic.model.trigger.MagicFadeVanishCounterTrigger;
import magic.model.trigger.MagicTappedIntoPlayTrigger;
import magic.model.trigger.MagicTrigger;
public class Skyshroud_Behemoth {
public static final MagicComesIntoPlayWithCounterTrigger T1 =
new MagicComesIntoPlayWithCounterTrigger(MagicCounterType.Charge,"fade",2);
public static final MagicFadeVanishCounterTrigger T2 = new MagicFadeVanishCounterTrigger("fade");
public static final MagicTrigger T3 = new MagicTappedIntoPlayTrigger();
}

View File

@ -0,0 +1,12 @@
package magic.card;
import magic.model.MagicCounterType;
import magic.model.trigger.MagicComesIntoPlayWithCounterTrigger;
import magic.model.trigger.MagicFadeVanishCounterTrigger;
public class Skyshroud_Ridgeback {
public static final MagicComesIntoPlayWithCounterTrigger T1 =
new MagicComesIntoPlayWithCounterTrigger(MagicCounterType.Charge,"fade",2);
public static final MagicFadeVanishCounterTrigger T2 = new MagicFadeVanishCounterTrigger("fade");
}