From 82d7626bb71f3d274b6d66e0d2afaef89ce976b6 Mon Sep 17 00:00:00 2001 From: jendave Date: Sat, 6 Aug 2011 02:51:46 +0000 Subject: [PATCH] - Fixed Elvish Fury, spell description is now displayed only once, changed cards.txt - Knight of the Reliquary: replaced the "T" with "tap" in the ability description, now consistent with other cards and I also added a blank line, changed CardFactory_Creatures.java - Brion Stoutarm: removed the extra space at the end of the ability description, changed CardFactory_Creatures.java - Converted Expunge and Terror to keyword, changed cards.txt and CardFactory.java --- res/cards.txt | 5 ++++- src/forge/CardFactory.java | 6 ++++-- src/forge/CardFactory_Creatures.java | 4 ++-- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/res/cards.txt b/res/cards.txt index 806b661d309..dcd5034363a 100644 --- a/res/cards.txt +++ b/res/cards.txt @@ -11757,6 +11757,8 @@ Expunge 2 B Instant Destroy target nonartifact, nonblack creature. It can't be regenerated. +spDestroyTgt:Creature.nonBlack+nonArtifact:NoRegen +Cycling:2 Flying Men U @@ -12373,7 +12375,7 @@ Until end of turn, creatures you control gain trample and get +1/+1 for each bas Elvish Fury G Instant -Buyback 4 #(If you pay an additional 4 as you play this spell, put it into your hand instead of your graveyard as part of the spell's resolution.)# Target creature gets +2/+2 until end of turn. +no text Primal Boost 2 G @@ -13165,6 +13167,7 @@ Terror 1 B Instant Destroy target nonartifact, nonblack creature. It can't be regenerated. +spDestroyTgt:Creature.nonArtifact+nonBlack:NoRegen Aven Fisher 3 U diff --git a/src/forge/CardFactory.java b/src/forge/CardFactory.java index fd85cd017d4..8f1401e59b5 100644 --- a/src/forge/CardFactory.java +++ b/src/forge/CardFactory.java @@ -3477,6 +3477,7 @@ public class CardFactory implements NewConstants { }//*************** END ************ END ************************** +/* //*************** START *********** START ************************** else if(cardName.equals("Terror")) { @@ -3542,9 +3543,10 @@ public class CardFactory implements NewConstants { spell.setBeforePayMana(runtime); card.addSpellAbility(spell); }//*************** END ************ END ************************** +*/ - +/* //*************** START *********** START ************************** else if(cardName.equals("Expunge")) { @@ -3614,7 +3616,7 @@ public class CardFactory implements NewConstants { card.addSpellAbility(CardFactoryUtil.ability_cycle(card, "2")); }//*************** END ************ END ************************** - +*/ //*************** START *********** START ************************** diff --git a/src/forge/CardFactory_Creatures.java b/src/forge/CardFactory_Creatures.java index 2c32a7221cc..ce355f34f12 100644 --- a/src/forge/CardFactory_Creatures.java +++ b/src/forge/CardFactory_Creatures.java @@ -11049,7 +11049,7 @@ public class CardFactory_Creatures { };//ability card.addSpellAbility(ability); - ability.setDescription("R, tap, Sacrifice a creature other than Brion Stoutarm: Brion Stoutarm deals damage equal to the sacrificed creature's power to target player ."); + ability.setDescription("R, tap, Sacrifice a creature other than Brion Stoutarm: Brion Stoutarm deals damage equal to the sacrificed creature's power to target player."); ability.setStackDescription("Brion Stoutarm deals damage equal to sacrificed creature's power"); }//*************** END ************ END ************************** @@ -11472,7 +11472,7 @@ public class CardFactory_Creatures { } }; ability.setBeforePayMana(runtime); - ability.setDescription("T, Sacrifice a Forest or Plains: Search your library for a land card, put it into play, then shuffle your library."); + ability.setDescription("\r\n" + "tap, Sacrifice a Forest or Plains: Search your library for a land card, put it into play, then shuffle your library."); ability.setStackDescription(card.getName() + " - Search your library for a card and put it into play, then shuffle your library"); card.addSpellAbility(ability);