mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
* Appetite for Brains - Fixed a bug that it could wrongly only exile creature cards.
This commit is contained in:
parent
6e368d51a8
commit
37f38ec10a
2 changed files with 4 additions and 2 deletions
|
@ -33,7 +33,7 @@ import mage.cards.CardImpl;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.constants.Rarity;
|
import mage.constants.Rarity;
|
||||||
import mage.filter.Filter;
|
import mage.filter.Filter;
|
||||||
import mage.filter.common.FilterCreatureCard;
|
import mage.filter.FilterCard;
|
||||||
import mage.filter.predicate.mageobject.ConvertedManaCostPredicate;
|
import mage.filter.predicate.mageobject.ConvertedManaCostPredicate;
|
||||||
import mage.target.common.TargetOpponent;
|
import mage.target.common.TargetOpponent;
|
||||||
|
|
||||||
|
@ -43,7 +43,8 @@ import mage.target.common.TargetOpponent;
|
||||||
*/
|
*/
|
||||||
public class AppetiteForBrains extends CardImpl {
|
public class AppetiteForBrains extends CardImpl {
|
||||||
|
|
||||||
private static final FilterCreatureCard filter = new FilterCreatureCard("a card from it with converted mana cost 4 or greater");
|
private static final FilterCard filter = new FilterCard("a card from it with converted mana cost 4 or greater");
|
||||||
|
|
||||||
static {
|
static {
|
||||||
filter.add(new ConvertedManaCostPredicate(Filter.ComparisonType.GreaterThan, 3));
|
filter.add(new ConvertedManaCostPredicate(Filter.ComparisonType.GreaterThan, 3));
|
||||||
}
|
}
|
||||||
|
|
|
@ -23142,6 +23142,7 @@ Rogue's Passage|Duel Decks: Jace vs. Vraska|77|U||Land|||{tap}: Add {1} to your
|
||||||
Tainted Wood|Duel Decks: Jace vs. Vraska|78|U||Land|||{tap}: Add {1} to your mana pool.${tap}: Add {B} or {G} to your mana pool. Activate this ability only if you control a Swamp.|
|
Tainted Wood|Duel Decks: Jace vs. Vraska|78|U||Land|||{tap}: Add {1} to your mana pool.${tap}: Add {B} or {G} to your mana pool. Activate this ability only if you control a Swamp.|
|
||||||
Swamp|Duel Decks: Jace vs. Vraska|79|L||Basic Land - Swamp|||B|
|
Swamp|Duel Decks: Jace vs. Vraska|79|L||Basic Land - Swamp|||B|
|
||||||
Krovikan Mist|Duel Decks: Jace vs. Vraska|8|C|{1}{U}|Creature - Illusion|*|*|Flying$Krovikan Mist's power and toughness are each equal to the number of Illusions on the battlefield.|
|
Krovikan Mist|Duel Decks: Jace vs. Vraska|8|C|{1}{U}|Creature - Illusion|*|*|Flying$Krovikan Mist's power and toughness are each equal to the number of Illusions on the battlefield.|
|
||||||
|
Merfolk Wayfinder|Duel Decks: Jace vs. Vraska|9|U|{2}{U}|Creature - Merfolk Scout|1|2|Flying$When Merfolk Wayfinder enters the battlefield, reveal the top three cards of your library. Put all Island cards revealed this way into your hand and the rest on the bottom of your library in any order.|
|
||||||
Swamp|Duel Decks: Jace vs. Vraska|80|L||Basic Land - Swamp|||B|
|
Swamp|Duel Decks: Jace vs. Vraska|80|L||Basic Land - Swamp|||B|
|
||||||
Swamp|Duel Decks: Jace vs. Vraska|81|L||Basic Land - Swamp|||B|
|
Swamp|Duel Decks: Jace vs. Vraska|81|L||Basic Land - Swamp|||B|
|
||||||
Swamp|Duel Decks: Jace vs. Vraska|82|L||Basic Land - Swamp|||B|
|
Swamp|Duel Decks: Jace vs. Vraska|82|L||Basic Land - Swamp|||B|
|
||||||
|
|
Loading…
Reference in a new issue