diff --git a/.gitattributes b/.gitattributes index e2f2482de0a..7f59769cb7c 100644 --- a/.gitattributes +++ b/.gitattributes @@ -902,6 +902,7 @@ res/cardsfolder/b/benevolent_bodyguard.txt svneol=native#text/plain res/cardsfolder/b/benevolent_unicorn.txt svneol=native#text/plain res/cardsfolder/b/benthic_behemoth.txt svneol=native#text/plain res/cardsfolder/b/benthic_djinn.txt svneol=native#text/plain +res/cardsfolder/b/benthic_explorers.txt -text res/cardsfolder/b/benthicore.txt svneol=native#text/plain res/cardsfolder/b/bequeathal.txt svneol=native#text/plain res/cardsfolder/b/bereavement.txt svneol=native#text/plain diff --git a/res/cardsfolder/b/benthic_explorers.txt b/res/cardsfolder/b/benthic_explorers.txt new file mode 100644 index 00000000000..0fb41939ce8 --- /dev/null +++ b/res/cardsfolder/b/benthic_explorers.txt @@ -0,0 +1,8 @@ +Name:Benthic Explorers +ManaCost:3 U +Types:Creature Merfolk Scout +PT:2/4 +A:AB$ ManaReflected | Cost$ T untapYType<1/Land.OppCtrl/land> | ColorOrType$ Type | Valid$ Defined.Untapped | ReflectProperty$ Produce | SpellDescription$ Add one mana of any type that land could produce to your mana pool. +SVar:Picture:http://www.wizards.com/global/images/magic/general/benthic_explorers.jpg +Oracle:{T}, Untap a tapped land an opponent controls: Add one mana of any type that land could produce to your mana pool. +SetInfo:ALL Common x2 \ No newline at end of file diff --git a/src/main/java/forge/card/cost/CostUntapType.java b/src/main/java/forge/card/cost/CostUntapType.java index 5d0f4bb440d..3c2e3c8cbed 100644 --- a/src/main/java/forge/card/cost/CostUntapType.java +++ b/src/main/java/forge/card/cost/CostUntapType.java @@ -83,7 +83,7 @@ public class CostUntapType extends CostPartWithList { sb.append(Cost.convertAmountTypeToWords(i, this.getAmount(), " tapped " + desc)); - if (this.getType().contains("YouDontCtrl")) { + if (this.getType().contains("OppCtrl")) { sb.append(" an opponent controls"); } else if (this.getType().contains("YouCtrl")) { sb.append(" you control");