Modified the card object for Starstorm and it will now include the similar spell Savage Twister. I also included the LQ pic url.

This commit is contained in:
jendave
2011-08-06 03:37:27 +00:00
parent b2b64dfffe
commit 9f5f1d0021
3 changed files with 9 additions and 3 deletions

View File

@@ -17354,7 +17354,7 @@ public class CardFactory implements NewConstants {
//*************** START *********** START **************************
else if (cardName.equals("Starstorm"))
else if (cardName.equals("Starstorm") || cardName.equals("Savage Twister"))
{
final SpellAbility spell = new Spell(card)
{
@@ -17398,8 +17398,8 @@ public class CardFactory implements NewConstants {
return humanAll.size() > (compAll.size() + 2);
}
};
spell.setDescription("Starstorm deals X damage to each creature.");
spell.setStackDescription("Starstorm - deals X damage to each creature.");
spell.setDescription(cardName + " deals X damage to each creature.");
spell.setStackDescription(cardName + " - deals X damage to each creature.");
card.clearSpellAbility();
card.addSpellAbility(spell);