[MKM] Implement Soul Search

This commit is contained in:
theelk801 2024-01-26 10:36:59 -05:00
parent 4e8b9dd33e
commit 4ceb7b6a7a
2 changed files with 85 additions and 0 deletions

View file

@ -0,0 +1,84 @@
package mage.cards.s;
import mage.abilities.Ability;
import mage.abilities.effects.OneShotEffect;
import mage.cards.Card;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.Outcome;
import mage.constants.Zone;
import mage.filter.StaticFilters;
import mage.game.Game;
import mage.game.permanent.token.WhiteBlackSpiritToken;
import mage.players.Player;
import mage.target.TargetCard;
import mage.target.common.TargetCardInHand;
import mage.target.common.TargetOpponent;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class SoulSearch extends CardImpl {
public SoulSearch(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{W}{B}");
// Target opponent reveals their hand. You choose a nonland card from it. Exile that card. If the card's mana value is 1 or less, create a 1/1 white and black Spirit creature token with flying.
this.getSpellAbility().addEffect(new SoulSearchEffect());
this.getSpellAbility().addTarget(new TargetOpponent());
}
private SoulSearch(final SoulSearch card) {
super(card);
}
@Override
public SoulSearch copy() {
return new SoulSearch(this);
}
}
class SoulSearchEffect extends OneShotEffect {
SoulSearchEffect() {
super(Outcome.Benefit);
staticText = "target opponent reveals their hand. You choose a nonland card from it. Exile that card. " +
"If the card's mana value is 1 or less, create a 1/1 white and black Spirit creature token with flying";
}
private SoulSearchEffect(final SoulSearchEffect effect) {
super(effect);
}
@Override
public SoulSearchEffect copy() {
return new SoulSearchEffect(this);
}
@Override
public boolean apply(Game game, Ability source) {
Player controller = game.getPlayer(source.getControllerId());
Player opponent = game.getPlayer(getTargetPointer().getFirst(game, source));
if (controller == null || opponent == null || opponent.getHand().isEmpty()) {
return false;
}
opponent.revealCards(source, opponent.getHand(), game);
if (opponent.getHand().count(StaticFilters.FILTER_CARD_NON_LAND, game) < 1) {
return true;
}
TargetCard target = new TargetCardInHand(StaticFilters.FILTER_CARD_NON_LAND);
controller.choose(Outcome.Discard, opponent.getHand(), target, source, game);
Card card = game.getCard(target.getFirstTarget());
if (card == null) {
return false;
}
controller.moveCards(card, Zone.EXILED, source, game);
if (card.getManaValue() <= 1) {
new WhiteBlackSpiritToken().putOntoBattlefield(1, game, source);
}
return true;
}
}

View file

@ -151,6 +151,7 @@ public final class MurdersAtKarlovManor extends ExpansionSet {
cards.add(new SetCardInfo("Slimy Dualleech", 104, Rarity.UNCOMMON, mage.cards.s.SlimyDualleech.class));
cards.add(new SetCardInfo("Snarling Gorehound", 105, Rarity.COMMON, mage.cards.s.SnarlingGorehound.class));
cards.add(new SetCardInfo("Soul Enervation", 106, Rarity.UNCOMMON, mage.cards.s.SoulEnervation.class));
cards.add(new SetCardInfo("Soul Search", 232, Rarity.UNCOMMON, mage.cards.s.SoulSearch.class));
cards.add(new SetCardInfo("Steamcore Scholar", 71, Rarity.RARE, mage.cards.s.SteamcoreScholar.class));
cards.add(new SetCardInfo("Sudden Setback", 72, Rarity.UNCOMMON, mage.cards.s.SuddenSetback.class));
cards.add(new SetCardInfo("Sumala Sentry", 233, Rarity.UNCOMMON, mage.cards.s.SumalaSentry.class));