convert Voltaic Key and Wirewood Lodge to keyword.

This commit is contained in:
jendave
2011-08-06 08:53:40 +00:00
parent 521b226c1a
commit 45846bb505
4 changed files with 9 additions and 3 deletions

View File

@@ -2,6 +2,7 @@ Name:Voltaic Key
ManaCost:1 ManaCost:1
Types:Artifact Types:Artifact
Text:no text Text:no text
K:abUntapTgt 1 T:Artifact:Untap target artifact.
SVar:RemAIDeck:True SVar:RemAIDeck:True
SVar:Rarity:Uncommon SVar:Rarity:Uncommon
SVar:Picture:http://www.wizards.com/global/images/magic/general/voltaic_key.jpg SVar:Picture:http://www.wizards.com/global/images/magic/general/voltaic_key.jpg

View File

@@ -3,6 +3,7 @@ ManaCost:no cost
Types:Land Types:Land
Text:no text Text:no text
K:tap: add 1 K:tap: add 1
K:abUntapTgt G T:Elf:Untap target Elf.
SVar:RemAIDeck:True SVar:RemAIDeck:True
SVar:Rarity:Uncommon SVar:Rarity:Uncommon
SVar:Picture:http://www.wizards.com/global/images/magic/general/wirewood_lodge.jpg SVar:Picture:http://www.wizards.com/global/images/magic/general/wirewood_lodge.jpg

View File

@@ -5787,6 +5787,7 @@ public class CardFactory implements NewConstants {
CardList tmpList = AllZoneUtil.getPlayerCardsInPlay(Constant.Player.Human); CardList tmpList = AllZoneUtil.getPlayerCardsInPlay(Constant.Player.Human);
tmpList = tmpList.getValidCards(Tgts); tmpList = tmpList.getValidCards(Tgts);
tmpList = tmpList.getTargetableCards(card); tmpList = tmpList.getTargetableCards(card);
tmpList = tmpList.filter(AllZoneUtil.tapped);
return tmpList; return tmpList;
} }
@@ -5876,6 +5877,7 @@ public class CardFactory implements NewConstants {
CardList tmpList = AllZoneUtil.getCardsInPlay(); CardList tmpList = AllZoneUtil.getCardsInPlay();
tmpList = tmpList.getValidCards(Tgts); tmpList = tmpList.getValidCards(Tgts);
tmpList = tmpList.getTargetableCards(card); tmpList = tmpList.getTargetableCards(card);
tmpList = tmpList.filter(AllZoneUtil.tapped);
return tmpList; return tmpList;
} }
@@ -5975,6 +5977,7 @@ public class CardFactory implements NewConstants {
CardList tmpList = AllZoneUtil.getPlayerCardsInPlay(Constant.Player.Human); CardList tmpList = AllZoneUtil.getPlayerCardsInPlay(Constant.Player.Human);
tmpList = tmpList.getValidCards(Tgts); tmpList = tmpList.getValidCards(Tgts);
tmpList = tmpList.getTargetableCards(card); tmpList = tmpList.getTargetableCards(card);
tmpList = tmpList.filter(AllZoneUtil.untapped);
return tmpList; return tmpList;
} }
@@ -8568,7 +8571,7 @@ public class CardFactory implements NewConstants {
}//*************** END ************ END ************************** }//*************** END ************ END **************************
/*
//*************** START *********** START ************************** //*************** START *********** START **************************
else if(cardName.equals("Voltaic Key")) { else if(cardName.equals("Voltaic Key")) {
final Ability_Tap ability = new Ability_Tap(card, "1") { final Ability_Tap ability = new Ability_Tap(card, "1") {
@@ -8615,7 +8618,7 @@ public class CardFactory implements NewConstants {
card.addSpellAbility(ability); card.addSpellAbility(ability);
}//*************** END ************ END ************************** }//*************** END ************ END **************************
*/
//*************** START ************ START ************************** //*************** START ************ START **************************
else if(cardName.equals("Ashnod's Transmogrant")) { else if(cardName.equals("Ashnod's Transmogrant")) {

View File

@@ -1790,7 +1790,7 @@ class CardFactory_Lands {
}//*************** END ************ END ************************** }//*************** END ************ END **************************
/*
//*************** START *********** START ************************** //*************** START *********** START **************************
else if(cardName.equals("Wirewood Lodge")) { else if(cardName.equals("Wirewood Lodge")) {
final Ability_Tap ability = new Ability_Tap(card, "G") { final Ability_Tap ability = new Ability_Tap(card, "G") {
@@ -1846,6 +1846,7 @@ class CardFactory_Lands {
ability.setBeforePayMana(runtime); ability.setBeforePayMana(runtime);
}//*************** END ************ END ************************** }//*************** END ************ END **************************
*/
/* /*
//*************** START *********** START ************************** //*************** START *********** START **************************