forked from External/mage
* Immobilizer Eldrazi - Fixed wrong tooltip text.
This commit is contained in:
parent
3031d68d7f
commit
3d0e998eb4
1 changed files with 2 additions and 1 deletions
|
|
@ -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}"));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue