From 089996edceb4ba540249b77948aa2608475e81f6 Mon Sep 17 00:00:00 2001 From: LevelX2 <ludwig.hirth@online.de> Date: Fri, 17 Jun 2016 14:32:29 +0200 Subject: [PATCH] Braids, Cabal Minion - Fixed tooltip rule text. --- .../mage/sets/odyssey/BraidsCabalMinion.java | 23 +++++++++---------- 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/Mage.Sets/src/mage/sets/odyssey/BraidsCabalMinion.java b/Mage.Sets/src/mage/sets/odyssey/BraidsCabalMinion.java index efafb8f586..d4af092109 100644 --- a/Mage.Sets/src/mage/sets/odyssey/BraidsCabalMinion.java +++ b/Mage.Sets/src/mage/sets/odyssey/BraidsCabalMinion.java @@ -44,17 +44,16 @@ import mage.filter.predicate.mageobject.CardTypePredicate; * * @author cbt33, North (Karma) */ - public class BraidsCabalMinion extends CardImpl { - - public static final FilterPermanent filter = new FilterPermanent("artifact, creature, or land"); - - static{ - filter.add(Predicates.or(new CardTypePredicate(CardType.ARTIFACT), - new CardTypePredicate(CardType.CREATURE), - new CardTypePredicate(CardType.LAND))); - } - + + public static final FilterPermanent filter = new FilterPermanent("artifact, creature, or land"); + + static { + filter.add(Predicates.or(new CardTypePredicate(CardType.ARTIFACT), + new CardTypePredicate(CardType.CREATURE), + new CardTypePredicate(CardType.LAND))); + } + public BraidsCabalMinion(UUID ownerId) { super(ownerId, 117, "Braids, Cabal Minion", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{2}{B}{B}"); this.expansionSetCode = "ODY"; @@ -66,8 +65,8 @@ public class BraidsCabalMinion extends CardImpl { this.toughness = new MageInt(2); // At the beginning of each player's upkeep, that player sacrifices an artifact, creature, or land. - this.addAbility(new BeginningOfUpkeepTriggeredAbility(Zone.BATTLEFIELD, new SacrificeEffect(filter, 1, ""), TargetController.ANY, false)); - + this.addAbility(new BeginningOfUpkeepTriggeredAbility(Zone.BATTLEFIELD, new SacrificeEffect(filter, 1, "that player"), TargetController.ANY, false)); + } public BraidsCabalMinion(final BraidsCabalMinion card) {