diff --git a/res/card-pictures.txt b/res/card-pictures.txt index 5bc7fb43e9e..244b8675c1e 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 +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 angelsong.jpg http://www.wizards.com/global/images/magic/general/angelsong.jpg lull.jpg http://www.wizards.com/global/images/magic/general/lull.jpg diff --git a/res/cards.txt b/res/cards.txt index d0220b3e9e8..041a757af16 100644 --- a/res/cards.txt +++ b/res/cards.txt @@ -1,3 +1,8 @@ +Squall Line +X G G +Instant +no text + Borrowing the East Wind X G G Sorcery diff --git a/src/forge/CardFactory.java b/src/forge/CardFactory.java index d9a873154c3..8b5617fcc48 100644 --- a/src/forge/CardFactory.java +++ b/src/forge/CardFactory.java @@ -16840,7 +16840,7 @@ public class CardFactory implements NewConstants { //*************** START *********** START ************************** - else if (cardName.equals("Hurricane")) + else if (cardName.equals("Hurricane") || cardName.equals("Squall Line")) { final SpellAbility spell = new Spell(card) { @@ -16892,7 +16892,7 @@ public class CardFactory implements NewConstants { return humanFliers.size() > (compFliers.size() + 2) && AllZone.Computer_Life.getLife() > maxX + 3; } }; - spell.setDescription("Hurricane deals X damage to each creature with flying and each player."); + spell.setDescription(cardName + " deals X damage to each creature with flying and each player."); spell.setStackDescription(card + " - deals X damage to each creature with flying and each player."); card.clearSpellAbility(); @@ -16900,6 +16900,7 @@ public class CardFactory implements NewConstants { } //*************** END ************ END ************************** + //*************** START *********** START ************************** else if (cardName.equals("Earthquake") || cardName.equals("Rolling Earthquake") || cardName.equals("Fault Line")) {