diff --git a/res/card-pictures.txt b/res/card-pictures.txt index 00c0e15831c..c522cc9336c 100644 --- a/res/card-pictures.txt +++ b/res/card-pictures.txt @@ -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 diff --git a/res/cards.txt b/res/cards.txt index d3d1697010f..e33b91cc5f8 100644 --- a/res/cards.txt +++ b/res/cards.txt @@ -1,3 +1,8 @@ +Savage Twister +X R G +Sorcery +no text + Starstorm X R R Instant diff --git a/src/forge/CardFactory.java b/src/forge/CardFactory.java index eb7eadef296..4f5a36cc015 100644 --- a/src/forge/CardFactory.java +++ b/src/forge/CardFactory.java @@ -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);