From 87d7a2886db24d38174a0d64a8d14f1e146e5991 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Wed, 22 May 2013 22:36:23 +0200 Subject: [PATCH] Fixed tooltip rule text of Copperline George. --- Mage.Sets/src/mage/sets/scarsofmirrodin/CopperlineGorge.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/scarsofmirrodin/CopperlineGorge.java b/Mage.Sets/src/mage/sets/scarsofmirrodin/CopperlineGorge.java index db070610f75..69007ed519c 100644 --- a/Mage.Sets/src/mage/sets/scarsofmirrodin/CopperlineGorge.java +++ b/Mage.Sets/src/mage/sets/scarsofmirrodin/CopperlineGorge.java @@ -54,8 +54,9 @@ public class CopperlineGorge extends CardImpl { super(ownerId, 225, "Copperline Gorge", Rarity.RARE, new CardType[]{CardType.LAND}, null); this.expansionSetCode = "SOM"; + // Copperline Gorge enters the battlefield tapped unless you control two or fewer other lands. Condition controls = new UnlessCondition(new ControlsPermanentCondition(filter, ControlsPermanentCondition.CountType.FEWER_THAN, 4)); - String abilityText = "tap it unless you control fewer than 3 lands"; + String abilityText = "tapped unless you control two or fewer other lands"; this.addAbility(new EntersBattlefieldAbility(new ConditionalOneShotEffect(new TapSourceEffect(), controls, abilityText), abilityText)); this.addAbility(new RedManaAbility()); this.addAbility(new GreenManaAbility());