diff --git a/res/card-pictures.txt b/res/card-pictures.txt index 04ebb869b68..11afb23dbc3 100644 --- a/res/card-pictures.txt +++ b/res/card-pictures.txt @@ -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 +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 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 diff --git a/res/cards.txt b/res/cards.txt index 44f9bcc9064..76f4f90260f 100644 --- a/res/cards.txt +++ b/res/cards.txt @@ -1,3 +1,8 @@ +Three Visits +1 G +Sorcery +no text + Bojuka Bog no cost Land diff --git a/src/forge/CardFactory.java b/src/forge/CardFactory.java index a9b7114b33d..51f5492f5e4 100644 --- a/src/forge/CardFactory.java +++ b/src/forge/CardFactory.java @@ -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 **************************