added Angelfire Crusader, Aven Flock, Balshan Collaborator, Blistering Dieflyn
parent
16c5ce313c
commit
a7900e82cd
|
@ -66,6 +66,19 @@ toughness=6
|
|||
ability=flying
|
||||
timing=main
|
||||
|
||||
>Angelfire Crusader
|
||||
image=http://magiccards.info/scans/en/ap/1.jpg
|
||||
value=3
|
||||
rarity=C
|
||||
type=Creature
|
||||
subtype=Human,Soldier,Knight
|
||||
color=w
|
||||
converted=4
|
||||
cost={3}{W}
|
||||
power=2
|
||||
toughness=3
|
||||
timing=main
|
||||
|
||||
>Arc Runner
|
||||
image=http://magiccards.info/scans/en/m11/123.jpg
|
||||
value=2
|
||||
|
@ -229,6 +242,20 @@ toughness=2
|
|||
ability=flying,hexproof
|
||||
timing=fmain
|
||||
|
||||
>Aven Flock
|
||||
image=http://magiccards.info/scans/en/9e/4.jpg
|
||||
value=3
|
||||
rarity=C
|
||||
type=Creature
|
||||
subtype=Bird,Soldier
|
||||
color=w
|
||||
converted=5
|
||||
cost={4}{W}
|
||||
power=2
|
||||
toughness=3
|
||||
ability=flying
|
||||
timing=main
|
||||
|
||||
>Aven Mimeomancer
|
||||
image=http://magiccards.info/scans/en/arb/2.jpg
|
||||
value=4
|
||||
|
@ -271,6 +298,20 @@ toughness=2
|
|||
ability=first strike
|
||||
timing=main
|
||||
|
||||
>Balshan Collaborator
|
||||
image=http://magiccards.info/scans/en/tr/25.jpg
|
||||
value=3
|
||||
rarity=U
|
||||
type=Creature
|
||||
subtype=Bird,Soldier
|
||||
color=u
|
||||
converted=4
|
||||
cost={3}{U}
|
||||
power=2
|
||||
toughness=2
|
||||
ability=flying
|
||||
timing=main
|
||||
|
||||
>Battlegrace Angel
|
||||
image=http://magiccards.info/scans/en/ala/6.jpg
|
||||
value=4
|
||||
|
@ -353,6 +394,20 @@ power=1
|
|||
toughness=2
|
||||
timing=main
|
||||
|
||||
>Blistering Dieflyn
|
||||
image=http://magiccards.info/scans/en/shm/82.jpg
|
||||
value=1
|
||||
rarity=C
|
||||
type=Creature
|
||||
subtype=Imp
|
||||
color=r
|
||||
converted=4
|
||||
cost={3}{R}
|
||||
power=0
|
||||
toughness=1
|
||||
ability=flying
|
||||
timing=main
|
||||
|
||||
>Blood Seeker
|
||||
image=http://magiccards.info/scans/en/m12/81.jpg
|
||||
value=2
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
package magic.card;
|
||||
|
||||
import magic.model.MagicManaCost;
|
||||
import magic.model.event.MagicPermanentActivation;
|
||||
import magic.model.event.MagicPumpActivation;
|
||||
|
||||
public class Angelfire_Crusader {
|
||||
public static final MagicPermanentActivation A = new MagicPumpActivation(MagicManaCost.RED,1,0);
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
package magic.card;
|
||||
|
||||
import magic.model.MagicManaCost;
|
||||
import magic.model.event.MagicPermanentActivation;
|
||||
import magic.model.event.MagicPumpActivation;
|
||||
|
||||
public class Aven_Flock {
|
||||
public static final MagicPermanentActivation A = new MagicPumpActivation(MagicManaCost.WHITE,0,1);
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
package magic.card;
|
||||
|
||||
import magic.model.MagicManaCost;
|
||||
import magic.model.event.MagicPermanentActivation;
|
||||
import magic.model.event.MagicPumpActivation;
|
||||
|
||||
public class Balshan_Collaborator {
|
||||
public static final MagicPermanentActivation A = new MagicPumpActivation(MagicManaCost.BLACK,1,1);
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
package magic.card;
|
||||
|
||||
import magic.model.MagicManaCost;
|
||||
import magic.model.event.MagicPermanentActivation;
|
||||
import magic.model.event.MagicPumpActivation;
|
||||
|
||||
public class Blistering_Dieflyn {
|
||||
public static final MagicPermanentActivation A = new MagicPumpActivation(MagicManaCost.RED_OR_BLACK,1,0);
|
||||
}
|
|
@ -77,6 +77,7 @@ public class MagicManaCost {
|
|||
public static final MagicManaCost THREE_BLACK_BLACK=MagicManaCost.createCost("{3}{B}{B}");
|
||||
public static final MagicManaCost ONE_WHITE_BLACK=MagicManaCost.createCost("{1}{W}{B}");
|
||||
public static final MagicManaCost RED_OR_WHITE=MagicManaCost.createCost("{R/W}");
|
||||
public static final MagicManaCost RED_OR_BLACK=MagicManaCost.createCost("{R/B}");
|
||||
public static final MagicManaCost ONE_WHITE_OR_BLUE=MagicManaCost.createCost("{1}{W/U}");
|
||||
public static final MagicManaCost THREE_WHITE_BLUE=MagicManaCost.createCost("{3}{W}{U}");
|
||||
public static final MagicManaCost TWO_WHITE_WHITE_BLUE_BLUE=MagicManaCost.createCost("{2}{W}{W}{U}{U}");
|
||||
|
|
Loading…
Reference in New Issue