- Converted Magus of the Disk and Nevinyrral's Disk to keyword.

- Added Tranquil Grove.
This commit is contained in:
jendave
2011-08-06 10:50:25 +00:00
parent 763bc22f07
commit 1b4bb610b3
7 changed files with 18 additions and 4 deletions

1
.gitattributes vendored
View File

@@ -4700,6 +4700,7 @@ res/cardsfolder/trained_jackal.txt -text svneol=native#text/plain
res/cardsfolder/trained_orgg.txt -text svneol=native#text/plain
res/cardsfolder/training_grounds.txt -text svneol=native#text/plain
res/cardsfolder/tranquil_domain.txt -text svneol=native#text/plain
res/cardsfolder/tranquil_grove.txt -text svneol=native#text/plain
res/cardsfolder/tranquil_path.txt -text svneol=native#text/plain
res/cardsfolder/tranquil_thicket.txt -text svneol=native#text/plain
res/cardsfolder/tranquility.txt -text svneol=native#text/plain

View File

@@ -4,6 +4,7 @@ Types:Creature Human Wizard
Text:no text
PT:2/4
K:CARDNAME enters the battlefield tapped.
A:AB$DestroyAll | Cost$ 1 T | ValidCards$ Artifact,Creature,Enchantment | SpellDescription$ Destroy all artifacts, creatures, and enchantments.
SVar:Rarity:Rare
SVar:Picture:http://resources.wizards.com/magic/cards/tsp/en-us/card126298.jpg
End

View File

@@ -3,6 +3,7 @@ ManaCost:4
Types:Artifact
Text:no text
K:CARDNAME enters the battlefield tapped.
A:AB$DestroyAll | Cost$ 1 T | ValidCards$ Artifact,Creature,Enchantment | SpellDescription$ Destroy all artifacts, creatures, and enchantments.
SVar:Rarity:Rare
SVar:Picture:http://resources.wizards.com/magic/cards/5e/en-us/card3803.jpg
End

View File

@@ -0,0 +1,8 @@
Name:Tranquil Grove
ManaCost:1 G
Types:Enchantment
Text:no text
A:AB$DestroyAll | Cost$ 1 G G | ValidCards$ Enchantment.Other | SpellDescription$ Destroy all other enchantments.
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/tranquil_grove.jpg
End

View File

@@ -179,8 +179,10 @@ public class AbilityFactory_Bounce {
}
Card choice = null;
if (list.getNotType("Creature").size() == 0)
if (list.getNotType("Creature").size() == 0 && destination != "Exile")
choice = CardFactoryUtil.AI_getBestCreatureToBounce(list); //if the targets are only creatures, take the best
if (list.getNotType("Creature").size() == 0 && destination == "Exile")
choice = CardFactoryUtil.AI_getBestCreature(list); //if the targets are only creatures, take the best
else
choice = CardFactoryUtil.AI_getMostExpensivePermanent(list, af.getHostCard(), true);

View File

@@ -6709,6 +6709,7 @@ public class CardFactory implements NewConstants {
}
//*************** END ************ END *************************
/*
//*************** START *********** START **************************
else if(cardName.equals("Nevinyrral's Disk")) {
SpellAbility summoningSpell = new Spell_Permanent(card) {
@@ -6777,7 +6778,7 @@ public class CardFactory implements NewConstants {
ability.setDescription("1, tap: Destroy all artifacts, creatures, and enchantments.");
ability.setStackDescription("Destroy all artifacts, creatures, and enchantments.");
}//*************** END ************ END **************************
*/
//*************** START *********** START **************************
else if(cardName.equals("Conspiracy") || cardName.equals("Cover of Darkness")

View File

@@ -14735,7 +14735,7 @@ public class CardFactory_Creatures {
}//*************** END ************ END **************************
/*
//*************** START *********** START **************************
else if(cardName.equals("Magus of the Disk")) {
SpellAbility summoningSpell = new Spell_Permanent(card) {
@@ -14803,7 +14803,7 @@ public class CardFactory_Creatures {
ability.setDescription("1, tap: Destroy all artifacts, creatures, and enchantments.");
ability.setStackDescription("Destroy all artifacts, creatures, and enchantments.");
}//*************** END ************ END **************************
*/
//*************** START *********** START **************************
else if(cardName.equals("Stern Judge")) {