From 3d0e998eb4046e35a6b6e97221f18cced134fd71 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Wed, 13 Jan 2016 17:27:25 +0100 Subject: [PATCH] * Immobilizer Eldrazi - Fixed wrong tooltip text. --- .../src/mage/sets/oathofthegatewatch/ImmobilizerEldrazi.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/oathofthegatewatch/ImmobilizerEldrazi.java b/Mage.Sets/src/mage/sets/oathofthegatewatch/ImmobilizerEldrazi.java index 589aaf6289f..b07a1b4475b 100644 --- a/Mage.Sets/src/mage/sets/oathofthegatewatch/ImmobilizerEldrazi.java +++ b/Mage.Sets/src/mage/sets/oathofthegatewatch/ImmobilizerEldrazi.java @@ -50,7 +50,7 @@ import mage.game.Game; */ public class ImmobilizerEldrazi extends CardImpl { - private final static FilterCreaturePermanent filter = new FilterCreaturePermanent(); + private final static FilterCreaturePermanent filter = new FilterCreaturePermanent("Each creature with toughness greater than its power"); static { filter.add(new ImmobilizerEldraziPredicate()); @@ -66,6 +66,7 @@ public class ImmobilizerEldrazi extends CardImpl { // Devoid this.addAbility(new DevoidAbility(this.color)); + // {2}{C}: Each creature with toughness greater than its power can't block this turn. Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new CantBlockAllEffect(filter, Duration.EndOfTurn), new ManaCostsImpl("{2}{C}"));