mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
convert Deserted Temple, Earthcraft and Filigree Sages to abUntapTgt keyword.
This commit is contained in:
@@ -3,6 +3,7 @@ ManaCost:no cost
|
||||
Types:Land
|
||||
Text:no text
|
||||
K:tap: add 1
|
||||
K:abUntapTgt 1 T:Land:Untap target land.
|
||||
SVar:Rarity:Rare
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/deserted_temple.jpg
|
||||
End
|
||||
|
||||
@@ -2,6 +2,7 @@ Name:Earthcraft
|
||||
ManaCost:1 G
|
||||
Types:Enchantment
|
||||
Text:no text
|
||||
K:abUntapTgt tapXType<1/Creature>:Land.Basic:Untap target basic land.
|
||||
SVar:RemAIDeck:True
|
||||
SVar:Rarity:Rare
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/earthcraft.jpg
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
Name:Filigree Sages
|
||||
ManaCost:3 U
|
||||
Types:Artifact Creature Vedalken Wizard
|
||||
Text:2U: Untap target artifact
|
||||
Text:no text
|
||||
PT:2/3
|
||||
K:abUntapTgt 2 U:Artifact:Untap target artifact.
|
||||
SVar:Rarity:Uncommon
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/filigree_sages.jpg
|
||||
End
|
||||
|
||||
@@ -8164,7 +8164,7 @@ public class CardFactory implements NewConstants {
|
||||
card.addSpellAbility(ability);
|
||||
}//*************** END ************ END **************************
|
||||
|
||||
|
||||
/*
|
||||
//*************** START *********** START **************************
|
||||
else if(cardName.equals("Earthcraft")) {
|
||||
final SpellAbility a1 = new Ability(card, "0") {
|
||||
@@ -8404,7 +8404,7 @@ public class CardFactory implements NewConstants {
|
||||
a3.setStackDescription(card + " - add 30 Squirrel tokens using Squirrel Nest");
|
||||
|
||||
}//*************** END ************ END **************************
|
||||
|
||||
*/
|
||||
|
||||
//*************** START *********** START **************************
|
||||
else if(cardName.equals("Mox Diamond")) {
|
||||
|
||||
@@ -17888,12 +17888,12 @@ public class CardFactory_Creatures {
|
||||
card.addComesIntoPlayCommand(comesIntoPlay);
|
||||
}//*************** END ************ END **************************
|
||||
|
||||
|
||||
/*
|
||||
//*************** START *********** START **************************
|
||||
else if(cardName.equals("Filigree Sages")) {
|
||||
/*
|
||||
* 2U: Untap target artifact.
|
||||
*/
|
||||
*
|
||||
final SpellAbility ability = new Ability(card, "2 U") {
|
||||
@Override
|
||||
public boolean canPlayAI() {
|
||||
@@ -17930,6 +17930,7 @@ public class CardFactory_Creatures {
|
||||
ability.setStackDescription(cardName + " - Untap Target Artifact");
|
||||
ability.setBeforePayMana(CardFactoryUtil.input_targetType(ability, "Artifact"));
|
||||
}//*************** END ************ END **************************
|
||||
*/
|
||||
|
||||
|
||||
//*************** START *********** START **************************
|
||||
|
||||
@@ -1847,6 +1847,7 @@ class CardFactory_Lands {
|
||||
|
||||
}//*************** END ************ END **************************
|
||||
|
||||
/*
|
||||
//*************** START *********** START **************************
|
||||
else if(cardName.equals("Deserted Temple")) {
|
||||
final Ability_Tap ability = new Ability_Tap(card, "1") {
|
||||
@@ -1901,6 +1902,7 @@ class CardFactory_Lands {
|
||||
ability.setBeforePayMana(runtime);
|
||||
|
||||
}//*************** END ************ END **************************
|
||||
*/
|
||||
|
||||
//*************** START *********** START **************************
|
||||
else if(cardName.equals("Academy Ruins")) {
|
||||
|
||||
Reference in New Issue
Block a user