mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 20:58:03 +00:00
- Converted Magus of the Disk and Nevinyrral's Disk to keyword.
- Added Tranquil Grove.
This commit is contained in:
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
8
res/cardsfolder/tranquil_grove.txt
Normal file
8
res/cardsfolder/tranquil_grove.txt
Normal 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
|
||||
@@ -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);
|
||||
|
||||
|
||||
@@ -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")
|
||||
|
||||
@@ -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")) {
|
||||
|
||||
Reference in New Issue
Block a user