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

@@ -20556,8 +20556,8 @@ public class CardFactory implements NewConstants {
} //*************** END ************ END **************************
//*************** START *********** START **************************
else if(cardName.equals("Nature's Lore")) {
//*************** START *********** START **************************
else if(cardName.equals("Nature's Lore") || cardName.equals("Three Visits")) {
SpellAbility spell = new Spell(card) {
private static final long serialVersionUID = -6598323179507468746L;
@@ -20578,7 +20578,7 @@ public class CardFactory implements NewConstants {
};//SpellAbility
card.clearSpellAbility();
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);
card.addSpellAbility(spell);
}//*************** END ************ END **************************