From 9ae626e539320815dd9feca5e97ce83fd02f175a Mon Sep 17 00:00:00 2001 From: jendave Date: Sat, 6 Aug 2011 03:17:30 +0000 Subject: [PATCH] - Added Rofellos, Llanowar Emissary and it's LQ pic url. - Added/Improved the setStackDescription for several of the life gaining spells. --- res/card-pictures.txt | 1 + res/cards.txt | 7 +++++++ res/main.properties | 2 +- src/forge/CardFactory.java | 7 ++++--- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/res/card-pictures.txt b/res/card-pictures.txt index ebb290d9675..0885943b139 100644 --- a/res/card-pictures.txt +++ b/res/card-pictures.txt @@ -18,6 +18,7 @@ forest.jpg http://resources.wizards.com/magic/cards/unh/en-us/card73946.jpg forest1.jpg http://gatherer.wizards.com/handlers/image.ashx?type=card&multiverseid=2748 forest2.jpg http://gatherer.wizards.com/handlers/image.ashx?type=card&multiverseid=587 forest3.jpg http://gatherer.wizards.com/handlers/image.ashx?type=card&multiverseid=586 +rofellos_llanowar_emissary.jpg http://www.wizards.com/global/images/magic/general/rofellos_llanowar_emissary.jpg basilisk_collar.jpg http://www.wizards.com/global/images/magic/general/basilisk_collar.jpg battle_hurda.jpg http://www.wizards.com/global/images/magic/general/battle_hurda.jpg bull_rush.jpg http://www.wizards.com/global/images/magic/general/bull_rush.jpg diff --git a/res/cards.txt b/res/cards.txt index 0d4949459be..fe1b64ac823 100644 --- a/res/cards.txt +++ b/res/cards.txt @@ -1,3 +1,10 @@ +Rofellos, Llanowar Emissary +G G +Legendary Creature Elf Druid +no text +2/1 +tap: add G to your mana pool for each Forest you control. + Basilisk Collar 1 Artifact Equipment diff --git a/res/main.properties b/res/main.properties index 84033d4f1c2..f0827b746f4 100644 --- a/res/main.properties +++ b/res/main.properties @@ -1,6 +1,6 @@ program/mail=mtgerror@yahoo.com program/forum=http://www.slightlymagic.net/forum/viewforum.php?f=26 -program/version=Forge -- official beta: 10/01/17, SVN revision: 310 +program/version=Forge -- official beta: 10/01/17, SVN revision: 311 tokens--file=AllTokens.txt diff --git a/src/forge/CardFactory.java b/src/forge/CardFactory.java index 6cc1b622ada..32286df75d4 100644 --- a/src/forge/CardFactory.java +++ b/src/forge/CardFactory.java @@ -5435,6 +5435,7 @@ public class CardFactory implements NewConstants { // AllZone.GameAction.drawCard(card.getController()); } }; + spell.setStackDescription(card.getName() + " - " + card.getController() + " gains 3 life."); card.clearSpellAbility(); card.addSpellAbility(spell); }//*************** END ************ END ************************** @@ -6962,7 +6963,7 @@ public class CardFactory implements NewConstants { String desc = "You gain 6 life."; if (cardName.equals("Renewed Faith")) - desc = desc + "\r\n\r\nWhen you cycle Renewed Faith, you may gain 2 life.\r\n"; + desc = desc + "\r\nWhen you cycle Renewed Faith, you may gain 2 life."; spell.setDescription(desc); @@ -12840,7 +12841,7 @@ public class CardFactory implements NewConstants { }//resolve() };//SpellAbility ability.setStackDescription("You gain 5 life"); - ability.setDescription("W, Sacrifice Sunbeam Spellbomb: You gain 5 life."); + ability.setStackDescription(card.getName() + " - " + card.getController() + " gains 5 life."); card.addSpellAbility(ability); } //*************** END ************ END ************************** @@ -14978,7 +14979,7 @@ return land.size() > 1 && CardFactoryUtil.AI_isMainPhase(); };//SpellAbility card.addSpellAbility(ability); ability.setDescription("tap: You gain 1 life."); - ability.setStackDescription("Braidwood Cup -"+card.getController() + " gains 1 life."); + ability.setStackDescription("Braidwood Cup - "+card.getController() + " gains 1 life."); ability.setBeforePayMana(new Input_NoCost_TapAbility(ability)); }//*************** END ************ END **************************