[AFR] Implemented Long Rest

This commit is contained in:
Daniel Bomar 2021-07-13 11:20:51 -05:00
parent fafd359db5
commit dbbd265328
No known key found for this signature in database
GPG key ID: C86C8658F4023918
2 changed files with 136 additions and 0 deletions

View file

@ -0,0 +1,135 @@
package mage.cards.l;
import java.util.HashSet;
import java.util.Set;
import java.util.UUID;
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.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.common.TargetCardInYourGraveyard;
import mage.target.targetadjustment.TargetAdjuster;
/**
*
* @author weirddan455
*/
public final class LongRest extends CardImpl {
public LongRest(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{X}{G}{G}{G}");
// Return X target cards with different mana values from your graveyard to your hand.
// If eight or more cards were returned to your hand this way, your life total becomes equal to your starting life total.
// Exile Long Rest.
this.getSpellAbility().setTargetAdjuster(LongRestAdjuster.instance);
this.getSpellAbility().addEffect(new LongRestEffect());
this.getSpellAbility().addEffect(new ExileSpellEffect());
}
private LongRest(final LongRest card) {
super(card);
}
@Override
public LongRest copy() {
return new LongRest(this);
}
}
class LongRestTarget extends TargetCardInYourGraveyard {
private static final FilterCard filter = new FilterCard("cards with different mana values from your graveyard");
public LongRestTarget(int xValue) {
super(xValue, filter);
}
private LongRestTarget(final LongRestTarget target) {
super(target);
}
@Override
public LongRestTarget copy() {
return new LongRestTarget(this);
}
@Override
public Set<UUID> possibleTargets(UUID sourceId, UUID sourceControllerId, Game game) {
Set<UUID> possibleTargets = new HashSet<>();
Set<Integer> manaValues = new HashSet<>();
for (UUID targetId : this.getTargets()) {
Card card = game.getCard(targetId);
if (card != null) {
manaValues.add(card.getManaValue());
}
}
for (UUID possibleTargetId : super.possibleTargets(sourceId, sourceControllerId, game)) {
Card card = game.getCard(possibleTargetId);
if (card != null && !manaValues.contains(card.getManaValue())) {
possibleTargets.add(possibleTargetId);
}
}
return possibleTargets;
}
}
enum LongRestAdjuster implements TargetAdjuster {
instance;
@Override
public void adjustTargets(Ability ability, Game game) {
ability.getTargets().clear();
ability.addTarget(new LongRestTarget(ability.getManaCostsToPay().getX()));
}
}
class LongRestEffect extends OneShotEffect {
public LongRestEffect() {
super(Outcome.Benefit);
this.staticText = "Return X target cards with different mana values from your graveyard to your hand. "
+ "If eight or more cards were returned to your hand this way, your life total becomes equal to your starting life total";
}
private LongRestEffect(final LongRestEffect effect) {
super(effect);
}
@Override
public LongRestEffect copy() {
return new LongRestEffect(this);
}
@Override
public boolean apply(Game game, Ability source) {
Player controller = game.getPlayer(source.getControllerId());
if (controller != null) {
Set<Card> cardsToHand = new HashSet<>();
for (UUID targetId : targetPointer.getTargets(game, source)) {
Card card = game.getCard(targetId);
if (card != null && game.getState().getZone(targetId) == Zone.GRAVEYARD) {
cardsToHand.add(card);
}
}
int numCards = cardsToHand.size();
if (numCards > 0) {
controller.moveCards(cardsToHand, Zone.HAND, source, game);
if (numCards >= 8) {
controller.setLife(game.getLife(), game, source);
}
return true;
}
}
return false;
}
}

View file

@ -146,6 +146,7 @@ public final class AdventuresInTheForgottenRealms extends ExpansionSet {
cards.add(new SetCardInfo("Lightfoot Rogue", 111, Rarity.UNCOMMON, mage.cards.l.LightfootRogue.class));
cards.add(new SetCardInfo("Loathsome Troll", 192, Rarity.UNCOMMON, mage.cards.l.LoathsomeTroll.class));
cards.add(new SetCardInfo("Lolth, Spider Queen", 112, Rarity.MYTHIC, mage.cards.l.LolthSpiderQueen.class));
cards.add(new SetCardInfo("Long Rest", 193, Rarity.RARE, mage.cards.l.LongRest.class));
cards.add(new SetCardInfo("Loyal Warhound", 23, Rarity.RARE, mage.cards.l.LoyalWarhound.class));
cards.add(new SetCardInfo("Lurking Roper", 194, Rarity.UNCOMMON, mage.cards.l.LurkingRoper.class));
cards.add(new SetCardInfo("Magic Missile", 154, Rarity.UNCOMMON, mage.cards.m.MagicMissile.class));