Added Sylvan Ranger.

This commit is contained in:
jendave
2011-08-06 05:14:23 +00:00
parent fb9ba53e5a
commit 73b4a52db3
3 changed files with 14 additions and 6 deletions

View File

@@ -38,6 +38,7 @@ snow_covered_mountain.jpg http://www.wizards.com/global/images/magic/gene
snow_covered_mountain1.jpg http://www.wizards.com/global/images/magic/general/snow_covered_mountain.jpg
snow_covered_mountain2.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg
snow_covered_mountain3.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg
sylvan_ranger.jpg http://www.wizards.com/global/images/magic/general/sylvan_ranger.jpg
manic_vandal.jpg http://www.wizards.com/global/images/magic/general/manic_vandal.jpg
back_to_nature.jpg http://www.wizards.com/global/images/magic/general/back_to_nature.jpg
augury_owl.jpg http://www.wizards.com/global/images/magic/general/augury_owl.jpg

View File

@@ -1,3 +1,9 @@
Sylvan Ranger
1 G
Creature Elf Scout
When Sylvan Ranger enters the battlefield, you may search your library for a basic land card, reveal it, put it into your hand, then shuffle your library.
1/1
Manic Vandal
2 R
Creature Human Warrior

View File

@@ -18862,9 +18862,8 @@ public class CardFactory_Creatures {
}
//**************END****************END***********************
//*************** START *********** START **************************
else if(cardName.equals("Borderland Ranger")) {
else if(cardName.equals("Borderland Ranger") || cardName.equals("Sylvan Ranger")) {
final Ability ability = new Ability(card, "0") {
@Override
@@ -18903,16 +18902,18 @@ public class CardFactory_Creatures {
private static final long serialVersionUID = 7042012311958529153L;
public void execute() {
ability.setStackDescription(card.getName()
+ " - search library for a basic land card and put it into your hand.");
StringBuffer sb = new StringBuffer();
sb.append(card.getName()).append(" - search library for a basic land card and put it into your hand.");
ability.setStackDescription(sb.toString());
// ability.setStackDescription(card.getName()
// + " - search library for a basic land card and put it into your hand.");
AllZone.Stack.add(ability);
}
};
card.addComesIntoPlayCommand(fetchBasicLand);
}//*************** END ************ END **************************
//*************** START *********** START **************************
//*************** START *********** START **************************
else if(cardName.equals("Kazandu Tuskcaller"))
{
final Ability_Tap ability = new Ability_Tap(card, "0") {