mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
[NCC] Implemented Maestros Confluence
This commit is contained in:
parent
19ebcf62b9
commit
8b54e3a702
2 changed files with 95 additions and 0 deletions
94
Mage.Sets/src/mage/cards/m/MaestrosConfluence.java
Normal file
94
Mage.Sets/src/mage/cards/m/MaestrosConfluence.java
Normal file
|
@ -0,0 +1,94 @@
|
||||||
|
package mage.cards.m;
|
||||||
|
|
||||||
|
import mage.abilities.Ability;
|
||||||
|
import mage.abilities.Mode;
|
||||||
|
import mage.abilities.effects.OneShotEffect;
|
||||||
|
import mage.abilities.effects.common.ReturnFromGraveyardToHandTargetEffect;
|
||||||
|
import mage.abilities.effects.common.combat.GoadTargetEffect;
|
||||||
|
import mage.abilities.effects.common.continuous.BoostTargetEffect;
|
||||||
|
import mage.cards.CardImpl;
|
||||||
|
import mage.cards.CardSetInfo;
|
||||||
|
import mage.constants.CardType;
|
||||||
|
import mage.constants.Outcome;
|
||||||
|
import mage.filter.FilterCard;
|
||||||
|
import mage.filter.StaticFilters;
|
||||||
|
import mage.filter.common.FilterInstantOrSorceryCard;
|
||||||
|
import mage.filter.predicate.mageobject.MonocoloredPredicate;
|
||||||
|
import mage.game.Game;
|
||||||
|
import mage.game.permanent.Permanent;
|
||||||
|
import mage.target.TargetPlayer;
|
||||||
|
import mage.target.common.TargetCardInYourGraveyard;
|
||||||
|
import mage.target.common.TargetCreaturePermanent;
|
||||||
|
import mage.target.targetpointer.FixedTarget;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author TheElk801
|
||||||
|
*/
|
||||||
|
public final class MaestrosConfluence extends CardImpl {
|
||||||
|
|
||||||
|
private static final FilterCard filter
|
||||||
|
= new FilterInstantOrSorceryCard("monocolored instant or sorcery card from your graveyard");
|
||||||
|
|
||||||
|
static {
|
||||||
|
filter.add(MonocoloredPredicate.instance);
|
||||||
|
}
|
||||||
|
|
||||||
|
public MaestrosConfluence(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{3}{U}{B}{R}");
|
||||||
|
|
||||||
|
// Choose three. You may choose the same mode more than once.
|
||||||
|
this.getSpellAbility().getModes().setMinModes(3);
|
||||||
|
this.getSpellAbility().getModes().setMaxModes(3);
|
||||||
|
this.getSpellAbility().getModes().setEachModeMoreThanOnce(true);
|
||||||
|
|
||||||
|
// • Return target monocolored instant or sorcery card from your graveyard to your hand.
|
||||||
|
this.getSpellAbility().addEffect(new ReturnFromGraveyardToHandTargetEffect());
|
||||||
|
this.getSpellAbility().addTarget(new TargetCardInYourGraveyard(filter));
|
||||||
|
|
||||||
|
// • Target creature gets -3/-3 until end of turn.
|
||||||
|
this.getSpellAbility().addMode(new Mode(
|
||||||
|
new BoostTargetEffect(-3, -3)
|
||||||
|
).addTarget(new TargetCreaturePermanent()));
|
||||||
|
|
||||||
|
// • Goad each creature target player controls.
|
||||||
|
this.getSpellAbility().addMode(new Mode(new MaestrosConfluenceEffect()).addTarget(new TargetPlayer()));
|
||||||
|
}
|
||||||
|
|
||||||
|
private MaestrosConfluence(final MaestrosConfluence card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public MaestrosConfluence copy() {
|
||||||
|
return new MaestrosConfluence(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class MaestrosConfluenceEffect extends OneShotEffect {
|
||||||
|
|
||||||
|
MaestrosConfluenceEffect() {
|
||||||
|
super(Outcome.Benefit);
|
||||||
|
staticText = "goad each creature target player controls";
|
||||||
|
}
|
||||||
|
|
||||||
|
private MaestrosConfluenceEffect(final MaestrosConfluenceEffect effect) {
|
||||||
|
super(effect);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public MaestrosConfluenceEffect copy() {
|
||||||
|
return new MaestrosConfluenceEffect(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean apply(Game game, Ability source) {
|
||||||
|
for (Permanent permanent : game.getBattlefield().getActivePermanents(
|
||||||
|
StaticFilters.FILTER_CONTROLLED_CREATURE, source.getFirstTarget(), source, game
|
||||||
|
)) {
|
||||||
|
game.addEffect(new GoadTargetEffect().setTargetPointer(new FixedTarget(permanent, game)), source);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
|
@ -31,6 +31,7 @@ public final class NewCapennaCommander extends ExpansionSet {
|
||||||
cards.add(new SetCardInfo("Damning Verdict", 15, Rarity.RARE, mage.cards.d.DamningVerdict.class));
|
cards.add(new SetCardInfo("Damning Verdict", 15, Rarity.RARE, mage.cards.d.DamningVerdict.class));
|
||||||
cards.add(new SetCardInfo("Extravagant Replication", 25, Rarity.RARE, mage.cards.e.ExtravagantReplication.class));
|
cards.add(new SetCardInfo("Extravagant Replication", 25, Rarity.RARE, mage.cards.e.ExtravagantReplication.class));
|
||||||
cards.add(new SetCardInfo("Kitt Kanto, Mayhem Diva", 4, Rarity.MYTHIC, mage.cards.k.KittKantoMayhemDiva.class));
|
cards.add(new SetCardInfo("Kitt Kanto, Mayhem Diva", 4, Rarity.MYTHIC, mage.cards.k.KittKantoMayhemDiva.class));
|
||||||
|
cards.add(new SetCardInfo("Maestros Confluence", 75, Rarity.RARE, mage.cards.m.MaestrosConfluence.class));
|
||||||
cards.add(new SetCardInfo("Spellbinding Soprano", 53, Rarity.RARE, mage.cards.s.SpellbindingSoprano.class));
|
cards.add(new SetCardInfo("Spellbinding Soprano", 53, Rarity.RARE, mage.cards.s.SpellbindingSoprano.class));
|
||||||
|
|
||||||
cards.removeIf(setCardInfo -> unfinished.contains(setCardInfo.getName())); // remove when shield counters are implemented
|
cards.removeIf(setCardInfo -> unfinished.contains(setCardInfo.getName())); // remove when shield counters are implemented
|
||||||
|
|
Loading…
Reference in a new issue