mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
- 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.
This commit is contained in:
@@ -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_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
|
||||||
|
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
|
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
|
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
|
ronin_houndmaster.jpg http://www.wizards.com/global/images/magic/general/ronin_houndmaster.jpg
|
||||||
|
|||||||
@@ -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
|
Silverstorm Samurai
|
||||||
4 W W
|
4 W W
|
||||||
Creature Fox Samurai
|
Creature Fox Samurai
|
||||||
|
|||||||
@@ -956,8 +956,10 @@ public class CardFactory implements NewConstants {
|
|||||||
if (Tgt[0] == true)
|
if (Tgt[0] == true)
|
||||||
sbD.append("Target creature gains ");
|
sbD.append("Target creature gains ");
|
||||||
else
|
else
|
||||||
|
{
|
||||||
sbD.append(cardName);
|
sbD.append(cardName);
|
||||||
sbD.append(" gains ");
|
sbD.append(" gains ");
|
||||||
|
}
|
||||||
|
|
||||||
sbD.append(Keyword[0]);
|
sbD.append(Keyword[0]);
|
||||||
sbD.append(" until end of turn.");
|
sbD.append(" until end of turn.");
|
||||||
|
|||||||
Reference in New Issue
Block a user