diff --git a/res/card-pictures.txt b/res/card-pictures.txt index 553c4e0fb06..cf732d165c3 100644 --- a/res/card-pictures.txt +++ b/res/card-pictures.txt @@ -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 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 +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 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 diff --git a/res/cards.txt b/res/cards.txt index c1854ecb9bc..8f303fcee4b 100644 --- a/res/cards.txt +++ b/res/cards.txt @@ -5155,7 +5155,7 @@ Double Strike Sarpadian Empires, Vol. VII 3 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 3 U diff --git a/res/main.properties b/res/main.properties index c5d12c51022..e6aea9d48d8 100644 --- a/res/main.properties +++ b/res/main.properties @@ -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: 267 +program/version=Forge -- official beta: 10/01/01, SVN revision: 268 tokens--file=AllTokens.txt diff --git a/src/forge/CardFactory.java b/src/forge/CardFactory.java index fd6fa3db3b0..ee95ed1cd0c 100644 --- a/src/forge/CardFactory.java +++ b/src/forge/CardFactory.java @@ -3841,7 +3841,8 @@ public class CardFactory implements NewConstants { }//*************** END ************ END ************************** - //*************** START *********** START ************************** + + //*************** START *********** START ************************** 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"); card.addSpellAbility(a1); } @@ -3952,10 +3953,12 @@ public class CardFactory implements NewConstants { 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); - }//*************** END ************ END ************************** - + }//*************** END ************ END **************************