1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-09 17:00:09 -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,16 +44,15 @@ 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");
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)));
}
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}");
@ -66,7 +65,7 @@ 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));
}