mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
add Gauntlet of Might (from original base Alpha)
This commit is contained in:
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -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
|
||||
|
||||
9
res/cardsfolder/gauntlet_of_might.txt
Normal file
9
res/cardsfolder/gauntlet_of_might.txt
Normal 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
|
||||
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user