- Converted Tormod's Crypt to script.

This commit is contained in:
jendave
2011-08-06 21:28:07 +00:00
parent ee86f9dc16
commit 31b6f33de5
2 changed files with 5 additions and 3 deletions

View File

@@ -2,6 +2,8 @@ Name:Tormod's Crypt
ManaCost:0
Types:Artifact
Text:no text
A:AB$ ChangeZoneAll | Cost$ T Exile<1/CARDNAME> | Origin$ Graveyard | Destination$ Exile | ValidTgts$ Player | TgtPrompt$ Select target player | ChangeType$ Card | Shuffle$ True | SpellDescription$ Exile all cards from target player's graveyard.
SVar:RemRandomDeck:True
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/tormods_crypt.jpg
SetInfo:DRK|Rare|http://magiccards.info/scans/en/dk/109.jpg

View File

@@ -5905,12 +5905,12 @@ public class CardFactory implements NewConstants {
card.addComesIntoPlayCommand(comesIntoPlay);
}//*************** END ************ END **************************
/*
//*************** START *********** START **************************
else if(cardName.equals("Tormod's Crypt")) {
/*
* Tap, Sacrifice Tormod's Crypt: Exile all cards from target player's graveyard.
*/
*
Target target = new Target(card,"Select target player", new String[] {"Player"});
Cost abCost = new Cost("T Sac<1/CARDNAME>", cardName, true);
final Ability_Activated ability = new Ability_Activated(card, abCost, target) {
@@ -5943,7 +5943,7 @@ public class CardFactory implements NewConstants {
ability.setStackDescription(card+" - Exile all cards from target player's graveyard.");
card.addSpellAbility(ability);
}//*************** END ************ END **************************
*/
//*************** START *********** START **************************
else if(cardName.equals("Mirror Universe")) {