- Add LQ pic urls for the 7 new cards that were added in r258.

- Added a spell.setDescription("Counter target spell."); to the code object for Counterspell + Cancel + Last Word + Traumatic Visions. Removed the spell description for these 4 cards from their entries in the cards.txt file. "Last Word can't be countered by spells or abilities." is now part of the spell.setDescription() for this code object. Everything works and looks nice.
This commit is contained in:
jendave
2011-08-06 03:10:42 +00:00
parent 5bbbb07873
commit f3bcef6341
4 changed files with 19 additions and 5 deletions

View File

@@ -9474,6 +9474,13 @@ public class CardFactory implements NewConstants {
}
};
card.clearSpellAbility();
String desc = "";
if(cardName.equals("Last Word"))
{
desc = "Last Word can't be countered by spells or abilities.\r\n";
}
spell.setDescription(desc + "Counter target spell.");
spell.setStackDescription(card.getName() + " - Counters target spell.");
card.addSpellAbility(spell);
}//*************** END ************ END **************************