mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 12:02:01 -08:00
[VOC] Implemented Sudden Salvation
This commit is contained in:
parent
8fd2ed476e
commit
db29b009cd
2 changed files with 97 additions and 0 deletions
96
Mage.Sets/src/mage/cards/s/SuddenSalvation.java
Normal file
96
Mage.Sets/src/mage/cards/s/SuddenSalvation.java
Normal file
|
|
@ -0,0 +1,96 @@
|
||||||
|
package mage.cards.s;
|
||||||
|
|
||||||
|
import mage.abilities.Ability;
|
||||||
|
import mage.abilities.effects.OneShotEffect;
|
||||||
|
import mage.cards.CardImpl;
|
||||||
|
import mage.cards.CardSetInfo;
|
||||||
|
import mage.cards.Cards;
|
||||||
|
import mage.cards.CardsImpl;
|
||||||
|
import mage.constants.CardType;
|
||||||
|
import mage.constants.Outcome;
|
||||||
|
import mage.constants.Zone;
|
||||||
|
import mage.filter.FilterCard;
|
||||||
|
import mage.filter.common.FilterPermanentCard;
|
||||||
|
import mage.filter.predicate.card.PutIntoGraveFromBattlefieldThisTurnPredicate;
|
||||||
|
import mage.game.Controllable;
|
||||||
|
import mage.game.Game;
|
||||||
|
import mage.players.Player;
|
||||||
|
import mage.target.common.TargetCardInGraveyard;
|
||||||
|
import mage.watchers.common.CardsPutIntoGraveyardWatcher;
|
||||||
|
|
||||||
|
import java.util.Objects;
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author TheElk801
|
||||||
|
*/
|
||||||
|
public final class SuddenSalvation extends CardImpl {
|
||||||
|
|
||||||
|
private static final FilterCard filter = new FilterPermanentCard(
|
||||||
|
"permanent cards in graveyards that were put there from the battlefield this turn"
|
||||||
|
);
|
||||||
|
|
||||||
|
static {
|
||||||
|
filter.add(PutIntoGraveFromBattlefieldThisTurnPredicate.instance);
|
||||||
|
}
|
||||||
|
|
||||||
|
public SuddenSalvation(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{2}{W}{W}");
|
||||||
|
|
||||||
|
// Choose up to three target permanent cards in graveyards that were put there from the battlefield this turn. Return them to the battlefield tapped under their owners' control. You draw a card for each opponent who controls one or more of those permanents.
|
||||||
|
this.getSpellAbility().addEffect(new SuddenSalvationEffect());
|
||||||
|
this.getSpellAbility().addTarget(new TargetCardInGraveyard(0, 3, filter));
|
||||||
|
this.getSpellAbility().addWatcher(new CardsPutIntoGraveyardWatcher());
|
||||||
|
}
|
||||||
|
|
||||||
|
private SuddenSalvation(final SuddenSalvation card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public SuddenSalvation copy() {
|
||||||
|
return new SuddenSalvation(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class SuddenSalvationEffect extends OneShotEffect {
|
||||||
|
|
||||||
|
SuddenSalvationEffect() {
|
||||||
|
super(Outcome.Benefit);
|
||||||
|
staticText = "choose up to three target permanent cards in graveyards " +
|
||||||
|
"that were put there from the battlefield this turn. " +
|
||||||
|
"Return them to the battlefield tapped under their owners' control. " +
|
||||||
|
"You draw a card for each opponent who controls one or more of those permanents";
|
||||||
|
}
|
||||||
|
|
||||||
|
private SuddenSalvationEffect(final SuddenSalvationEffect effect) {
|
||||||
|
super(effect);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public SuddenSalvationEffect copy() {
|
||||||
|
return new SuddenSalvationEffect(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean apply(Game game, Ability source) {
|
||||||
|
Player player = game.getPlayer(source.getControllerId());
|
||||||
|
Cards cards = new CardsImpl(getTargetPointer().getTargets(game, source));
|
||||||
|
if (player == null || cards.isEmpty()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
player.moveCards(
|
||||||
|
cards.getCards(game), Zone.BATTLEFIELD, source, game,
|
||||||
|
true, false, true, null
|
||||||
|
);
|
||||||
|
int opponents = cards.stream()
|
||||||
|
.map(game::getPermanent)
|
||||||
|
.filter(Objects::nonNull)
|
||||||
|
.map(Controllable::getControllerId)
|
||||||
|
.distinct()
|
||||||
|
.mapToInt(uuid -> player.hasOpponent(uuid, game) ? 1 : 0)
|
||||||
|
.sum();
|
||||||
|
player.drawCards(opponents, source, game);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -133,6 +133,7 @@ public final class CrimsonVowCommander extends ExpansionSet {
|
||||||
cards.add(new SetCardInfo("Stromkirk Captain", 157, Rarity.UNCOMMON, mage.cards.s.StromkirkCaptain.class));
|
cards.add(new SetCardInfo("Stromkirk Captain", 157, Rarity.UNCOMMON, mage.cards.s.StromkirkCaptain.class));
|
||||||
cards.add(new SetCardInfo("Stromkirk Condemned", 137, Rarity.RARE, mage.cards.s.StromkirkCondemned.class));
|
cards.add(new SetCardInfo("Stromkirk Condemned", 137, Rarity.RARE, mage.cards.s.StromkirkCondemned.class));
|
||||||
cards.add(new SetCardInfo("Stromkirk Occultist", 151, Rarity.RARE, mage.cards.s.StromkirkOccultist.class));
|
cards.add(new SetCardInfo("Stromkirk Occultist", 151, Rarity.RARE, mage.cards.s.StromkirkOccultist.class));
|
||||||
|
cards.add(new SetCardInfo("Sudden Salvation", 10, Rarity.RARE, mage.cards.s.SuddenSalvation.class));
|
||||||
cards.add(new SetCardInfo("Supreme Phantom", 115, Rarity.RARE, mage.cards.s.SupremePhantom.class));
|
cards.add(new SetCardInfo("Supreme Phantom", 115, Rarity.RARE, mage.cards.s.SupremePhantom.class));
|
||||||
cards.add(new SetCardInfo("Swiftfoot Boots", 169, Rarity.UNCOMMON, mage.cards.s.SwiftfootBoots.class));
|
cards.add(new SetCardInfo("Swiftfoot Boots", 169, Rarity.UNCOMMON, mage.cards.s.SwiftfootBoots.class));
|
||||||
cards.add(new SetCardInfo("Swords to Plowshares", 99, Rarity.UNCOMMON, mage.cards.s.SwordsToPlowshares.class));
|
cards.add(new SetCardInfo("Swords to Plowshares", 99, Rarity.UNCOMMON, mage.cards.s.SwordsToPlowshares.class));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue