From 267aee43a5e10ae52294610d57356cc123bcf077 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 8 Jan 2017 13:07:03 +0100 Subject: [PATCH] * Implement of Ferocity - Fixed that the activated ability added the wrong counter type. --- Mage.Sets/src/mage/cards/i/ImplementOfFerocity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/i/ImplementOfFerocity.java b/Mage.Sets/src/mage/cards/i/ImplementOfFerocity.java index a04218163a5..feb953a3544 100644 --- a/Mage.Sets/src/mage/cards/i/ImplementOfFerocity.java +++ b/Mage.Sets/src/mage/cards/i/ImplementOfFerocity.java @@ -52,7 +52,7 @@ public class ImplementOfFerocity extends CardImpl { super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{1}"); // {G}, Sacrifice Implement of Ferocity: Put a +1/+1 counter on target creature. Activate this ability only any time you could cast a sorcery. - Ability ability = new ActivateAsSorceryActivatedAbility(Zone.BATTLEFIELD, new AddCountersTargetEffect(CounterType.UNITY.createInstance()),new ManaCostsImpl("{G}")); + Ability ability = new ActivateAsSorceryActivatedAbility(Zone.BATTLEFIELD, new AddCountersTargetEffect(CounterType.P1P1.createInstance()), new ManaCostsImpl("{G}")); ability.addCost(new SacrificeSourceCost()); ability.addTarget(new TargetCreaturePermanent()); this.addAbility(ability);