- Rejuvenate: was bugged as all get out. It had no life gain or cycling. Repaired both by modifying cards.txt and added card name to the list of spells covered in the Renewed Faith code block.

- Additional work to Renewed Faith. Cycling now keyword + command.
This commit is contained in:
jendave
2011-08-06 02:53:11 +00:00
parent 717bba9811
commit f7f3692572
2 changed files with 5 additions and 3 deletions

View File

@@ -6765,7 +6765,7 @@ public class CardFactory implements NewConstants {
//*************** START *********** START **************************
else if(cardName.equals("Renewed Faith") || cardName.equals("Dosan's Oldest Chant") || cardName.equals("Nourish"))
else if(cardName.equals("Renewed Faith") || cardName.equals("Rejuvenate") || cardName.equals("Dosan's Oldest Chant") || cardName.equals("Nourish"))
{
SpellAbility spell = new Spell(card)
{
@@ -6793,7 +6793,7 @@ public class CardFactory implements NewConstants {
card.clearSpellAbility();
card.addSpellAbility(spell);
if (cardName.equals("Renewed Faith")) {
card.addSpellAbility(CardFactoryUtil.ability_cycle(card, "1 W"));
// card.addSpellAbility(CardFactoryUtil.ability_cycle(card, "1 W"));
card.addCycleCommand(new Command(){
private static final long serialVersionUID = 7699412574052780825L;