mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 20:58:03 +00:00
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:
@@ -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_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
|
||||
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
|
||||
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
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
Savage Twister
|
||||
X R G
|
||||
Sorcery
|
||||
no text
|
||||
|
||||
Starstorm
|
||||
X R R
|
||||
Instant
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user