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:
parent
ac989ddf36
commit
089996edce
1 changed files with 11 additions and 12 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue