add Ondu Giant, Pilgrim's Eye, Quirion Trailblazer and Yavimaya Granger

This commit is contained in:
jendave
2011-08-06 08:48:17 +00:00
parent b3ed82febb
commit 13363199c7
6 changed files with 42 additions and 3 deletions

4
.gitattributes vendored
View File

@@ -2747,6 +2747,7 @@ res/cardsfolder/omega_myr.txt -text svneol=native#text/plain
res/cardsfolder/omen.txt -text svneol=native#text/plain
res/cardsfolder/omnath_locus_of_mana.txt -text svneol=native#text/plain
res/cardsfolder/ondu_cleric.txt -text svneol=native#text/plain
res/cardsfolder/ondu_giant.txt -text svneol=native#text/plain
res/cardsfolder/onslaught.txt -text svneol=native#text/plain
res/cardsfolder/onulet.txt -text svneol=native#text/plain
res/cardsfolder/onyx_goblet.txt -text svneol=native#text/plain
@@ -2881,6 +2882,7 @@ res/cardsfolder/phyrexian_walker.txt -text svneol=native#text/plain
res/cardsfolder/phyrexian_war_beast.txt -text svneol=native#text/plain
res/cardsfolder/phytohydra.txt -text svneol=native#text/plain
res/cardsfolder/pianna_nomad_captain.txt -text svneol=native#text/plain
res/cardsfolder/pilgrims_eye.txt -text svneol=native#text/plain
res/cardsfolder/pillage.txt -text svneol=native#text/plain
res/cardsfolder/pillarfield_ox.txt -text svneol=native#text/plain
res/cardsfolder/pillory_of_the_sleepless.txt -text svneol=native#text/plain
@@ -3004,6 +3006,7 @@ res/cardsfolder/quiet_purity.txt -text svneol=native#text/plain
res/cardsfolder/quietus_spike.txt -text svneol=native#text/plain
res/cardsfolder/quirion_dryad.txt -text svneol=native#text/plain
res/cardsfolder/quirion_explorer.txt -text svneol=native#text/plain
res/cardsfolder/quirion_trailblazer.txt -text svneol=native#text/plain
res/cardsfolder/qumulox.txt -text svneol=native#text/plain
res/cardsfolder/rabid_wolverines.txt -text svneol=native#text/plain
res/cardsfolder/rabid_wombat.txt -text svneol=native#text/plain
@@ -4562,6 +4565,7 @@ res/cardsfolder/yavimaya_coast.txt -text svneol=native#text/plain
res/cardsfolder/yavimaya_elder.txt -text svneol=native#text/plain
res/cardsfolder/yavimaya_enchantress.txt -text svneol=native#text/plain
res/cardsfolder/yavimaya_gnats.txt -text svneol=native#text/plain
res/cardsfolder/yavimaya_granger.txt -text svneol=native#text/plain
res/cardsfolder/yavimaya_scion.txt -text svneol=native#text/plain
res/cardsfolder/yavimaya_wurm.txt -text svneol=native#text/plain
res/cardsfolder/yavimayas_embrace.txt -text svneol=native#text/plain

View File

@@ -0,0 +1,8 @@
Name:Ondu Giant
ManaCost:3 G
Types:Creature Giant Druid
Text:When Ondu Giant enters the battlefield, you may search your library for a basic land card, put that card onto the battlefield tapped, then shuffle your library.
PT:2/4
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/ondu_giant.jpg
End

View File

@@ -0,0 +1,9 @@
Name:Pilgrim's Eye
ManaCost:3
Types:Artifact Creature Thopter
Text:When Pilgrim's Eye enters the battlefield, you may search your library for a basic land card, reveal it, put it into your hand, then shuffle your library.
PT:1/1
K:Flying
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/pilgrims_eye.jpg
End

View File

@@ -0,0 +1,8 @@
Name:Quirion Trailblazer
ManaCost:3 G
Types:Creature Elf Scout
Text:When Quirion Trailblazer enters the battlefield, you may search your library for a basic land card and put that card onto the battlefield tapped. If you do, shuffle your library.
PT:1/2
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/quirion_trailblazer.jpg
End

View File

@@ -0,0 +1,9 @@
Name:Yavimaya Granger
ManaCost:2 G
Types:Creature Elf
Text:When Yavimaya Granger enters the battlefield, you may search your library for a basic land card, put that card onto the battlefield tapped, then shuffle your library.
PT:2/2
K:Echo:2 G
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/yavimaya_granger.jpg
End

View File

@@ -11598,7 +11598,8 @@ public class CardFactory_Creatures {
//*************** START *********** START **************************
else if(cardName.equals("Solemn Simulacrum")) {
else if(cardName.equals("Solemn Simulacrum") || cardName.equals("Yavimaya Granger")
|| cardName.equals("Ondu Giant") || cardName.equals("Quirion Trailblazer")) {
final Ability ability = new Ability(card, "0") {
@Override
@@ -11661,7 +11662,7 @@ public class CardFactory_Creatures {
}
};
card.addDestroyCommand(draw);
if(cardName.equals("Solemn Simulacrum")) card.addDestroyCommand(draw);
card.addComesIntoPlayCommand(fetchBasicLand);
}//*************** END ************ END **************************
@@ -17440,7 +17441,7 @@ public class CardFactory_Creatures {
//*************** START *********** START **************************
else if(cardName.equals("Borderland Ranger") || cardName.equals("Sylvan Ranger")
|| cardName.equals("Civic Wayfinder")) {
|| cardName.equals("Civic Wayfinder") || cardName.equals("Pilgrim's Eye")) {
final Ability ability = new Ability(card, "0") {
@Override