- Added LQ pic url for Time Vault.

- Fixed the card text that is displayed for the card Sarpadian Empires, Vol. VII.
This commit is contained in:
jendave
2011-08-06 03:11:56 +00:00
parent 95298939de
commit 678d2ffa07
4 changed files with 10 additions and 6 deletions

View File

@@ -18,6 +18,7 @@ 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 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 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 forest3.jpg http://gatherer.wizards.com/handlers/image.ashx?type=card&multiverseid=586
time_vault.jpg http://www.wizards.com/global/images/magic/general/time_vault.jpg
mana_tithe.jpg http://www.wizards.com/global/images/magic/general/mana_tithe.jpg mana_tithe.jpg http://www.wizards.com/global/images/magic/general/mana_tithe.jpg
miscalculation.jpg http://www.wizards.com/global/images/magic/general/miscalculation.jpg miscalculation.jpg http://www.wizards.com/global/images/magic/general/miscalculation.jpg
eyeblights_ending.jpg http://www.wizards.com/global/images/magic/general/eyeblights_ending.jpg eyeblights_ending.jpg http://www.wizards.com/global/images/magic/general/eyeblights_ending.jpg

View File

@@ -5155,7 +5155,7 @@ Double Strike
Sarpadian Empires, Vol. VII Sarpadian Empires, Vol. VII
3 3
Artifact Artifact
As Sarpadian Empires, Vol. VII enters the battlefield, choose white Citizen, blue Camarid, black Thrull, red Goblin, or green Saproling. no text
Airborne Aid Airborne Aid
3 U 3 U

View File

@@ -1,6 +1,6 @@
program/mail=mtgerror@yahoo.com program/mail=mtgerror@yahoo.com
program/forum=http://www.slightlymagic.net/forum/viewforum.php?f=26 program/forum=http://www.slightlymagic.net/forum/viewforum.php?f=26
program/version=Forge -- official beta: 10/01/01, SVN revision: 267 program/version=Forge -- official beta: 10/01/01, SVN revision: 268
tokens--file=AllTokens.txt tokens--file=AllTokens.txt

View File

@@ -3841,7 +3841,8 @@ public class CardFactory implements NewConstants {
}//*************** END ************ END ************************** }//*************** END ************ END **************************
//*************** START *********** START **************************
//*************** START *********** START **************************
else if(cardName.equals("Sarpadian Empires, Vol. VII")) else if(cardName.equals("Sarpadian Empires, Vol. VII"))
{ {
@@ -3937,7 +3938,7 @@ public class CardFactory implements NewConstants {
} }
}; };
a1.setDescription("3, Tap: Put a 1/1 creature token of the chosen color and type onto the battlefield."); // a1.setDescription("3, Tap: Put a 1/1 creature token of the chosen color and type onto the battlefield.");
a1.setStackDescription(card.getName() + " - " + card.getController() + " puts a 1/1" + t + " token into play"); a1.setStackDescription(card.getName() + " - " + card.getController() + " puts a 1/1" + t + " token into play");
card.addSpellAbility(a1); card.addSpellAbility(a1);
} }
@@ -3952,10 +3953,12 @@ public class CardFactory implements NewConstants {
AllZone.Stack.add(ability); AllZone.Stack.add(ability);
} }
}; };
card.setText("As Sarpadian Empires, Vol. VII enters the battlefield, choose white Citizen, blue Camarid, black Thrull, red Goblin, or green Saproling.\r\n" +
"3, Tap: Put a 1/1 creature token of the chosen color and type onto the battlefield.\r\n" +
card.getText()); // In the slight chance that there may be a need to add a note to this card.
card.addComesIntoPlayCommand(intoPlay); card.addComesIntoPlayCommand(intoPlay);
}//*************** END ************ END ************************** }//*************** END ************ END **************************