mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
- Added Rofellos, Llanowar Emissary and it's LQ pic url.
- Added/Improved the setStackDescription for several of the life gaining spells.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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 **************************
|
||||
|
||||
|
||||
Reference in New Issue
Block a user