mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
- Add LQ pic urls for the 7 new cards that were added in r258.
- Added a spell.setDescription("Counter target spell."); to the code object for Counterspell + Cancel + Last Word + Traumatic Visions. Removed the spell description for these 4 cards from their entries in the cards.txt file. "Last Word can't be countered by spells or abilities." is now part of the spell.setDescription() for this code object. Everything works and looks nice.
This commit is contained in:
@@ -18,6 +18,13 @@ forest.jpg http://resources.wizards.com/magic/cards/unh/en-us/card73946.jpg
|
||||
forest1.jpg http://gatherer.wizards.com/handlers/image.ashx?type=card&multiverseid=2748
|
||||
forest2.jpg http://gatherer.wizards.com/handlers/image.ashx?type=card&multiverseid=587
|
||||
forest3.jpg http://gatherer.wizards.com/handlers/image.ashx?type=card&multiverseid=586
|
||||
collective_restraint.jpg http://www.wizards.com/global/images/magic/general/collective_restraint.jpg
|
||||
force_spike.jpg http://www.wizards.com/global/images/magic/general/force_spike.jpg
|
||||
daze.jpg http://www.wizards.com/global/images/magic/general/daze.jpg
|
||||
convolute.jpg http://www.wizards.com/global/images/magic/general/convolute.jpg
|
||||
runeboggle.jpg http://www.wizards.com/global/images/magic/general/runeboggle.jpg
|
||||
spell_snip.jpg http://www.wizards.com/global/images/magic/general/spell_snip.jpg
|
||||
mana_leak.jpg http://www.wizards.com/global/images/magic/general/mana_leak.jpg
|
||||
windborn_muse.jpg http://www.wizards.com/global/images/magic/general/windborn_muse.jpg
|
||||
ghostly_prison.jpg http://www.wizards.com/global/images/magic/general/ghostly_prison.jpg
|
||||
propaganda.jpg http://www.wizards.com/global/images/magic/general/propaganda.jpg
|
||||
|
||||
@@ -1400,7 +1400,7 @@ tap: add B
|
||||
Traumatic Visions
|
||||
3 U U
|
||||
Instant
|
||||
Counter target spell.
|
||||
no text
|
||||
TypeCycling:Basic:1 U
|
||||
|
||||
Fiery Fall
|
||||
@@ -4061,7 +4061,7 @@ tap: add 2
|
||||
Last Word
|
||||
2 U U
|
||||
Instant
|
||||
Last Word can't be countered by spells or abilities. Counter target spell.
|
||||
no text
|
||||
This card can't be countered.
|
||||
|
||||
Composite Golem
|
||||
@@ -5783,7 +5783,7 @@ Destroy all non-land permanents.
|
||||
Cancel
|
||||
1 U U
|
||||
Instant
|
||||
Counter target spell.
|
||||
no text
|
||||
|
||||
Zombie Goliath
|
||||
4 B
|
||||
@@ -15136,7 +15136,7 @@ Counter target spell. If that spell is countered this way, put it into its owner
|
||||
Counterspell
|
||||
U U
|
||||
Instant
|
||||
Counter target spell.
|
||||
no text
|
||||
|
||||
Regress
|
||||
2 U
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
program/mail=mtgerror@yahoo.com
|
||||
program/forum=http://www.slightlymagic.net/forum/viewforum.php?f=26
|
||||
program/version=Forge -- official beta: 10/01/01, SVN revision: 258
|
||||
program/version=Forge -- official beta: 10/01/01, SVN revision: 261
|
||||
|
||||
tokens--file=AllTokens.txt
|
||||
|
||||
|
||||
@@ -9474,6 +9474,13 @@ public class CardFactory implements NewConstants {
|
||||
}
|
||||
};
|
||||
card.clearSpellAbility();
|
||||
String desc = "";
|
||||
if(cardName.equals("Last Word"))
|
||||
{
|
||||
desc = "Last Word can't be countered by spells or abilities.\r\n";
|
||||
}
|
||||
spell.setDescription(desc + "Counter target spell.");
|
||||
spell.setStackDescription(card.getName() + " - Counters target spell.");
|
||||
card.addSpellAbility(spell);
|
||||
}//*************** END ************ END **************************
|
||||
|
||||
|
||||
Reference in New Issue
Block a user