mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-15 18:28:00 +00:00
- 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
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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 **************************
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user