mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
convert Voltaic Key and Wirewood Lodge to keyword.
This commit is contained in:
@@ -2,6 +2,7 @@ Name:Voltaic Key
|
||||
ManaCost:1
|
||||
Types:Artifact
|
||||
Text:no text
|
||||
K:abUntapTgt 1 T:Artifact:Untap target artifact.
|
||||
SVar:RemAIDeck:True
|
||||
SVar:Rarity:Uncommon
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/voltaic_key.jpg
|
||||
|
||||
@@ -3,6 +3,7 @@ ManaCost:no cost
|
||||
Types:Land
|
||||
Text:no text
|
||||
K:tap: add 1
|
||||
K:abUntapTgt G T:Elf:Untap target Elf.
|
||||
SVar:RemAIDeck:True
|
||||
SVar:Rarity:Uncommon
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/wirewood_lodge.jpg
|
||||
|
||||
@@ -5787,6 +5787,7 @@ public class CardFactory implements NewConstants {
|
||||
CardList tmpList = AllZoneUtil.getPlayerCardsInPlay(Constant.Player.Human);
|
||||
tmpList = tmpList.getValidCards(Tgts);
|
||||
tmpList = tmpList.getTargetableCards(card);
|
||||
tmpList = tmpList.filter(AllZoneUtil.tapped);
|
||||
return tmpList;
|
||||
}
|
||||
|
||||
@@ -5876,6 +5877,7 @@ public class CardFactory implements NewConstants {
|
||||
CardList tmpList = AllZoneUtil.getCardsInPlay();
|
||||
tmpList = tmpList.getValidCards(Tgts);
|
||||
tmpList = tmpList.getTargetableCards(card);
|
||||
tmpList = tmpList.filter(AllZoneUtil.tapped);
|
||||
return tmpList;
|
||||
}
|
||||
|
||||
@@ -5975,6 +5977,7 @@ public class CardFactory implements NewConstants {
|
||||
CardList tmpList = AllZoneUtil.getPlayerCardsInPlay(Constant.Player.Human);
|
||||
tmpList = tmpList.getValidCards(Tgts);
|
||||
tmpList = tmpList.getTargetableCards(card);
|
||||
tmpList = tmpList.filter(AllZoneUtil.untapped);
|
||||
return tmpList;
|
||||
}
|
||||
|
||||
@@ -8568,7 +8571,7 @@ public class CardFactory implements NewConstants {
|
||||
|
||||
}//*************** END ************ END **************************
|
||||
|
||||
|
||||
/*
|
||||
//*************** START *********** START **************************
|
||||
else if(cardName.equals("Voltaic Key")) {
|
||||
final Ability_Tap ability = new Ability_Tap(card, "1") {
|
||||
@@ -8615,7 +8618,7 @@ public class CardFactory implements NewConstants {
|
||||
card.addSpellAbility(ability);
|
||||
|
||||
}//*************** END ************ END **************************
|
||||
|
||||
*/
|
||||
|
||||
//*************** START ************ START **************************
|
||||
else if(cardName.equals("Ashnod's Transmogrant")) {
|
||||
|
||||
@@ -1790,7 +1790,7 @@ class CardFactory_Lands {
|
||||
|
||||
}//*************** END ************ END **************************
|
||||
|
||||
|
||||
/*
|
||||
//*************** START *********** START **************************
|
||||
else if(cardName.equals("Wirewood Lodge")) {
|
||||
final Ability_Tap ability = new Ability_Tap(card, "G") {
|
||||
@@ -1846,6 +1846,7 @@ class CardFactory_Lands {
|
||||
ability.setBeforePayMana(runtime);
|
||||
|
||||
}//*************** END ************ END **************************
|
||||
*/
|
||||
|
||||
/*
|
||||
//*************** START *********** START **************************
|
||||
|
||||
Reference in New Issue
Block a user