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

@@ -38,6 +38,7 @@ snow_covered_mountain.jpg http://www.wizards.com/global/images/magic/gene
snow_covered_mountain1.jpg http://www.wizards.com/global/images/magic/general/snow_covered_mountain.jpg snow_covered_mountain1.jpg http://www.wizards.com/global/images/magic/general/snow_covered_mountain.jpg
snow_covered_mountain2.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg snow_covered_mountain2.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg
snow_covered_mountain3.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg snow_covered_mountain3.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg
savage_twister.jpg http://www.wizards.com/global/images/magic/general/savage_twister.jpg
starstorm.jpg http://www.wizards.com/global/images/magic/general/starstorm.jpg starstorm.jpg http://www.wizards.com/global/images/magic/general/starstorm.jpg
squall_line.jpg http://www.wizards.com/global/images/magic/general/squall_line.jpg squall_line.jpg http://www.wizards.com/global/images/magic/general/squall_line.jpg
borrowing_the_east_wind.jpg http://serv3.tcgimages.eu/img/cards/Portal_Three_Kingdoms/borrowing_the_east_wind.jpg borrowing_the_east_wind.jpg http://serv3.tcgimages.eu/img/cards/Portal_Three_Kingdoms/borrowing_the_east_wind.jpg

View File

@@ -1,3 +1,8 @@
Savage Twister
X R G
Sorcery
no text
Starstorm Starstorm
X R R X R R
Instant Instant

View File

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