Added Three Visits.

This commit is contained in:
jendave
2011-08-06 05:06:50 +00:00
parent 379d5c439b
commit 04862d6406
3 changed files with 9 additions and 3 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_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_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 snow_covered_mountain3.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg
three_visits.jpg http://www.wizards.com/global/images/magic/general/three_visits.jpg
bojuka_bog.jpg http://www.wizards.com/global/images/magic/general/bojuka_bog.jpg bojuka_bog.jpg http://www.wizards.com/global/images/magic/general/bojuka_bog.jpg
thran_quarry.jpg http://www.wizards.com/global/images/magic/general/thran_quarry.jpg thran_quarry.jpg http://www.wizards.com/global/images/magic/general/thran_quarry.jpg
glimmervoid.jpg http://www.wizards.com/global/images/magic/general/glimmervoid.jpg glimmervoid.jpg http://www.wizards.com/global/images/magic/general/glimmervoid.jpg

View File

@@ -1,3 +1,8 @@
Three Visits
1 G
Sorcery
no text
Bojuka Bog Bojuka Bog
no cost no cost
Land Land

View File

@@ -20556,8 +20556,8 @@ public class CardFactory implements NewConstants {
} //*************** END ************ END ************************** } //*************** END ************ END **************************
//*************** START *********** START ************************** //*************** START *********** START **************************
else if(cardName.equals("Nature's Lore")) { else if(cardName.equals("Nature's Lore") || cardName.equals("Three Visits")) {
SpellAbility spell = new Spell(card) { SpellAbility spell = new Spell(card) {
private static final long serialVersionUID = -6598323179507468746L; private static final long serialVersionUID = -6598323179507468746L;
@@ -20578,7 +20578,7 @@ public class CardFactory implements NewConstants {
};//SpellAbility };//SpellAbility
card.clearSpellAbility(); card.clearSpellAbility();
String desc = "Search your library for a Forest card and put that card onto the battlefield. Then shuffle your library."; String desc = "Search your library for a Forest card and put that card onto the battlefield. Then shuffle your library.";
spell.setStackDescription(desc); spell.setStackDescription(cardName + " - " + desc);
spell.setDescription(desc); spell.setDescription(desc);
card.addSpellAbility(spell); card.addSpellAbility(spell);
}//*************** END ************ END ************************** }//*************** END ************ END **************************