mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
added shared class for cards which search for different names
This commit is contained in:
parent
ddabfacbe7
commit
8b7a5c370a
13 changed files with 235 additions and 643 deletions
|
@ -1,25 +1,24 @@
|
||||||
package mage.cards.a;
|
package mage.cards.a;
|
||||||
|
|
||||||
import mage.MageInt;
|
import mage.MageInt;
|
||||||
import mage.MageObject;
|
|
||||||
import mage.abilities.Ability;
|
|
||||||
import mage.abilities.common.AttacksTriggeredAbility;
|
import mage.abilities.common.AttacksTriggeredAbility;
|
||||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||||
import mage.abilities.dynamicvalue.DynamicValue;
|
import mage.abilities.dynamicvalue.DynamicValue;
|
||||||
import mage.abilities.dynamicvalue.common.PermanentsOnBattlefieldCount;
|
import mage.abilities.dynamicvalue.common.PermanentsOnBattlefieldCount;
|
||||||
import mage.abilities.dynamicvalue.common.StaticValue;
|
import mage.abilities.dynamicvalue.common.StaticValue;
|
||||||
import mage.abilities.effects.OneShotEffect;
|
|
||||||
import mage.abilities.effects.common.continuous.BoostSourceEffect;
|
import mage.abilities.effects.common.continuous.BoostSourceEffect;
|
||||||
import mage.cards.*;
|
import mage.abilities.effects.common.search.SearchLibraryPutInHandEffect;
|
||||||
import mage.constants.*;
|
import mage.cards.CardImpl;
|
||||||
|
import mage.cards.CardSetInfo;
|
||||||
|
import mage.constants.CardType;
|
||||||
|
import mage.constants.Duration;
|
||||||
|
import mage.constants.SubType;
|
||||||
import mage.filter.FilterCard;
|
import mage.filter.FilterCard;
|
||||||
import mage.filter.common.FilterAttackingCreature;
|
import mage.filter.common.FilterAttackingCreature;
|
||||||
import mage.filter.predicate.Predicates;
|
import mage.filter.predicate.Predicates;
|
||||||
import mage.filter.predicate.mageobject.NamePredicate;
|
|
||||||
import mage.filter.predicate.mageobject.AnotherPredicate;
|
import mage.filter.predicate.mageobject.AnotherPredicate;
|
||||||
import mage.game.Game;
|
import mage.filter.predicate.mageobject.NamePredicate;
|
||||||
import mage.players.Player;
|
import mage.target.common.TargetCardWithDifferentNameInLibrary;
|
||||||
import mage.target.common.TargetCardInLibrary;
|
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
|
@ -29,9 +28,15 @@ import java.util.UUID;
|
||||||
public final class AlpineHoundmaster extends CardImpl {
|
public final class AlpineHoundmaster extends CardImpl {
|
||||||
|
|
||||||
private static final FilterAttackingCreature filter = new FilterAttackingCreature("other attacking creatures");
|
private static final FilterAttackingCreature filter = new FilterAttackingCreature("other attacking creatures");
|
||||||
|
private static final FilterCard filter2
|
||||||
|
= new FilterCard("card named Alpine Watchdog and/or a card named Igneous Cur");
|
||||||
|
|
||||||
static {
|
static {
|
||||||
filter.add(AnotherPredicate.instance);
|
filter.add(AnotherPredicate.instance);
|
||||||
|
filter2.add(Predicates.or(
|
||||||
|
new NamePredicate("Alpine Watchdog"),
|
||||||
|
new NamePredicate("Igneous Cur")
|
||||||
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
private static final DynamicValue xValue = new PermanentsOnBattlefieldCount(filter, null);
|
private static final DynamicValue xValue = new PermanentsOnBattlefieldCount(filter, null);
|
||||||
|
@ -45,10 +50,14 @@ public final class AlpineHoundmaster extends CardImpl {
|
||||||
this.toughness = new MageInt(2);
|
this.toughness = new MageInt(2);
|
||||||
|
|
||||||
// When Alpine Houndmaster enters the battlefield, you may search your library for a card named Alpine Watchdog and/or a card named Igneous Cur, reveal them, put them into your hand, then shuffle your library.
|
// When Alpine Houndmaster enters the battlefield, you may search your library for a card named Alpine Watchdog and/or a card named Igneous Cur, reveal them, put them into your hand, then shuffle your library.
|
||||||
this.addAbility(new EntersBattlefieldTriggeredAbility(new AlpineHoundmasterEffect(), true));
|
this.addAbility(new EntersBattlefieldTriggeredAbility(new SearchLibraryPutInHandEffect(
|
||||||
|
new TargetCardWithDifferentNameInLibrary(0, 2, filter2), true, true
|
||||||
|
).setText("search your library for a card named Alpine Watchdog and/or a card named Igneous Cur, reveal them, put them into your hand, then shuffle"), true));
|
||||||
|
|
||||||
// Whenever Alpine Houndmaster attacks, it gets +X/+0 until end of turn, where X is the number of other attacking creatures.
|
// Whenever Alpine Houndmaster attacks, it gets +X/+0 until end of turn, where X is the number of other attacking creatures.
|
||||||
this.addAbility(new AttacksTriggeredAbility(new BoostSourceEffect(xValue, StaticValue.get(0), Duration.EndOfTurn, true, "it"), false));
|
this.addAbility(new AttacksTriggeredAbility(new BoostSourceEffect(
|
||||||
|
xValue, StaticValue.get(0), Duration.EndOfTurn, true, "it"
|
||||||
|
), false));
|
||||||
}
|
}
|
||||||
|
|
||||||
private AlpineHoundmaster(final AlpineHoundmaster card) {
|
private AlpineHoundmaster(final AlpineHoundmaster card) {
|
||||||
|
@ -60,78 +69,3 @@ public final class AlpineHoundmaster extends CardImpl {
|
||||||
return new AlpineHoundmaster(this);
|
return new AlpineHoundmaster(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class AlpineHoundmasterEffect extends OneShotEffect {
|
|
||||||
|
|
||||||
AlpineHoundmasterEffect() {
|
|
||||||
super(Outcome.Benefit);
|
|
||||||
staticText = "search your library for a card named Alpine Watchdog and/or a card named Igneous Cur, " +
|
|
||||||
"reveal them, put them into your hand, then shuffle";
|
|
||||||
}
|
|
||||||
|
|
||||||
private AlpineHoundmasterEffect(final AlpineHoundmasterEffect effect) {
|
|
||||||
super(effect);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public AlpineHoundmasterEffect copy() {
|
|
||||||
return new AlpineHoundmasterEffect(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean apply(Game game, Ability source) {
|
|
||||||
Player player = game.getPlayer(source.getControllerId());
|
|
||||||
if (player == null) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
TargetCardInLibrary target = new AlpineHoundmasterTarget();
|
|
||||||
player.searchLibrary(target, source, game);
|
|
||||||
Cards cards = new CardsImpl(target.getTargets());
|
|
||||||
player.revealCards(source, cards, game);
|
|
||||||
player.moveCards(cards, Zone.HAND, source, game);
|
|
||||||
player.shuffleLibrary(source, game);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class AlpineHoundmasterTarget extends TargetCardInLibrary {
|
|
||||||
|
|
||||||
private static final FilterCard filter
|
|
||||||
= new FilterCard("card named Alpine Watchdog and/or a card named Igneous Cur");
|
|
||||||
|
|
||||||
static {
|
|
||||||
filter.add(Predicates.or(
|
|
||||||
new NamePredicate("Alpine Watchdog"),
|
|
||||||
new NamePredicate("Igneous Cur")
|
|
||||||
));
|
|
||||||
}
|
|
||||||
|
|
||||||
AlpineHoundmasterTarget() {
|
|
||||||
super(0, 2, filter);
|
|
||||||
}
|
|
||||||
|
|
||||||
private AlpineHoundmasterTarget(final AlpineHoundmasterTarget target) {
|
|
||||||
super(target);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public AlpineHoundmasterTarget copy() {
|
|
||||||
return new AlpineHoundmasterTarget(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean canTarget(UUID controllerId, UUID id, Ability source, Game game) {
|
|
||||||
if (!super.canTarget(controllerId, id, source, game)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
Card card = game.getCard(id);
|
|
||||||
if (card == null) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return this.getTargets()
|
|
||||||
.stream()
|
|
||||||
.map(game::getCard)
|
|
||||||
.map(MageObject::getName)
|
|
||||||
.noneMatch(card.getName()::equals);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,17 +1,14 @@
|
||||||
package mage.cards.b;
|
package mage.cards.b;
|
||||||
|
|
||||||
import java.util.Objects;
|
|
||||||
import java.util.Set;
|
|
||||||
import java.util.UUID;
|
|
||||||
import mage.MageInt;
|
import mage.MageInt;
|
||||||
import mage.abilities.Ability;
|
import mage.abilities.Ability;
|
||||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||||
import mage.abilities.effects.OneShotEffect;
|
import mage.abilities.effects.OneShotEffect;
|
||||||
|
import mage.abilities.keyword.FlyingAbility;
|
||||||
import mage.cards.*;
|
import mage.cards.*;
|
||||||
|
import mage.constants.CardType;
|
||||||
import mage.constants.Outcome;
|
import mage.constants.Outcome;
|
||||||
import mage.constants.SubType;
|
import mage.constants.SubType;
|
||||||
import mage.abilities.keyword.FlyingAbility;
|
|
||||||
import mage.constants.CardType;
|
|
||||||
import mage.constants.Zone;
|
import mage.constants.Zone;
|
||||||
import mage.filter.FilterCard;
|
import mage.filter.FilterCard;
|
||||||
import mage.filter.StaticFilters;
|
import mage.filter.StaticFilters;
|
||||||
|
@ -21,11 +18,13 @@ import mage.game.Game;
|
||||||
import mage.players.Player;
|
import mage.players.Player;
|
||||||
import mage.target.TargetCard;
|
import mage.target.TargetCard;
|
||||||
import mage.target.common.TargetCardInLibrary;
|
import mage.target.common.TargetCardInLibrary;
|
||||||
|
import mage.target.common.TargetCardWithDifferentNameInLibrary;
|
||||||
import mage.target.common.TargetOpponent;
|
import mage.target.common.TargetOpponent;
|
||||||
import mage.util.CardUtil;
|
|
||||||
|
import java.util.Set;
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author weirddan455
|
* @author weirddan455
|
||||||
*/
|
*/
|
||||||
public final class BurningRuneDemon extends CardImpl {
|
public final class BurningRuneDemon extends CardImpl {
|
||||||
|
@ -60,6 +59,13 @@ public final class BurningRuneDemon extends CardImpl {
|
||||||
|
|
||||||
class BurningRuneDemonEffect extends OneShotEffect {
|
class BurningRuneDemonEffect extends OneShotEffect {
|
||||||
|
|
||||||
|
private static final FilterCard filter
|
||||||
|
= new FilterCard("cards not named Burning-Rune Demon that have different names");
|
||||||
|
|
||||||
|
static {
|
||||||
|
filter.add(Predicates.not(new NamePredicate("Burning-Rune Demon")));
|
||||||
|
}
|
||||||
|
|
||||||
public BurningRuneDemonEffect() {
|
public BurningRuneDemonEffect() {
|
||||||
super(Outcome.Benefit);
|
super(Outcome.Benefit);
|
||||||
staticText = "search your library for exactly two cards "
|
staticText = "search your library for exactly two cards "
|
||||||
|
@ -81,7 +87,7 @@ class BurningRuneDemonEffect extends OneShotEffect {
|
||||||
public boolean apply(Game game, Ability source) {
|
public boolean apply(Game game, Ability source) {
|
||||||
Player controller = game.getPlayer(source.getControllerId());
|
Player controller = game.getPlayer(source.getControllerId());
|
||||||
if (controller != null) {
|
if (controller != null) {
|
||||||
TargetCardInLibrary targetCardInLibrary = new BurningRuneDemonTarget();
|
TargetCardInLibrary targetCardInLibrary = new TargetCardWithDifferentNameInLibrary(2, 2, filter);
|
||||||
if (controller.searchLibrary(targetCardInLibrary, source, game)) {
|
if (controller.searchLibrary(targetCardInLibrary, source, game)) {
|
||||||
Cards cards = new CardsImpl(targetCardInLibrary.getTargets());
|
Cards cards = new CardsImpl(targetCardInLibrary.getTargets());
|
||||||
if (!cards.isEmpty()) {
|
if (!cards.isEmpty()) {
|
||||||
|
@ -115,41 +121,3 @@ class BurningRuneDemonEffect extends OneShotEffect {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class BurningRuneDemonTarget extends TargetCardInLibrary {
|
|
||||||
|
|
||||||
private static final FilterCard filter
|
|
||||||
= new FilterCard("cards not named Burning-Rune Demon that have different names");
|
|
||||||
|
|
||||||
static {
|
|
||||||
filter.add(Predicates.not(new NamePredicate("Burning-Rune Demon")));
|
|
||||||
}
|
|
||||||
|
|
||||||
public BurningRuneDemonTarget() {
|
|
||||||
super(2, filter);
|
|
||||||
}
|
|
||||||
|
|
||||||
private BurningRuneDemonTarget(final BurningRuneDemonTarget target) {
|
|
||||||
super(target);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public BurningRuneDemonTarget copy() {
|
|
||||||
return new BurningRuneDemonTarget(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean canTarget(UUID playerId, UUID id, Ability source, Game game) {
|
|
||||||
if (!super.canTarget(playerId, id, source, game)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
Card card = game.getCard(id);
|
|
||||||
return card != null
|
|
||||||
&& this.getTargets()
|
|
||||||
.stream()
|
|
||||||
.map(game::getCard)
|
|
||||||
.filter(Objects::nonNull)
|
|
||||||
.map(Card::getName)
|
|
||||||
.noneMatch(n -> CardUtil.haveSameNames(card, n, game));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,20 +1,14 @@
|
||||||
package mage.cards.d;
|
package mage.cards.d;
|
||||||
|
|
||||||
import mage.abilities.Ability;
|
|
||||||
import mage.abilities.effects.common.search.SearchLibraryPutInPlayEffect;
|
import mage.abilities.effects.common.search.SearchLibraryPutInPlayEffect;
|
||||||
import mage.cards.Card;
|
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.cards.CardSetInfo;
|
import mage.cards.CardSetInfo;
|
||||||
import mage.cards.Cards;
|
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.constants.SubType;
|
import mage.constants.SubType;
|
||||||
import mage.filter.FilterCard;
|
import mage.filter.FilterCard;
|
||||||
import mage.filter.common.FilterCreatureCard;
|
import mage.filter.common.FilterCreatureCard;
|
||||||
import mage.game.Game;
|
import mage.target.common.TargetCardWithDifferentNameInLibrary;
|
||||||
import mage.target.common.TargetCardInLibrary;
|
|
||||||
import mage.util.CardUtil;
|
|
||||||
|
|
||||||
import java.util.Objects;
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -22,11 +16,20 @@ import java.util.UUID;
|
||||||
*/
|
*/
|
||||||
public final class DeathbellowWarCry extends CardImpl {
|
public final class DeathbellowWarCry extends CardImpl {
|
||||||
|
|
||||||
|
private static final FilterCard minotaurFilter
|
||||||
|
= new FilterCreatureCard("Minotaur creature cards with different names");
|
||||||
|
|
||||||
|
static {
|
||||||
|
minotaurFilter.add(SubType.MINOTAUR.getPredicate());
|
||||||
|
}
|
||||||
|
|
||||||
public DeathbellowWarCry(UUID ownerId, CardSetInfo setInfo) {
|
public DeathbellowWarCry(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{5}{R}{R}{R}");
|
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{5}{R}{R}{R}");
|
||||||
|
|
||||||
// Search your library for up to four Minotaur creature cards with different names, put them onto the battlefield, then shuffle your library.
|
// Search your library for up to four Minotaur creature cards with different names, put them onto the battlefield, then shuffle your library.
|
||||||
this.getSpellAbility().addEffect(new SearchLibraryPutInPlayEffect(new DeathbellowWarCryTarget()));
|
this.getSpellAbility().addEffect(new SearchLibraryPutInPlayEffect(
|
||||||
|
new TargetCardWithDifferentNameInLibrary(0, 4, minotaurFilter)
|
||||||
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
private DeathbellowWarCry(final DeathbellowWarCry card) {
|
private DeathbellowWarCry(final DeathbellowWarCry card) {
|
||||||
|
@ -38,40 +41,3 @@ public final class DeathbellowWarCry extends CardImpl {
|
||||||
return new DeathbellowWarCry(this);
|
return new DeathbellowWarCry(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class DeathbellowWarCryTarget extends TargetCardInLibrary {
|
|
||||||
|
|
||||||
private static final FilterCard minotaurFilter
|
|
||||||
= new FilterCreatureCard("Minotaur creature cards with different names");
|
|
||||||
|
|
||||||
static {
|
|
||||||
minotaurFilter.add(SubType.MINOTAUR.getPredicate());
|
|
||||||
}
|
|
||||||
|
|
||||||
DeathbellowWarCryTarget() {
|
|
||||||
super(0, 4, minotaurFilter);
|
|
||||||
}
|
|
||||||
|
|
||||||
private DeathbellowWarCryTarget(final DeathbellowWarCryTarget target) {
|
|
||||||
super(target);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public DeathbellowWarCryTarget copy() {
|
|
||||||
return new DeathbellowWarCryTarget(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean canTarget(UUID playerId, UUID id, Ability source, Cards cards, Game game) {
|
|
||||||
Card card = cards.get(id, game);
|
|
||||||
return card != null
|
|
||||||
&& filter.match(card, playerId, game)
|
|
||||||
&& this
|
|
||||||
.getTargets()
|
|
||||||
.stream()
|
|
||||||
.map(game::getCard)
|
|
||||||
.filter(Objects::nonNull)
|
|
||||||
.map(Card::getName)
|
|
||||||
.noneMatch(n -> CardUtil.haveSameNames(card, n, game));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
package mage.cards.e;
|
package mage.cards.e;
|
||||||
|
|
||||||
import mage.MageObject;
|
|
||||||
import mage.abilities.Ability;
|
import mage.abilities.Ability;
|
||||||
import mage.abilities.effects.OneShotEffect;
|
import mage.abilities.effects.OneShotEffect;
|
||||||
import mage.abilities.effects.common.ExileSpellEffect;
|
import mage.abilities.effects.common.ExileSpellEffect;
|
||||||
|
@ -18,6 +17,7 @@ import mage.players.Player;
|
||||||
import mage.target.TargetCard;
|
import mage.target.TargetCard;
|
||||||
import mage.target.common.TargetCardInLibrary;
|
import mage.target.common.TargetCardInLibrary;
|
||||||
import mage.target.common.TargetCardInYourGraveyard;
|
import mage.target.common.TargetCardInYourGraveyard;
|
||||||
|
import mage.target.common.TargetCardWithDifferentNameInLibrary;
|
||||||
import mage.target.common.TargetOpponent;
|
import mage.target.common.TargetOpponent;
|
||||||
import mage.util.CardUtil;
|
import mage.util.CardUtil;
|
||||||
|
|
||||||
|
@ -28,7 +28,6 @@ import java.util.UUID;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author htrajan
|
* @author htrajan
|
||||||
*/
|
*/
|
||||||
public final class EcologicalAppreciation extends CardImpl {
|
public final class EcologicalAppreciation extends CardImpl {
|
||||||
|
@ -55,7 +54,9 @@ class EcologicalAppreciationEffect extends OneShotEffect {
|
||||||
|
|
||||||
EcologicalAppreciationEffect() {
|
EcologicalAppreciationEffect() {
|
||||||
super(Outcome.Benefit);
|
super(Outcome.Benefit);
|
||||||
staticText = "search your library and graveyard for up to four creature cards with different names that each have mana value X or less and reveal them. An opponent chooses two of those cards. Shuffle the chosen cards into your library and put the rest onto the battlefield";
|
staticText = "search your library and graveyard for up to four creature cards with different names " +
|
||||||
|
"that each have mana value X or less and reveal them. An opponent chooses two of those cards. " +
|
||||||
|
"Shuffle the chosen cards into your library and put the rest onto the battlefield";
|
||||||
}
|
}
|
||||||
|
|
||||||
private EcologicalAppreciationEffect(final EcologicalAppreciationEffect effect) {
|
private EcologicalAppreciationEffect(final EcologicalAppreciationEffect effect) {
|
||||||
|
@ -76,85 +77,69 @@ class EcologicalAppreciationEffect extends OneShotEffect {
|
||||||
int xValue = source.getManaCostsToPay().getX();
|
int xValue = source.getManaCostsToPay().getX();
|
||||||
FilterCard filter = new FilterCreatureCard();
|
FilterCard filter = new FilterCreatureCard();
|
||||||
filter.add(new ManaValuePredicate(ComparisonType.FEWER_THAN, xValue + 1));
|
filter.add(new ManaValuePredicate(ComparisonType.FEWER_THAN, xValue + 1));
|
||||||
TargetCard targetCardsInLibrary = new TargetCardInLibrary(0, 4, filter) {
|
TargetCardInLibrary targetCardsInLibrary = new TargetCardWithDifferentNameInLibrary(0, 4, filter);
|
||||||
@Override
|
|
||||||
public boolean canTarget(UUID playerId, UUID id, Ability source, Game game) {
|
|
||||||
if (!super.canTarget(playerId, id, source, game)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
Card card = game.getCard(id);
|
|
||||||
Set<Card> disallowedCards = this.getTargets().stream()
|
|
||||||
.map(game::getCard)
|
|
||||||
.collect(Collectors.toSet());
|
|
||||||
return isValidTarget(card, disallowedCards);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
targetCardsInLibrary.setNotTarget(true);
|
targetCardsInLibrary.setNotTarget(true);
|
||||||
targetCardsInLibrary.withChooseHint("Step 1 of 2: Search library");
|
targetCardsInLibrary.withChooseHint("Step 1 of 2: Search library");
|
||||||
player.choose(Outcome.PutCreatureInPlay, new CardsImpl(player.getLibrary().getCards(game)), targetCardsInLibrary, game);
|
player.searchLibrary(targetCardsInLibrary, source, game);
|
||||||
Cards cards = new CardsImpl(targetCardsInLibrary.getTargets());
|
Cards cards = new CardsImpl(targetCardsInLibrary.getTargets());
|
||||||
|
cards.retainZone(Zone.LIBRARY, game);
|
||||||
|
|
||||||
boolean status = !cards.isEmpty();
|
int remainingCards = 4 - cards.size();
|
||||||
|
if (remainingCards > 0) {
|
||||||
if (status) {
|
TargetCard targetCardsInGY = new TargetCardInYourGraveyard(0, remainingCards, filter) {
|
||||||
int remainingCards = 4 - cards.size();
|
@Override
|
||||||
if (remainingCards > 0) {
|
public boolean canTarget(UUID playerId, UUID id, Ability source, Game game) {
|
||||||
TargetCard targetCardsInGY = new TargetCardInYourGraveyard(0, remainingCards, filter) {
|
if (!super.canTarget(playerId, id, source, game)) {
|
||||||
@Override
|
return false;
|
||||||
public boolean canTarget(UUID playerId, UUID id, Ability source, Game game) {
|
}
|
||||||
if (!super.canTarget(playerId, id, source, game)) {
|
Card card = game.getCard(id);
|
||||||
return false;
|
Set<Card> disallowedCards = this.getTargets().stream()
|
||||||
}
|
|
||||||
Card card = game.getCard(id);
|
|
||||||
Set<Card> disallowedCards = this.getTargets().stream()
|
|
||||||
.map(game::getCard)
|
.map(game::getCard)
|
||||||
.collect(Collectors.toSet());
|
.collect(Collectors.toSet());
|
||||||
Set<Card> checkList = new HashSet<>();
|
Set<Card> checkList = new HashSet<>();
|
||||||
checkList.addAll(disallowedCards);
|
checkList.addAll(disallowedCards);
|
||||||
checkList.addAll(cards.getCards(game));
|
checkList.addAll(cards.getCards(game));
|
||||||
return isValidTarget(card, checkList);
|
return isValidTarget(card, checkList);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
targetCardsInGY.setNotTarget(true);
|
targetCardsInGY.setNotTarget(true);
|
||||||
targetCardsInGY.withChooseHint("Step 2 of 2: Search graveyard");
|
targetCardsInGY.withChooseHint("Step 2 of 2: Search graveyard");
|
||||||
player.choose(Outcome.PutCreatureInPlay, new CardsImpl(player.getGraveyard().getCards(game)), targetCardsInGY, game);
|
player.choose(Outcome.PutCreatureInPlay, player.getGraveyard(), targetCardsInGY, game);
|
||||||
cards.addAll(targetCardsInGY.getTargets());
|
cards.addAll(targetCardsInGY.getTargets());
|
||||||
}
|
cards.removeIf(uuid -> {
|
||||||
|
Zone zone = game.getState().getZone(uuid);
|
||||||
|
return zone != Zone.GRAVEYARD && zone != Zone.LIBRARY;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
TargetOpponent targetOpponent = new TargetOpponent();
|
TargetOpponent targetOpponent = new TargetOpponent();
|
||||||
targetOpponent.setNotTarget(true);
|
targetOpponent.setNotTarget(true);
|
||||||
player.choose(outcome, targetOpponent, source.getSourceId(), game);
|
player.choose(outcome, targetOpponent, source.getSourceId(), game);
|
||||||
Player opponent = game.getPlayer(targetOpponent.getFirstTarget());
|
Player opponent = game.getPlayer(targetOpponent.getFirstTarget());
|
||||||
|
|
||||||
if (opponent == null) {
|
if (opponent != null) {
|
||||||
status = false;
|
TargetCard chosenCards = new TargetCard(2, Zone.ALL, StaticFilters.FILTER_CARD);
|
||||||
}
|
chosenCards.setNotTarget(true);
|
||||||
|
opponent.choose(outcome, cards, chosenCards, game);
|
||||||
if (status) {
|
Cards toShuffle = new CardsImpl(chosenCards.getTargets().stream()
|
||||||
TargetCard chosenCards = new TargetCard(2, Zone.ALL, StaticFilters.FILTER_CARD);
|
|
||||||
chosenCards.setNotTarget(true);
|
|
||||||
opponent.choose(outcome, cards, chosenCards, game);
|
|
||||||
Cards toShuffle = new CardsImpl(chosenCards.getTargets().stream()
|
|
||||||
.map(game::getCard)
|
.map(game::getCard)
|
||||||
.collect(Collectors.toList()));
|
.collect(Collectors.toList()));
|
||||||
|
|
||||||
player.putCardsOnTopOfLibrary(toShuffle, game, source, false);
|
player.putCardsOnTopOfLibrary(toShuffle, game, source, false);
|
||||||
cards.removeAll(toShuffle);
|
cards.removeAll(toShuffle);
|
||||||
|
|
||||||
player.moveCards(cards, Zone.BATTLEFIELD, source, game);
|
player.moveCards(cards, Zone.BATTLEFIELD, source, game);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
player.shuffleLibrary(source, game);
|
player.shuffleLibrary(source, game);
|
||||||
|
|
||||||
return status;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean isValidTarget(Card target, Set<Card> disallowedCards) {
|
private boolean isValidTarget(Card target, Set<Card> disallowedCards) {
|
||||||
return target != null &&
|
return target != null
|
||||||
disallowedCards.stream()
|
&& disallowedCards.stream()
|
||||||
.filter(Objects::nonNull)
|
.filter(Objects::nonNull)
|
||||||
.map(MageObject::getName)
|
.noneMatch(card -> CardUtil.haveSameNames(card, target));
|
||||||
.noneMatch(name -> CardUtil.haveSameNames(name, target.getName()));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,6 +1,5 @@
|
||||||
package mage.cards.e;
|
package mage.cards.e;
|
||||||
|
|
||||||
import mage.MageObject;
|
|
||||||
import mage.abilities.Ability;
|
import mage.abilities.Ability;
|
||||||
import mage.abilities.effects.OneShotEffect;
|
import mage.abilities.effects.OneShotEffect;
|
||||||
import mage.abilities.effects.common.ExileSpellEffect;
|
import mage.abilities.effects.common.ExileSpellEffect;
|
||||||
|
@ -15,10 +14,11 @@ import mage.game.Game;
|
||||||
import mage.players.Player;
|
import mage.players.Player;
|
||||||
import mage.target.common.TargetCardInExile;
|
import mage.target.common.TargetCardInExile;
|
||||||
import mage.target.common.TargetCardInLibrary;
|
import mage.target.common.TargetCardInLibrary;
|
||||||
|
import mage.target.common.TargetCardWithDifferentNameInLibrary;
|
||||||
import mage.target.common.TargetOpponent;
|
import mage.target.common.TargetOpponent;
|
||||||
|
import mage.util.CardUtil;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
import mage.ApprovingObject;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author TheElk801
|
* @author TheElk801
|
||||||
|
@ -45,6 +45,13 @@ public final class EmergentUltimatum extends CardImpl {
|
||||||
|
|
||||||
class EmergentUltimatumEffect extends OneShotEffect {
|
class EmergentUltimatumEffect extends OneShotEffect {
|
||||||
|
|
||||||
|
private static final FilterCard filter
|
||||||
|
= new FilterCard("monocolored cards with different names");
|
||||||
|
|
||||||
|
static {
|
||||||
|
filter.add(MonocoloredPredicate.instance);
|
||||||
|
}
|
||||||
|
|
||||||
EmergentUltimatumEffect() {
|
EmergentUltimatumEffect() {
|
||||||
super(Outcome.Benefit);
|
super(Outcome.Benefit);
|
||||||
staticText = "Search your library for up to three monocolored cards with different names and exile them. " +
|
staticText = "Search your library for up to three monocolored cards with different names and exile them. " +
|
||||||
|
@ -67,7 +74,7 @@ class EmergentUltimatumEffect extends OneShotEffect {
|
||||||
if (player == null) {
|
if (player == null) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
TargetCardInLibrary targetCardInLibrary = new EmergentUltimatumTarget();
|
TargetCardInLibrary targetCardInLibrary = new TargetCardWithDifferentNameInLibrary(0, 3, filter);
|
||||||
targetCardInLibrary.setNotTarget(true);
|
targetCardInLibrary.setNotTarget(true);
|
||||||
boolean searched = player.searchLibrary(targetCardInLibrary, source, game);
|
boolean searched = player.searchLibrary(targetCardInLibrary, source, game);
|
||||||
Cards cards = new CardsImpl(targetCardInLibrary.getTargets());
|
Cards cards = new CardsImpl(targetCardInLibrary.getTargets());
|
||||||
|
@ -97,67 +104,7 @@ class EmergentUltimatumEffect extends OneShotEffect {
|
||||||
player.shuffleLibrary(source, game);
|
player.shuffleLibrary(source, game);
|
||||||
cards.remove(toShuffle);
|
cards.remove(toShuffle);
|
||||||
}
|
}
|
||||||
while (!cards.isEmpty()) {
|
CardUtil.castMultipleWithAttributeForFree(player, source, game, cards, StaticFilters.FILTER_CARD);
|
||||||
if (!player.chooseUse(Outcome.PlayForFree, "Cast an exiled card without paying its mana cost?", source, game)) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
targetCardInExile.clearChosen();
|
|
||||||
if (!player.choose(Outcome.PlayForFree, cards, targetCardInExile, game)) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
Card card = game.getCard(targetCardInExile.getFirstTarget());
|
|
||||||
if (card == null) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
game.getState().setValue("PlayFromNotOwnHandZone" + card.getId(), Boolean.TRUE);
|
|
||||||
Boolean cardWasCast = player.cast(player.chooseAbilityForCast(card, game, true),
|
|
||||||
game, true, new ApprovingObject(source, game));
|
|
||||||
game.getState().setValue("PlayFromNotOwnHandZone" + card.getId(), null);
|
|
||||||
cards.remove(card); // remove on non cast too (infinite freeze fix)
|
|
||||||
if (cardWasCast) {
|
|
||||||
cards.remove(card);
|
|
||||||
} else {
|
|
||||||
game.informPlayer(player, "You're not able to cast "
|
|
||||||
+ card.getIdName() + " or you canceled the casting.");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class EmergentUltimatumTarget extends TargetCardInLibrary {
|
|
||||||
|
|
||||||
private static final FilterCard filter
|
|
||||||
= new FilterCard("monocolored cards with different names");
|
|
||||||
|
|
||||||
static {
|
|
||||||
filter.add(MonocoloredPredicate.instance);
|
|
||||||
}
|
|
||||||
|
|
||||||
EmergentUltimatumTarget() {
|
|
||||||
super(0, 3, filter);
|
|
||||||
}
|
|
||||||
|
|
||||||
private EmergentUltimatumTarget(final EmergentUltimatumTarget target) {
|
|
||||||
super(target);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public EmergentUltimatumTarget copy() {
|
|
||||||
return new EmergentUltimatumTarget(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean canTarget(UUID playerId, UUID id, Ability source, Game game) {
|
|
||||||
if (!super.canTarget(playerId, id, source, game)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
Card card = game.getCard(id);
|
|
||||||
return card != null
|
|
||||||
&& this.getTargets()
|
|
||||||
.stream()
|
|
||||||
.map(game::getCard)
|
|
||||||
.map(MageObject::getName)
|
|
||||||
.noneMatch(card.getName()::equals);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -2,7 +2,10 @@ package mage.cards.g;
|
||||||
|
|
||||||
import mage.abilities.Ability;
|
import mage.abilities.Ability;
|
||||||
import mage.abilities.effects.OneShotEffect;
|
import mage.abilities.effects.OneShotEffect;
|
||||||
import mage.cards.*;
|
import mage.cards.CardImpl;
|
||||||
|
import mage.cards.CardSetInfo;
|
||||||
|
import mage.cards.Cards;
|
||||||
|
import mage.cards.CardsImpl;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.constants.Outcome;
|
import mage.constants.Outcome;
|
||||||
import mage.constants.Zone;
|
import mage.constants.Zone;
|
||||||
|
@ -11,10 +14,9 @@ import mage.game.Game;
|
||||||
import mage.players.Player;
|
import mage.players.Player;
|
||||||
import mage.target.TargetCard;
|
import mage.target.TargetCard;
|
||||||
import mage.target.common.TargetCardInLibrary;
|
import mage.target.common.TargetCardInLibrary;
|
||||||
|
import mage.target.common.TargetCardWithDifferentNameInLibrary;
|
||||||
import mage.target.common.TargetOpponent;
|
import mage.target.common.TargetOpponent;
|
||||||
import mage.util.CardUtil;
|
|
||||||
|
|
||||||
import java.util.Objects;
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -42,7 +44,8 @@ public final class GiftsUngiven extends CardImpl {
|
||||||
|
|
||||||
class GiftsUngivenEffect extends OneShotEffect {
|
class GiftsUngivenEffect extends OneShotEffect {
|
||||||
|
|
||||||
private static final FilterCard filter = new FilterCard("cards to put in graveyard");
|
private static final FilterCard filter = new FilterCard("cards with different names");
|
||||||
|
private static final FilterCard filter2 = new FilterCard("cards to put in graveyard");
|
||||||
|
|
||||||
public GiftsUngivenEffect() {
|
public GiftsUngivenEffect() {
|
||||||
super(Outcome.DrawCard);
|
super(Outcome.DrawCard);
|
||||||
|
@ -67,13 +70,10 @@ class GiftsUngivenEffect extends OneShotEffect {
|
||||||
if (player == null || opponent == null) {
|
if (player == null || opponent == null) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
GiftsUngivenTarget target = new GiftsUngivenTarget();
|
TargetCardInLibrary target = new TargetCardWithDifferentNameInLibrary(0, 4, filter);
|
||||||
player.searchLibrary(target, source, game);
|
player.searchLibrary(target, source, game);
|
||||||
Cards cards = new CardsImpl();
|
Cards cards = new CardsImpl(target.getTargets());
|
||||||
target.getTargets()
|
cards.retainZone(Zone.LIBRARY, game);
|
||||||
.stream()
|
|
||||||
.map(uuid -> player.getLibrary().getCard(uuid, game))
|
|
||||||
.forEach(cards::add);
|
|
||||||
if (cards.isEmpty()) {
|
if (cards.isEmpty()) {
|
||||||
player.shuffleLibrary(source, game);
|
player.shuffleLibrary(source, game);
|
||||||
}
|
}
|
||||||
|
@ -82,7 +82,7 @@ class GiftsUngivenEffect extends OneShotEffect {
|
||||||
if (cards.size() > 2) {
|
if (cards.size() > 2) {
|
||||||
Cards cardsToKeep = new CardsImpl();
|
Cards cardsToKeep = new CardsImpl();
|
||||||
cardsToKeep.addAll(cards);
|
cardsToKeep.addAll(cards);
|
||||||
TargetCard targetDiscard = new TargetCard(2, Zone.LIBRARY, filter);
|
TargetCard targetDiscard = new TargetCard(2, Zone.LIBRARY, filter2);
|
||||||
if (opponent.choose(Outcome.Discard, cards, targetDiscard, game)) {
|
if (opponent.choose(Outcome.Discard, cards, targetDiscard, game)) {
|
||||||
cardsToKeep.removeIf(targetDiscard.getTargets()::contains);
|
cardsToKeep.removeIf(targetDiscard.getTargets()::contains);
|
||||||
cards.removeAll(cardsToKeep);
|
cards.removeAll(cardsToKeep);
|
||||||
|
@ -95,36 +95,3 @@ class GiftsUngivenEffect extends OneShotEffect {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class GiftsUngivenTarget extends TargetCardInLibrary {
|
|
||||||
|
|
||||||
private static final FilterCard filter = new FilterCard("cards with different names");
|
|
||||||
|
|
||||||
GiftsUngivenTarget() {
|
|
||||||
super(0, 4, filter);
|
|
||||||
}
|
|
||||||
|
|
||||||
private GiftsUngivenTarget(final GiftsUngivenTarget target) {
|
|
||||||
super(target);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public GiftsUngivenTarget copy() {
|
|
||||||
return new GiftsUngivenTarget(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean canTarget(UUID playerId, UUID id, Ability source, Cards cards, Game game) {
|
|
||||||
if (!super.canTarget(playerId, id, source, cards, game)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
Card card = cards.get(id, game);
|
|
||||||
return card != null
|
|
||||||
&& this
|
|
||||||
.getTargets()
|
|
||||||
.stream()
|
|
||||||
.map(game::getCard)
|
|
||||||
.filter(Objects::nonNull)
|
|
||||||
.noneMatch(c -> CardUtil.haveSameNames(c, card));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,9 +1,11 @@
|
||||||
package mage.cards.r;
|
package mage.cards.r;
|
||||||
|
|
||||||
import mage.MageObject;
|
|
||||||
import mage.abilities.Ability;
|
import mage.abilities.Ability;
|
||||||
import mage.abilities.effects.OneShotEffect;
|
import mage.abilities.effects.OneShotEffect;
|
||||||
import mage.cards.*;
|
import mage.cards.CardImpl;
|
||||||
|
import mage.cards.CardSetInfo;
|
||||||
|
import mage.cards.Cards;
|
||||||
|
import mage.cards.CardsImpl;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.constants.Outcome;
|
import mage.constants.Outcome;
|
||||||
import mage.constants.Zone;
|
import mage.constants.Zone;
|
||||||
|
@ -11,12 +13,11 @@ import mage.filter.FilterCard;
|
||||||
import mage.filter.common.FilterLandCard;
|
import mage.filter.common.FilterLandCard;
|
||||||
import mage.game.Game;
|
import mage.game.Game;
|
||||||
import mage.players.Player;
|
import mage.players.Player;
|
||||||
import mage.target.Target;
|
|
||||||
import mage.target.TargetCard;
|
import mage.target.TargetCard;
|
||||||
import mage.target.common.TargetCardInLibrary;
|
import mage.target.common.TargetCardInLibrary;
|
||||||
|
import mage.target.common.TargetCardWithDifferentNameInLibrary;
|
||||||
import mage.target.common.TargetOpponent;
|
import mage.target.common.TargetOpponent;
|
||||||
|
|
||||||
import java.util.Set;
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -43,9 +44,14 @@ public final class RealmsUncharted extends CardImpl {
|
||||||
|
|
||||||
class RealmsUnchartedEffect extends OneShotEffect {
|
class RealmsUnchartedEffect extends OneShotEffect {
|
||||||
|
|
||||||
|
private static final FilterCard filter = new FilterLandCard("land cards with different names");
|
||||||
|
private static final FilterCard filter2 = new FilterCard("cards to put in graveyard");
|
||||||
|
|
||||||
public RealmsUnchartedEffect() {
|
public RealmsUnchartedEffect() {
|
||||||
super(Outcome.DrawCard);
|
super(Outcome.DrawCard);
|
||||||
this.staticText = "Search your library for up to four land cards with different names and reveal them. An opponent chooses two of those cards. Put the chosen cards into your graveyard and the rest into your hand. Then shuffle";
|
this.staticText = "Search your library for up to four land cards with different names and reveal them. " +
|
||||||
|
"An opponent chooses two of those cards. Put the chosen cards into your graveyard " +
|
||||||
|
"and the rest into your hand. Then shuffle";
|
||||||
}
|
}
|
||||||
|
|
||||||
public RealmsUnchartedEffect(final RealmsUnchartedEffect effect) {
|
public RealmsUnchartedEffect(final RealmsUnchartedEffect effect) {
|
||||||
|
@ -59,81 +65,36 @@ class RealmsUnchartedEffect extends OneShotEffect {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean apply(Game game, Ability source) {
|
public boolean apply(Game game, Ability source) {
|
||||||
Player controller = game.getPlayer(source.getControllerId());
|
Player player = game.getPlayer(source.getControllerId());
|
||||||
MageObject sourceObject = game.getObject(source.getSourceId());
|
if (player == null) {
|
||||||
if (controller == null || sourceObject == null) {
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
TargetCardInLibrary target = new TargetCardWithDifferentNameInLibrary(0, 4, filter);
|
||||||
RealmsUnchartedTarget target = new RealmsUnchartedTarget();
|
player.searchLibrary(target, source, game);
|
||||||
if (controller.searchLibrary(target, source, game)) {
|
Cards cards = new CardsImpl(target.getTargets());
|
||||||
if (!target.getTargets().isEmpty()) {
|
cards.retainZone(Zone.LIBRARY, game);
|
||||||
Cards cards = new CardsImpl();
|
if (cards.isEmpty()) {
|
||||||
for (UUID cardId : target.getTargets()) {
|
player.shuffleLibrary(source, game);
|
||||||
Card card = controller.getLibrary().getCard(cardId, game);
|
|
||||||
if (card != null) {
|
|
||||||
cards.add(card);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
controller.revealCards(sourceObject.getName(), cards, game);
|
|
||||||
|
|
||||||
CardsImpl cardsToKeep = new CardsImpl();
|
|
||||||
if (cards.size() > 2) {
|
|
||||||
cardsToKeep.addAll(cards);
|
|
||||||
|
|
||||||
Player opponent;
|
|
||||||
Set<UUID> opponents = game.getOpponents(controller.getId());
|
|
||||||
if (opponents.size() == 1) {
|
|
||||||
opponent = game.getPlayer(opponents.iterator().next());
|
|
||||||
} else {
|
|
||||||
Target targetOpponent = new TargetOpponent(true);
|
|
||||||
controller.chooseTarget(Outcome.Detriment, targetOpponent, source, game);
|
|
||||||
opponent = game.getPlayer(targetOpponent.getFirstTarget());
|
|
||||||
}
|
|
||||||
TargetCard targetDiscard = new TargetCard(2, Zone.LIBRARY, new FilterCard("cards to put in graveyard"));
|
|
||||||
if (opponent != null && opponent.choose(Outcome.Discard, cards, targetDiscard, game)) {
|
|
||||||
cardsToKeep.removeAll(targetDiscard.getTargets());
|
|
||||||
cards.removeAll(cardsToKeep);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
controller.moveCards(cards, Zone.GRAVEYARD, source, game);
|
|
||||||
controller.moveCards(cardsToKeep, Zone.HAND, source, game);
|
|
||||||
}
|
|
||||||
controller.shuffleLibrary(source, game);
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
controller.shuffleLibrary(source, game);
|
player.revealCards(source, cards, game);
|
||||||
return false;
|
|
||||||
}
|
if (cards.size() > 2) {
|
||||||
}
|
TargetOpponent targetOpponent = new TargetOpponent();
|
||||||
|
targetOpponent.setNotTarget(true);
|
||||||
class RealmsUnchartedTarget extends TargetCardInLibrary {
|
player.choose(outcome, target, source.getSourceId(), game);
|
||||||
|
Player opponent = game.getPlayer(targetOpponent.getFirstTarget());
|
||||||
public RealmsUnchartedTarget() {
|
Cards cardsToKeep = new CardsImpl();
|
||||||
super(0, 4, new FilterLandCard("land cards with different names"));
|
cardsToKeep.addAll(cards);
|
||||||
}
|
TargetCard targetDiscard = new TargetCard(2, Zone.LIBRARY, filter2);
|
||||||
|
if (opponent.choose(Outcome.Discard, cards, targetDiscard, game)) {
|
||||||
public RealmsUnchartedTarget(final RealmsUnchartedTarget target) {
|
cardsToKeep.removeIf(targetDiscard.getTargets()::contains);
|
||||||
super(target);
|
cards.removeAll(cardsToKeep);
|
||||||
}
|
}
|
||||||
|
player.moveCards(cardsToKeep, Zone.HAND, source, game);
|
||||||
@Override
|
}
|
||||||
public RealmsUnchartedTarget copy() {
|
|
||||||
return new RealmsUnchartedTarget(this);
|
player.moveCards(cards, Zone.GRAVEYARD, source, game);
|
||||||
}
|
player.shuffleLibrary(source, game);
|
||||||
|
return true;
|
||||||
@Override
|
|
||||||
public boolean canTarget(UUID playerId, UUID id, Ability source, Cards cards, Game game) {
|
|
||||||
Card card = cards.get(id, game);
|
|
||||||
if (card != null) {
|
|
||||||
for (UUID targetId : this.getTargets()) {
|
|
||||||
Card iCard = game.getCard(targetId);
|
|
||||||
if (iCard != null && iCard.getName().equals(card.getName())) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return filter.match(card, playerId, game);
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,16 +11,15 @@ import mage.abilities.effects.common.DamagePlayersEffect;
|
||||||
import mage.abilities.effects.common.ExileTargetEffect;
|
import mage.abilities.effects.common.ExileTargetEffect;
|
||||||
import mage.abilities.effects.common.search.SearchLibraryPutInPlayEffect;
|
import mage.abilities.effects.common.search.SearchLibraryPutInPlayEffect;
|
||||||
import mage.abilities.effects.keyword.ScryEffect;
|
import mage.abilities.effects.keyword.ScryEffect;
|
||||||
import mage.cards.Card;
|
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.cards.CardSetInfo;
|
import mage.cards.CardSetInfo;
|
||||||
import mage.cards.Cards;
|
|
||||||
import mage.constants.*;
|
import mage.constants.*;
|
||||||
|
import mage.filter.FilterCard;
|
||||||
import mage.filter.StaticFilters;
|
import mage.filter.StaticFilters;
|
||||||
import mage.filter.common.FilterArtifactCard;
|
import mage.filter.common.FilterArtifactCard;
|
||||||
import mage.game.Game;
|
import mage.game.Game;
|
||||||
import mage.game.permanent.Permanent;
|
import mage.game.permanent.Permanent;
|
||||||
import mage.target.common.TargetCardInLibrary;
|
import mage.target.common.TargetCardWithDifferentNameInLibrary;
|
||||||
import mage.target.common.TargetControlledPermanent;
|
import mage.target.common.TargetControlledPermanent;
|
||||||
import mage.target.targetpointer.FixedTarget;
|
import mage.target.targetpointer.FixedTarget;
|
||||||
|
|
||||||
|
@ -31,6 +30,8 @@ import java.util.UUID;
|
||||||
*/
|
*/
|
||||||
public final class SaheeliRai extends CardImpl {
|
public final class SaheeliRai extends CardImpl {
|
||||||
|
|
||||||
|
private static final FilterCard filter = new FilterArtifactCard("artifact cards with different names");
|
||||||
|
|
||||||
public SaheeliRai(UUID ownerId, CardSetInfo setInfo) {
|
public SaheeliRai(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.PLANESWALKER}, "{1}{U}{R}");
|
super(ownerId, setInfo, new CardType[]{CardType.PLANESWALKER}, "{1}{U}{R}");
|
||||||
this.addSuperType(SuperType.LEGENDARY);
|
this.addSuperType(SuperType.LEGENDARY);
|
||||||
|
@ -51,7 +52,7 @@ public final class SaheeliRai extends CardImpl {
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
|
|
||||||
// -7: Search your library for up to three artifact cards with different names, put them onto the battlefield, then shuffle your library.
|
// -7: Search your library for up to three artifact cards with different names, put them onto the battlefield, then shuffle your library.
|
||||||
this.addAbility(new LoyaltyAbility(new SearchLibraryPutInPlayEffect(new SaheeliRaiTarget()), -7));
|
this.addAbility(new LoyaltyAbility(new SearchLibraryPutInPlayEffect(new TargetCardWithDifferentNameInLibrary(0, 3, filter)), -7));
|
||||||
}
|
}
|
||||||
|
|
||||||
private SaheeliRai(final SaheeliRai card) {
|
private SaheeliRai(final SaheeliRai card) {
|
||||||
|
@ -98,34 +99,3 @@ class SaheeliRaiCreateTokenEffect extends OneShotEffect {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class SaheeliRaiTarget extends TargetCardInLibrary {
|
|
||||||
|
|
||||||
SaheeliRaiTarget() {
|
|
||||||
super(0, 3, new FilterArtifactCard("artifact cards with different names"));
|
|
||||||
}
|
|
||||||
|
|
||||||
SaheeliRaiTarget(final SaheeliRaiTarget target) {
|
|
||||||
super(target);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public SaheeliRaiTarget copy() {
|
|
||||||
return new SaheeliRaiTarget(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean canTarget(UUID playerId, UUID id, Ability source, Cards cards, Game game) {
|
|
||||||
Card card = cards.get(id, game);
|
|
||||||
if (card != null) {
|
|
||||||
for (UUID targetId : this.getTargets()) {
|
|
||||||
Card iCard = game.getCard(targetId);
|
|
||||||
if (iCard != null && iCard.getName().equals(card.getName())) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return filter.match(card, playerId, game);
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,18 +1,13 @@
|
||||||
package mage.cards.s;
|
package mage.cards.s;
|
||||||
|
|
||||||
import mage.abilities.Ability;
|
|
||||||
import mage.abilities.effects.common.search.SearchLibraryPutInHandEffect;
|
import mage.abilities.effects.common.search.SearchLibraryPutInHandEffect;
|
||||||
import mage.cards.Card;
|
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.cards.CardSetInfo;
|
import mage.cards.CardSetInfo;
|
||||||
import mage.cards.Cards;
|
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.filter.FilterCard;
|
import mage.filter.FilterCard;
|
||||||
import mage.filter.common.FilterCreatureCard;
|
import mage.filter.common.FilterCreatureCard;
|
||||||
import mage.game.Game;
|
import mage.target.common.TargetCardWithDifferentNameInLibrary;
|
||||||
import mage.target.common.TargetCardInLibrary;
|
|
||||||
|
|
||||||
import java.util.Objects;
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -20,12 +15,14 @@ import java.util.UUID;
|
||||||
*/
|
*/
|
||||||
public final class SharedSummons extends CardImpl {
|
public final class SharedSummons extends CardImpl {
|
||||||
|
|
||||||
|
private static final FilterCard filter = new FilterCreatureCard("creature cards with different names");
|
||||||
|
|
||||||
public SharedSummons(UUID ownerId, CardSetInfo setInfo) {
|
public SharedSummons(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{3}{G}{G}");
|
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{3}{G}{G}");
|
||||||
|
|
||||||
// Search your library for up to two creature cards with different names, reveal them, put them into your hand, then shuffle your library.
|
// Search your library for up to two creature cards with different names, reveal them, put them into your hand, then shuffle your library.
|
||||||
this.getSpellAbility().addEffect(new SearchLibraryPutInHandEffect(
|
this.getSpellAbility().addEffect(new SearchLibraryPutInHandEffect(
|
||||||
new SharedSummonsTarget(), true, true
|
new TargetCardWithDifferentNameInLibrary(0, 2, filter), true, true
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -38,40 +35,3 @@ public final class SharedSummons extends CardImpl {
|
||||||
return new SharedSummons(this);
|
return new SharedSummons(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class SharedSummonsTarget extends TargetCardInLibrary {
|
|
||||||
|
|
||||||
private static final FilterCard filter2 = new FilterCreatureCard("creature cards with different names");
|
|
||||||
|
|
||||||
SharedSummonsTarget() {
|
|
||||||
super(0, 2, filter2);
|
|
||||||
}
|
|
||||||
|
|
||||||
private SharedSummonsTarget(final SharedSummonsTarget target) {
|
|
||||||
super(target);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public SharedSummonsTarget copy() {
|
|
||||||
return new SharedSummonsTarget(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean canTarget(UUID playerId, UUID id, Ability source, Cards cards, Game game) {
|
|
||||||
Card card = cards.get(id, game);
|
|
||||||
if (card == null || !card.isCreature(game)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!filter.match(card, playerId, game)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return this
|
|
||||||
.getTargets()
|
|
||||||
.stream()
|
|
||||||
.map(game::getCard)
|
|
||||||
.filter(Objects::nonNull)
|
|
||||||
.noneMatch(c -> c != null && c.getName().equals(card.getName()));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,16 +1,12 @@
|
||||||
package mage.cards.t;
|
package mage.cards.t;
|
||||||
|
|
||||||
import mage.abilities.Ability;
|
|
||||||
import mage.abilities.effects.common.search.SearchLibraryPutInHandEffect;
|
import mage.abilities.effects.common.search.SearchLibraryPutInHandEffect;
|
||||||
import mage.cards.Card;
|
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.cards.CardSetInfo;
|
import mage.cards.CardSetInfo;
|
||||||
import mage.cards.Cards;
|
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.constants.SubType;
|
import mage.constants.SubType;
|
||||||
import mage.filter.FilterCard;
|
import mage.filter.FilterCard;
|
||||||
import mage.game.Game;
|
import mage.target.common.TargetCardWithDifferentNameInLibrary;
|
||||||
import mage.target.common.TargetCardInLibrary;
|
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
|
@ -19,12 +15,20 @@ import java.util.UUID;
|
||||||
*/
|
*/
|
||||||
public final class ThreeDreams extends CardImpl {
|
public final class ThreeDreams extends CardImpl {
|
||||||
|
|
||||||
|
private static final FilterCard aurafilter = new FilterCard("Aura cards with different names");
|
||||||
|
|
||||||
|
static {
|
||||||
|
aurafilter.add(SubType.AURA.getPredicate());
|
||||||
|
}
|
||||||
|
|
||||||
public ThreeDreams(UUID ownerId, CardSetInfo setInfo) {
|
public ThreeDreams(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{4}{W}");
|
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{4}{W}");
|
||||||
|
|
||||||
|
|
||||||
// Search your library for up to three Aura cards with different names, reveal them, and put them into your hand. Then shuffle your library.
|
// Search your library for up to three Aura cards with different names, reveal them, and put them into your hand. Then shuffle your library.
|
||||||
this.getSpellAbility().addEffect(new SearchLibraryPutInHandEffect(new ThreeDreamsTarget(), true, true));
|
this.getSpellAbility().addEffect(new SearchLibraryPutInHandEffect(
|
||||||
|
new TargetCardWithDifferentNameInLibrary(0, 3, aurafilter),
|
||||||
|
true, true
|
||||||
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
private ThreeDreams(final ThreeDreams card) {
|
private ThreeDreams(final ThreeDreams card) {
|
||||||
|
@ -36,41 +40,3 @@ public final class ThreeDreams extends CardImpl {
|
||||||
return new ThreeDreams(this);
|
return new ThreeDreams(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class ThreeDreamsTarget extends TargetCardInLibrary {
|
|
||||||
|
|
||||||
private static final FilterCard aurafilter = new FilterCard("Aura cards with different names");
|
|
||||||
|
|
||||||
static {
|
|
||||||
aurafilter.add(SubType.AURA.getPredicate());
|
|
||||||
}
|
|
||||||
|
|
||||||
public ThreeDreamsTarget() {
|
|
||||||
super(0, 3, aurafilter.copy());
|
|
||||||
}
|
|
||||||
|
|
||||||
public ThreeDreamsTarget(final ThreeDreamsTarget target) {
|
|
||||||
super(target);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public ThreeDreamsTarget copy() {
|
|
||||||
return new ThreeDreamsTarget(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean canTarget(UUID playerId, UUID id, Ability source, Cards cards, Game game) {
|
|
||||||
Card card = cards.get(id, game);
|
|
||||||
if (card != null) {
|
|
||||||
// check if card with that name was selected before
|
|
||||||
for (UUID targetId : this.getTargets()) {
|
|
||||||
Card iCard = game.getCard(targetId);
|
|
||||||
if (iCard != null && iCard.getName().equals(card.getName())) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return filter.match(card, playerId, game);
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,16 +1,13 @@
|
||||||
package mage.cards.t;
|
package mage.cards.t;
|
||||||
|
|
||||||
import mage.MageInt;
|
import mage.MageInt;
|
||||||
import mage.abilities.Ability;
|
|
||||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||||
import mage.abilities.condition.common.CastFromEverywhereSourceCondition;
|
import mage.abilities.condition.common.CastFromEverywhereSourceCondition;
|
||||||
import mage.abilities.decorator.ConditionalInterveningIfTriggeredAbility;
|
import mage.abilities.decorator.ConditionalInterveningIfTriggeredAbility;
|
||||||
import mage.abilities.effects.common.search.SearchLibraryPutInHandEffect;
|
import mage.abilities.effects.common.search.SearchLibraryPutInHandEffect;
|
||||||
import mage.abilities.keyword.FlyingAbility;
|
import mage.abilities.keyword.FlyingAbility;
|
||||||
import mage.cards.Card;
|
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.cards.CardSetInfo;
|
import mage.cards.CardSetInfo;
|
||||||
import mage.cards.Cards;
|
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.constants.SubType;
|
import mage.constants.SubType;
|
||||||
import mage.constants.SuperType;
|
import mage.constants.SuperType;
|
||||||
|
@ -18,11 +15,8 @@ import mage.filter.FilterCard;
|
||||||
import mage.filter.common.FilterCreatureCard;
|
import mage.filter.common.FilterCreatureCard;
|
||||||
import mage.filter.predicate.Predicates;
|
import mage.filter.predicate.Predicates;
|
||||||
import mage.filter.predicate.mageobject.NamePredicate;
|
import mage.filter.predicate.mageobject.NamePredicate;
|
||||||
import mage.game.Game;
|
import mage.target.common.TargetCardWithDifferentNameInLibrary;
|
||||||
import mage.target.common.TargetCardInLibrary;
|
|
||||||
import mage.util.CardUtil;
|
|
||||||
|
|
||||||
import java.util.Objects;
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -30,6 +24,14 @@ import java.util.UUID;
|
||||||
*/
|
*/
|
||||||
public final class Tiamat extends CardImpl {
|
public final class Tiamat extends CardImpl {
|
||||||
|
|
||||||
|
private static final FilterCard filter
|
||||||
|
= new FilterCreatureCard("Dragon cards not named Tiamat that each have different names");
|
||||||
|
|
||||||
|
static {
|
||||||
|
filter.add(SubType.DRAGON.getPredicate());
|
||||||
|
filter.add(Predicates.not(new NamePredicate("Tiamat")));
|
||||||
|
}
|
||||||
|
|
||||||
public Tiamat(UUID ownerId, CardSetInfo setInfo) {
|
public Tiamat(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{W}{U}{B}{R}{G}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{W}{U}{B}{R}{G}");
|
||||||
|
|
||||||
|
@ -44,8 +46,9 @@ public final class Tiamat extends CardImpl {
|
||||||
|
|
||||||
// When Tiamat enters the battlefield, if you cast it, search your library for up to five Dragon cards named Tiama that each have different names, reveal them, put them into your hand, then shuffle.
|
// When Tiamat enters the battlefield, if you cast it, search your library for up to five Dragon cards named Tiama that each have different names, reveal them, put them into your hand, then shuffle.
|
||||||
this.addAbility(new ConditionalInterveningIfTriggeredAbility(new EntersBattlefieldTriggeredAbility(
|
this.addAbility(new ConditionalInterveningIfTriggeredAbility(new EntersBattlefieldTriggeredAbility(
|
||||||
new SearchLibraryPutInHandEffect(new TiamatTarget(), true, true)),
|
new SearchLibraryPutInHandEffect(
|
||||||
CastFromEverywhereSourceCondition.instance, "When {this} enters the battlefield, " +
|
new TargetCardWithDifferentNameInLibrary(0, 5, filter), true, true
|
||||||
|
)), CastFromEverywhereSourceCondition.instance, "When {this} enters the battlefield, " +
|
||||||
"if you cast it, search your library for up to five Dragon cards not named Tiamat " +
|
"if you cast it, search your library for up to five Dragon cards not named Tiamat " +
|
||||||
"that each have different names, reveal them, put them into your hand, then shuffle."
|
"that each have different names, reveal them, put them into your hand, then shuffle."
|
||||||
));
|
));
|
||||||
|
@ -60,41 +63,3 @@ public final class Tiamat extends CardImpl {
|
||||||
return new Tiamat(this);
|
return new Tiamat(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class TiamatTarget extends TargetCardInLibrary {
|
|
||||||
|
|
||||||
private static final FilterCard filter
|
|
||||||
= new FilterCreatureCard("Dragon cards not named Tiamat that each have different names");
|
|
||||||
|
|
||||||
static {
|
|
||||||
filter.add(SubType.DRAGON.getPredicate());
|
|
||||||
filter.add(Predicates.not(new NamePredicate("Tiamat")));
|
|
||||||
}
|
|
||||||
|
|
||||||
TiamatTarget() {
|
|
||||||
super(0, 5, filter);
|
|
||||||
}
|
|
||||||
|
|
||||||
private TiamatTarget(final TiamatTarget target) {
|
|
||||||
super(target);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public TiamatTarget copy() {
|
|
||||||
return new TiamatTarget(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean canTarget(UUID playerId, UUID id, Ability source, Cards cards, Game game) {
|
|
||||||
Card card = cards.get(id, game);
|
|
||||||
return card != null
|
|
||||||
&& filter.match(card, playerId, game)
|
|
||||||
&& this
|
|
||||||
.getTargets()
|
|
||||||
.stream()
|
|
||||||
.map(game::getCard)
|
|
||||||
.filter(Objects::nonNull)
|
|
||||||
.map(Card::getName)
|
|
||||||
.noneMatch(n -> CardUtil.haveSameNames(card, n, game));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -3,17 +3,16 @@ package mage.cards.u;
|
||||||
import mage.abilities.Ability;
|
import mage.abilities.Ability;
|
||||||
import mage.abilities.effects.OneShotEffect;
|
import mage.abilities.effects.OneShotEffect;
|
||||||
import mage.abilities.effects.common.search.SearchLibraryPutInHandEffect;
|
import mage.abilities.effects.common.search.SearchLibraryPutInHandEffect;
|
||||||
import mage.cards.Card;
|
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.cards.CardSetInfo;
|
import mage.cards.CardSetInfo;
|
||||||
import mage.cards.Cards;
|
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
|
import mage.constants.ComparisonType;
|
||||||
import mage.constants.Outcome;
|
import mage.constants.Outcome;
|
||||||
import mage.filter.FilterCard;
|
import mage.filter.FilterCard;
|
||||||
import mage.filter.common.FilterCreatureCard;
|
import mage.filter.common.FilterCreatureCard;
|
||||||
|
import mage.filter.predicate.mageobject.ManaValuePredicate;
|
||||||
import mage.game.Game;
|
import mage.game.Game;
|
||||||
import mage.target.common.TargetCardInLibrary;
|
import mage.target.common.TargetCardWithDifferentNameInLibrary;
|
||||||
import mage.util.CardUtil;
|
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
|
@ -41,12 +40,6 @@ public final class UncageTheMenagerie extends CardImpl {
|
||||||
|
|
||||||
class UncageTheMenagerieEffect extends OneShotEffect {
|
class UncageTheMenagerieEffect extends OneShotEffect {
|
||||||
|
|
||||||
private static final FilterCard filter = new FilterCard("creature");
|
|
||||||
|
|
||||||
static {
|
|
||||||
filter.add(CardType.CREATURE.getPredicate());
|
|
||||||
}
|
|
||||||
|
|
||||||
public UncageTheMenagerieEffect() {
|
public UncageTheMenagerieEffect() {
|
||||||
super(Outcome.DrawCard);
|
super(Outcome.DrawCard);
|
||||||
this.staticText = "Search your library for up to X creature cards with different names " +
|
this.staticText = "Search your library for up to X creature cards with different names " +
|
||||||
|
@ -64,42 +57,11 @@ class UncageTheMenagerieEffect extends OneShotEffect {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean apply(Game game, Ability source) {
|
public boolean apply(Game game, Ability source) {
|
||||||
return new SearchLibraryPutInHandEffect(new UncageTheMenagerieTarget(
|
int xValue = source.getManaCostsToPay().getX();
|
||||||
source.getManaCostsToPay().getX()), true, true
|
FilterCard filter = new FilterCreatureCard(xValue + " creature cards with different names that each have mana value " + xValue);
|
||||||
|
filter.add(new ManaValuePredicate(ComparisonType.EQUAL_TO, xValue));
|
||||||
|
return new SearchLibraryPutInHandEffect(
|
||||||
|
new TargetCardWithDifferentNameInLibrary(0, xValue, filter), true, true
|
||||||
).apply(game, source);
|
).apply(game, source);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class UncageTheMenagerieTarget extends TargetCardInLibrary {
|
|
||||||
|
|
||||||
private final int xValue;
|
|
||||||
|
|
||||||
public UncageTheMenagerieTarget(int xValue) {
|
|
||||||
super(0, xValue, new FilterCreatureCard(xValue + " creature cards with different names with mana value " + xValue));
|
|
||||||
this.xValue = xValue;
|
|
||||||
}
|
|
||||||
|
|
||||||
public UncageTheMenagerieTarget(final UncageTheMenagerieTarget target) {
|
|
||||||
super(target);
|
|
||||||
this.xValue = target.xValue;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public UncageTheMenagerieTarget copy() {
|
|
||||||
return new UncageTheMenagerieTarget(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean canTarget(UUID playerId, UUID id, Ability source, Cards cards, Game game) {
|
|
||||||
if (!super.canTarget(playerId, id, source, cards, game)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
Card card = cards.get(id, game);
|
|
||||||
return card.getManaValue() == xValue
|
|
||||||
&& this
|
|
||||||
.getTargets()
|
|
||||||
.stream()
|
|
||||||
.map(game::getCard)
|
|
||||||
.noneMatch(c -> CardUtil.haveSameNames(c, card));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
package mage.target.common;
|
||||||
|
|
||||||
|
import mage.abilities.Ability;
|
||||||
|
import mage.cards.Card;
|
||||||
|
import mage.filter.FilterCard;
|
||||||
|
import mage.game.Game;
|
||||||
|
import mage.util.CardUtil;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author TheElk801
|
||||||
|
*/
|
||||||
|
public class TargetCardWithDifferentNameInLibrary extends TargetCardInLibrary {
|
||||||
|
|
||||||
|
public TargetCardWithDifferentNameInLibrary(int minNumTargets, int maxNumTargets, FilterCard filter) {
|
||||||
|
super(minNumTargets, maxNumTargets, filter);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected TargetCardWithDifferentNameInLibrary(final TargetCardWithDifferentNameInLibrary target) {
|
||||||
|
super(target);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public TargetCardWithDifferentNameInLibrary copy() {
|
||||||
|
return new TargetCardWithDifferentNameInLibrary(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean canTarget(UUID playerId, UUID id, Ability source, Game game) {
|
||||||
|
if (!super.canTarget(playerId, id, source, game)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
Card card = game.getCard(id);
|
||||||
|
return card != null
|
||||||
|
&& this.getTargets()
|
||||||
|
.stream()
|
||||||
|
.map(game::getCard)
|
||||||
|
.noneMatch(c -> CardUtil.haveSameNames(c, card));
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue