1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-02 17:00:11 -09:00

Braids, Cabal Minion - Fixed tooltip rule text.

This commit is contained in:
LevelX2 2016-06-17 14:32:29 +02:00
parent ac989ddf36
commit 089996edce

View file

@ -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) {