mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 19:28:01 +00:00
add support for Primal Beyond
This commit is contained in:
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -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
|
||||
|
||||
11
res/cardsfolder/p/primal_beyond.txt
Normal file
11
res/cardsfolder/p/primal_beyond.txt
Normal 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
|
||||
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user