add support for Primal Beyond

This commit is contained in:
ArsenalNut
2012-05-22 20:10:36 +00:00
parent d31b939a3f
commit d5091e724a
3 changed files with 22 additions and 7 deletions

1
.gitattributes vendored
View File

@@ -6936,6 +6936,7 @@ res/cardsfolder/p/priest_of_urabrask.txt svneol=native#text/plain
res/cardsfolder/p/priest_of_yawgmoth.txt svneol=native#text/plain
res/cardsfolder/p/priests_of_norn.txt svneol=native#text/plain
res/cardsfolder/p/primal_bellow.txt svneol=native#text/plain
res/cardsfolder/p/primal_beyond.txt -text
res/cardsfolder/p/primal_boost.txt svneol=native#text/plain
res/cardsfolder/p/primal_clay.txt svneol=native#text/plain
res/cardsfolder/p/primal_cocoon.txt svneol=native#text/plain

View File

@@ -0,0 +1,11 @@
Name:Primal Beyond
ManaCost:no cost
Types:Land
Text:As CARDNAME enters the battlefield, you may reveal an Elemental card from your hand. If you don't, CARDNAME enters the battlefield tapped.
A:AB$ Mana | Cost$ T | Produced$ 1 | SpellDescription$ Add 1 to your mana pool.
A:AB$ Mana | Cost$ T | Produced$ Any | RestrictValid$ Card.Elemental,Activated.Elemental | SpellDescription$ Add one mana of any color to your mana pool. Spend this mana only to cast an Elemental spell or activate an ability of an Elemental.
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/primal_beyond.jpg
SetInfo:MOR|Rare|http://magiccards.info/scans/en/mt/149.jpg
Oracle:As Primal Beyond enters the battlefield, you may reveal an Elemental card from your hand. If you don't, Primal Beyond enters the battlefield tapped.\n{T}: Add {1} to your mana pool.\n{T}: Add one mana of any color to your mana pool. Spend this mana only to cast an Elemental spell or activate an ability of an Elemental.
End

View File

@@ -427,30 +427,33 @@ class CardFactoryLands {
else if (cardName.equals("Ancient Amphitheater") || cardName.equals("Auntie's Hovel")
|| cardName.equals("Gilt-Leaf Palace") || cardName.equals("Secluded Glen")
|| cardName.equals("Wanderwine Hub") || cardName.equals("Rustic Clachan")
|| cardName.equals("Murmuring Bosk")) {
|| cardName.equals("Murmuring Bosk") || cardName.equals("Primal Beyond")) {
String shortTemp = "";
if (cardName.equals("Ancient Amphitheater")) {
shortTemp = "Giant";
}
if (cardName.equals("Auntie's Hovel")) {
else if (cardName.equals("Auntie's Hovel")) {
shortTemp = "Goblin";
}
if (cardName.equals("Gilt-Leaf Palace")) {
else if (cardName.equals("Gilt-Leaf Palace")) {
shortTemp = "Elf";
}
if (cardName.equals("Secluded Glen")) {
else if (cardName.equals("Secluded Glen")) {
shortTemp = "Faerie";
}
if (cardName.equals("Wanderwine Hub")) {
else if (cardName.equals("Wanderwine Hub")) {
shortTemp = "Merfolk";
}
if (cardName.equals("Rustic Clachan")) {
else if (cardName.equals("Rustic Clachan")) {
shortTemp = "Kithkin";
}
if (cardName.equals("Murmuring Bosk")) {
else if (cardName.equals("Murmuring Bosk")) {
shortTemp = "Treefolk";
}
else if (cardName.equals("Primal Beyond")) {
shortTemp = "Elemental";
}
final String type = shortTemp;