mirror of
https://github.com/correl/mage.git
synced 2025-04-06 01:04:10 -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,12 +44,11 @@ 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{
|
||||
static {
|
||||
filter.add(Predicates.or(new CardTypePredicate(CardType.ARTIFACT),
|
||||
new CardTypePredicate(CardType.CREATURE),
|
||||
new CardTypePredicate(CardType.LAND)));
|
||||
|
@ -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));
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue