[UNF] Implemented Pair o' Dice Lost

This commit is contained in:
Evan Kranzler 2022-10-18 19:15:03 -04:00
parent 8142c4b2ec
commit 55d9bc6655
2 changed files with 115 additions and 0 deletions

View file

@ -0,0 +1,114 @@
package mage.cards.p;
import mage.abilities.Ability;
import mage.abilities.effects.OneShotEffect;
import mage.abilities.effects.common.ExileSpellEffect;
import mage.cards.Card;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.cards.CardsImpl;
import mage.constants.CardType;
import mage.constants.Outcome;
import mage.constants.Zone;
import mage.filter.FilterCard;
import mage.game.Game;
import mage.players.Player;
import mage.target.TargetCard;
import mage.target.common.TargetCardInYourGraveyard;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class PairODiceLost extends CardImpl {
public PairODiceLost(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{3}{G}{G}");
// Roll two six-sided dice. Return any number of cards with total mana value X or less from your graveyard to your hand, where X is the total of those results. Exile Pair o' Dice Lost.
this.getSpellAbility().addEffect(new PairODiceLostEffect());
this.getSpellAbility().addEffect(new ExileSpellEffect());
}
private PairODiceLost(final PairODiceLost card) {
super(card);
}
@Override
public PairODiceLost copy() {
return new PairODiceLost(this);
}
}
class PairODiceLostEffect extends OneShotEffect {
PairODiceLostEffect() {
super(Outcome.Benefit);
staticText = "roll two six-sided dice. Return any number of cards with total mana value X " +
"or less from your graveyard to your hand, where X is the total of those results";
}
private PairODiceLostEffect(final PairODiceLostEffect effect) {
super(effect);
}
@Override
public PairODiceLostEffect copy() {
return new PairODiceLostEffect(this);
}
@Override
public boolean apply(Game game, Ability source) {
Player player = game.getPlayer(source.getControllerId());
if (player == null) {
return false;
}
int rolls = player
.rollDice(outcome, source, game, 6, 2, 0)
.stream()
.mapToInt(x -> x)
.sum();
TargetCard target = new PairODiceLostTarget(rolls);
player.choose(outcome, target, source, game);
player.moveCards(new CardsImpl(target.getTargets()), Zone.HAND, source, game);
return true;
}
}
class PairODiceLostTarget extends TargetCardInYourGraveyard {
private static final FilterCard filter = new FilterCard(
"cards with total mana value X or less from your graveyard"
);
private final int value;
PairODiceLostTarget(int value) {
super(0, Integer.MAX_VALUE, filter, true);
this.value = value;
}
private PairODiceLostTarget(final PairODiceLostTarget target) {
super(target);
this.value = target.value;
}
@Override
public PairODiceLostTarget copy() {
return new PairODiceLostTarget(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);
return card != null &&
this.getTargets()
.stream()
.map(game::getCard)
.mapToInt(Card::getManaValue)
.sum() + card.getManaValue() <= value;
}
}

View file

@ -39,6 +39,7 @@ public final class Unfinity extends ExpansionSet {
cards.add(new SetCardInfo("Non-Human Cannonball", 115, Rarity.COMMON, mage.cards.n.NonHumanCannonball.class));
cards.add(new SetCardInfo("One-Clown Band", 117, Rarity.COMMON, mage.cards.o.OneClownBand.class));
cards.add(new SetCardInfo("Overgrown Tomb", 284, Rarity.RARE, mage.cards.o.OvergrownTomb.class));
cards.add(new SetCardInfo("Pair o' Dice Lost", 149, Rarity.UNCOMMON, mage.cards.p.PairODiceLost.class));
cards.add(new SetCardInfo("Plains", 235, Rarity.LAND, mage.cards.basiclands.Plains.class, FULL_ART_BFZ_VARIOUS));
cards.add(new SetCardInfo("Sacred Foundry", 285, Rarity.RARE, mage.cards.s.SacredFoundry.class));
cards.add(new SetCardInfo("Saw in Half", 88, Rarity.RARE, mage.cards.s.SawInHalf.class));