From 8c6cacd51b0d792eec5580c4c54c39195e93a594 Mon Sep 17 00:00:00 2001 From: jendave Date: Sat, 6 Aug 2011 03:24:38 +0000 Subject: [PATCH] - Added the missing braces to the else block in the abPump code. abPump cards will now display "gains" once and not twice. Thanks for the pointer Rob. - Added several of the new abDamageTgt cards. These several cards displays the mana/tap cost. Cards added include: Flamewave Invoker; Granite Shard; Storm Spirit; Telim'Tor's Darts; Thornscape Master. - Added Flying to Storm Spirit. - Fixed the card name for Telim'Tor's Darts. - Added the LQ pic urls for these new 15 cards. --- res/card-pictures.txt | 15 ++++++++++++++ res/cards.txt | 40 ++++++++++++++++++++++++++++++++++++++ src/forge/CardFactory.java | 2 ++ 3 files changed, 57 insertions(+) diff --git a/res/card-pictures.txt b/res/card-pictures.txt index a52d7e75cba..306ddef8137 100644 --- a/res/card-pictures.txt +++ b/res/card-pictures.txt @@ -38,6 +38,21 @@ 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 +abyssal_hunter.jpg http://www.wizards.com/global/images/magic/general/abyssal_hunter.jpg +brothers_of_fire.jpg http://www.wizards.com/global/images/magic/general/brothers_of_fire.jpg +fireslinger.jpg http://www.wizards.com/global/images/magic/general/fireslinger.jpg +flamewave_invoker.jpg http://www.wizards.com/global/images/magic/general/flamewave_invoker.jpg +granger_guildmage.jpg http://www.wizards.com/global/images/magic/general/granger_guildmage.jpg +granite_shard.jpg http://www.wizards.com/global/images/magic/general/granite_shard.jpg +psionic_entity.jpg http://www.wizards.com/global/images/magic/general/psionic_entity.jpg +rakdos_ickspitter.jpg http://www.wizards.com/global/images/magic/general/rakdos_ickspitter.jpg +reckless_embermage.jpg http://www.wizards.com/global/images/magic/general/reckless_embermage.jpg +spikeshot_goblin.jpg http://www.wizards.com/global/images/magic/general/spikeshot_goblin.jpg +storm_spirit.jpg http://www.wizards.com/global/images/magic/general/storm_spirit.jpg +stun_sniper.jpg http://www.wizards.com/global/images/magic/general/stun_sniper.jpg +sunflare_shaman.jpg http://www.wizards.com/global/images/magic/general/sunflare_shaman.jpg +telimtors_darts.jpg http://www.wizards.com/global/images/magic/general/telimtors_darts.jpg +thornscape_master.jpg http://www.wizards.com/global/images/magic/general/thornscape_master.jpg silverstorm_samurai.jpg http://www.wizards.com/global/images/magic/general/silverstorm_samurai.jpg samurai_enforcers.jpg http://www.wizards.com/global/images/magic/general/samurai_enforcers.jpg ronin_houndmaster.jpg http://www.wizards.com/global/images/magic/general/ronin_houndmaster.jpg diff --git a/res/cards.txt b/res/cards.txt index a2546f61252..01db37f97c9 100644 --- a/res/cards.txt +++ b/res/cards.txt @@ -1,3 +1,43 @@ +Flamewave Invoker +2 R +Creature Goblin Mutant +no text +2/2 +abDamageTgtP 7 R:5 + +Granite Shard +3 +Artifact +no text +abDamageTgtCP 3 T:1 +abDamageTgtCP R T:1 + +Storm Spirit +3 W U G +Creature Elemental Spirit +no text +3/3 +Flying +abDamageTgtC T:2 + +Telim'Tor's Darts +2 +Artifact +no text +abDamageTgtP 2 T:1 + +Thornscape Master +2 G G +Creature Human Wizard +no text +2/2 +abDamageTgtC R R T:2 +abPumpTgt W W T:Protection from white +abPumpTgt W W T:Protection from blue +abPumpTgt W W T:Protection from black +abPumpTgt W W T:Protection from red +abPumpTgt W W T:Protection from green + Silverstorm Samurai 4 W W Creature Fox Samurai diff --git a/src/forge/CardFactory.java b/src/forge/CardFactory.java index 94368035176..c488578ebd1 100644 --- a/src/forge/CardFactory.java +++ b/src/forge/CardFactory.java @@ -956,8 +956,10 @@ public class CardFactory implements NewConstants { if (Tgt[0] == true) sbD.append("Target creature gains "); else + { sbD.append(cardName); sbD.append(" gains "); + } sbD.append(Keyword[0]); sbD.append(" until end of turn.");