- Added Armillary Sphere, Dreamscape Artist and Planar Portal.

- Converted Terramorphic Expanse and Evolving Wilds to keyword.
This commit is contained in:
jendave
2011-08-06 09:22:13 +00:00
parent 083817ab57
commit 9aaa3e26f2
7 changed files with 34 additions and 3 deletions

3
.gitattributes vendored
View File

@@ -1141,6 +1141,7 @@ res/cardsfolder/dream_cache.txt -text svneol=native#text/plain
res/cardsfolder/dream_fracture.txt -text svneol=native#text/plain
res/cardsfolder/dream_prowler.txt -text svneol=native#text/plain
res/cardsfolder/dream_stalker.txt -text svneol=native#text/plain
res/cardsfolder/dreamscape_artist.txt -text svneol=native#text/plain
res/cardsfolder/dreamstone_hedron.txt -text svneol=native#text/plain
res/cardsfolder/dreg_reaver.txt -text svneol=native#text/plain
res/cardsfolder/dregscape_zombie.txt -text svneol=native#text/plain
@@ -3079,6 +3080,7 @@ res/cardsfolder/plagued_rusalka.txt -text svneol=native#text/plain
res/cardsfolder/plains.txt -text svneol=native#text/plain
res/cardsfolder/planar_cleansing.txt -text svneol=native#text/plain
res/cardsfolder/planar_gate.txt -text svneol=native#text/plain
res/cardsfolder/planar_portal.txt -text svneol=native#text/plain
res/cardsfolder/planar_void.txt -text svneol=native#text/plain
res/cardsfolder/plasma_elemental.txt -text svneol=native#text/plain
res/cardsfolder/plateau.txt -text svneol=native#text/plain
@@ -3747,6 +3749,7 @@ res/cardsfolder/skyknight_legionnaire.txt -text svneol=native#text/plain
res/cardsfolder/skyrider_trainee.txt -text svneol=native#text/plain
res/cardsfolder/skyshaper.txt -text svneol=native#text/plain
res/cardsfolder/skyshroud_behemoth.txt -text svneol=native#text/plain
res/cardsfolder/skyshroud_claim.txt -text svneol=native#text/plain
res/cardsfolder/skyshroud_elf.txt -text svneol=native#text/plain
res/cardsfolder/skyshroud_elite.txt -text svneol=native#text/plain
res/cardsfolder/skyshroud_falcon.txt -text svneol=native#text/plain

View File

@@ -0,0 +1,9 @@
Name:Dreamscape Artist
ManaCost:1 U
Types:Creature Human Spellshaper
Text:no text
PT:1/1
A:AB$Fetch|Cost$2 U T Discard<1/Any> Sac<1/Land>|Destination$Battlefield|FetchType$Land.Basic|FetchNum$2|SpellDescription$Search your library for up to two basic land cards and put them onto the battlefield. Then shuffle your library.
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/dreamscape_artist.jpg
End

View File

@@ -2,6 +2,7 @@ Name:Evolving Wilds
ManaCost:no cost
Types:Land
Text:no text
A:AB$Fetch|Cost$T Sac<1/CARDNAME>|Destination$Hand|FetchType$Land.Basic|FetchNum$1|SpellDescription$Search your library for a basic land card and put it onto the battlefield tapped. Then shuffle your library.
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/evolving_wilds.jpg
End

View File

@@ -0,0 +1,8 @@
Name:Planar Portal
ManaCost:6
Types:Artifact
Text:no text
A:AB$Fetch|Cost$6 T|Destination$Hand|FetchType$Card|FetchNum$1|SpellDescription$Search your library for a card and put that card into your hand. Then shuffle your library.
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/planar_portal.jpg
End

View File

@@ -0,0 +1,8 @@
Name:Skyshroud Claim
ManaCost:3 G
Types:Sorcery
Text:no text
A:SP$Fetch|Cost$3 G|Destination$Battlefield|FetchType$Forest|FetchNum$2|SpellDescription$Search your library for up to two Forest cards and put them onto the battlefield. Then shuffle your library.
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/skyshroud_claim.jpg
End

View File

@@ -2,7 +2,7 @@ Name:Terramorphic Expanse
ManaCost:no cost
Types:Land
Text:no text
SVar:RemAIDeck:True
A:AB$Fetch|Cost$T Sac<1/CARDNAME>|Destination$Hand|FetchType$Land.Basic|FetchNum$1|SpellDescription$Search your library for a basic land card and put it onto the battlefield tapped. Then shuffle your library.
SVar:Rarity:Common
SVar:Picture:http://resources.wizards.com/magic/cards/tsp/en-us/card118874.jpg
End

View File

@@ -1062,6 +1062,7 @@ class CardFactory_Lands {
ability.setDescription("7, Tap: Search your library for a colorless creature card, reveal it, and put it into your hand. Then shuffle your library.");
}//*************** END ************ END **************************
/*keyworded
//*************** START *********** START **************************
else if(cardName.equals("Terramorphic Expanse") || cardName.equals("Evolving Wilds")) {
//tap sacrifice
@@ -1071,12 +1072,12 @@ class CardFactory_Lands {
@Override
public boolean canPlayAI() {
return false;
/*
//sacrifice Sakura-Tribe Elder if Human has any creatures
CardList list = new CardList(AllZone.Human_Play.getCards());
list = list.getType("Creature");
return list.size() != 0 && card.isUntapped();
*/
}
@Override
@@ -1173,6 +1174,7 @@ class CardFactory_Lands {
ability.setDescription("tap, Sacrifice " + card.getName() + ": Search your library for a basic land card and put it into play tapped. Then shuffle your library.");
ability.setBeforePayMana(runtime);
}//*************** END ************ END **************************
*/
//*************** START *********** START **************************
else if(cardName.equals("Wasteland") || cardName.equals("Strip Mine") || cardName.equals("Tectonic Edge")) {