add Gauntlet of Might (from original base Alpha)

This commit is contained in:
jendave
2011-08-06 13:30:27 +00:00
parent 52b3d12714
commit d14477fee0
3 changed files with 17 additions and 0 deletions

1
.gitattributes vendored
View File

@@ -1851,6 +1851,7 @@ res/cardsfolder/gate_hound.txt -text svneol=native#text/plain
res/cardsfolder/gate_to_phyrexia.txt -text svneol=native#text/plain
res/cardsfolder/gatekeeper_of_malakir.txt -text svneol=native#text/plain
res/cardsfolder/gatherer_of_graces.txt -text svneol=native#text/plain
res/cardsfolder/gauntlet_of_might.txt -text svneol=native#text/plain
res/cardsfolder/gelectrode.txt -text svneol=native#text/plain
res/cardsfolder/gemhide_sliver.txt -text svneol=native#text/plain
res/cardsfolder/gemstone_array.txt -text svneol=native#text/plain

View File

@@ -0,0 +1,9 @@
Name:Gauntlet of Might
ManaCost:4
Types:Artifact
Text:Whenever a Mountain is tapped for mana, its controller adds to his or her mana pool (in addition to the mana the land produces).
K:stPumpAll:Creature.Red:1/1:No Condition:Red creatures get +1/+1.
SVar:RemAIDeck:True
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/gauntlet_of_might.jpg
End

View File

@@ -253,6 +253,13 @@ abstract public class Ability_Mana extends SpellAbility implements java.io.Seria
}
}
if(sourceCard.getType().contains("Mountain") && AllZoneUtil.isCardInPlay("Gauntlet of Might")) {
CardList list = AllZoneUtil.getCardsInPlay("Gauntlet of Might");
for(int i = 0; i < list.size(); i++) {
AllZone.ManaPool.addManaToFloating("R", list.get(i));
}
}
if(sourceCard.isLand() && sourceCard.isEnchantedBy("Overgrowth")) {
if(sourceCard.getController().equals(AllZone.HumanPlayer)) {
AllZone.ManaPool.addExtrinsicKeyword("ManaPool:G");