mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
[ZNR] Implemented SKyclave Apparition
This commit is contained in:
parent
29b5d15ca1
commit
7eab9b8a17
2 changed files with 111 additions and 0 deletions
110
Mage.Sets/src/mage/cards/s/SkyclaveApparition.java
Normal file
110
Mage.Sets/src/mage/cards/s/SkyclaveApparition.java
Normal file
|
@ -0,0 +1,110 @@
|
|||
package mage.cards.s;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||
import mage.abilities.common.LeavesBattlefieldTriggeredAbility;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.effects.common.ExileTargetForSourceEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.*;
|
||||
import mage.filter.FilterPermanent;
|
||||
import mage.filter.common.FilterNonlandPermanent;
|
||||
import mage.filter.predicate.Predicates;
|
||||
import mage.filter.predicate.mageobject.ConvertedManaCostPredicate;
|
||||
import mage.filter.predicate.permanent.TokenPredicate;
|
||||
import mage.game.ExileZone;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.game.permanent.token.InscriptionOfInsightToken;
|
||||
import mage.target.TargetPermanent;
|
||||
import mage.util.CardUtil;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class SkyclaveApparition extends CardImpl {
|
||||
|
||||
private static final FilterPermanent filter = new FilterNonlandPermanent(
|
||||
"nonland, nontoken permanent you don't control with converted mana cost 4 or less"
|
||||
);
|
||||
|
||||
static {
|
||||
filter.add(Predicates.not(TokenPredicate.instance));
|
||||
filter.add(TargetController.NOT_YOU.getControllerPredicate());
|
||||
filter.add(new ConvertedManaCostPredicate(ComparisonType.FEWER_THAN, 5));
|
||||
}
|
||||
|
||||
public SkyclaveApparition(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{W}{W}");
|
||||
|
||||
this.subtype.add(SubType.KOR);
|
||||
this.subtype.add(SubType.SPIRIT);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// When Skyclave Apparition enters the battlefield, exile up to one target nonland, nontoken permanent you don't control with converted mana cost 4 or less.
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(new ExileTargetForSourceEffect());
|
||||
ability.addTarget(new TargetPermanent(0, 1, filter, false));
|
||||
this.addAbility(ability);
|
||||
|
||||
// When Skyclave Apparition leaves the battlefield, the exiled card's owner creates an X/X blue Illusion creature token, where X is the converted mana cost of the exiled card.
|
||||
this.addAbility(new LeavesBattlefieldTriggeredAbility(new SkyclaveApparitionEffect(), false));
|
||||
}
|
||||
|
||||
private SkyclaveApparition(final SkyclaveApparition card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SkyclaveApparition copy() {
|
||||
return new SkyclaveApparition(this);
|
||||
}
|
||||
}
|
||||
|
||||
class SkyclaveApparitionEffect extends OneShotEffect {
|
||||
|
||||
SkyclaveApparitionEffect() {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "the exiled card's owner creates an X/X blue Illusion creature token, " +
|
||||
"where X is the converted mana cost of the exiled card";
|
||||
}
|
||||
|
||||
private SkyclaveApparitionEffect(final SkyclaveApparitionEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SkyclaveApparitionEffect copy() {
|
||||
return new SkyclaveApparitionEffect(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Permanent permanentLeftBattlefield = (Permanent) getValue("permanentLeftBattlefield");
|
||||
ExileZone exile = game.getExile().getExileZone(
|
||||
CardUtil.getExileZoneId(game, source.getSourceId(), permanentLeftBattlefield.getZoneChangeCounter(game))
|
||||
);
|
||||
// From ZNR Release Notes:
|
||||
// https://magic.wizards.com/en/articles/archive/feature/zendikar-rising-release-notes-2020-09-10
|
||||
// If Skyclave Apparition's first ability exiled more than one card owned by a single player,
|
||||
// that player creates a token with power and toughness equal to the sum of those cards' converted mana costs.
|
||||
// If the first ability exiled cards owned by more than one player, each of those players creates a token
|
||||
// with power and toughness equal to the sum of the converted mana costs of all cards exiled by the first ability.
|
||||
Map<UUID, Integer> map = new HashMap<>();
|
||||
exile.getCards(game).stream().forEach(card -> map.compute(
|
||||
card.getOwnerId(), (u, i) -> i == null ? card.getConvertedManaCost() : Integer.sum(card.getConvertedManaCost(), i)
|
||||
));
|
||||
for (Map.Entry<UUID, Integer> entry : map.entrySet()) {
|
||||
new InscriptionOfInsightToken(entry.getValue()).putOntoBattlefield(
|
||||
1, game, source.getSourceId(), entry.getKey()
|
||||
);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
|
@ -333,6 +333,7 @@ public final class ZendikarRising extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Silundi Isle", 80, Rarity.UNCOMMON, mage.cards.s.SilundiIsle.class));
|
||||
cards.add(new SetCardInfo("Silundi Vision", 80, Rarity.UNCOMMON, mage.cards.s.SilundiVision.class));
|
||||
cards.add(new SetCardInfo("Sizzling Barrage", 162, Rarity.COMMON, mage.cards.s.SizzlingBarrage.class));
|
||||
cards.add(new SetCardInfo("Skyclave Apparition", 39, Rarity.RARE, mage.cards.s.SkyclaveApparition.class));
|
||||
cards.add(new SetCardInfo("Skyclave Basilica", 40, Rarity.UNCOMMON, mage.cards.s.SkyclaveBasilica.class));
|
||||
cards.add(new SetCardInfo("Skyclave Cleric", 40, Rarity.UNCOMMON, mage.cards.s.SkyclaveCleric.class));
|
||||
cards.add(new SetCardInfo("Skyclave Geopede", 163, Rarity.UNCOMMON, mage.cards.s.SkyclaveGeopede.class));
|
||||
|
|
Loading…
Reference in a new issue