From 6802ebc537a951190ccda13edcdba2cd3303083c Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Thu, 7 Dec 2017 05:44:16 +0400 Subject: [PATCH] Fixed #4226 - wrong ability text in Drakestown Forgotten --- Mage.Sets/src/mage/cards/d/DrakestownForgotten.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/d/DrakestownForgotten.java b/Mage.Sets/src/mage/cards/d/DrakestownForgotten.java index a74dc5d4fd..60ecd71c8a 100644 --- a/Mage.Sets/src/mage/cards/d/DrakestownForgotten.java +++ b/Mage.Sets/src/mage/cards/d/DrakestownForgotten.java @@ -64,8 +64,8 @@ public class DrakestownForgotten extends CardImpl { new AddCountersSourceEffect( CounterType.P1P1.createInstance(), new CardsInAllGraveyardsCount(new FilterCreatureCard()), - false), - "with X +1/+1 counters on it, where X is the number of other creatures on the battlefield")); + false), + "with X +1/+1 counters on it, where X is the number of creature cards in all graveyards")); // {2}{B}, Remove a +1/+1 counter from Drakestown Forgotten: Target creature gets -1/-1 until end of turn. Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new BoostTargetEffect(-1, -1, Duration.EndOfTurn), new ManaCostsImpl<>("{2}{B}"));