mirror of
https://github.com/correl/mage.git
synced 2024-11-14 11:09:31 +00:00
Implement [MAT] Nahiri, Forged In Fury (#10020)
This commit is contained in:
parent
6249f08def
commit
284efaf064
2 changed files with 99 additions and 0 deletions
98
Mage.Sets/src/mage/cards/n/NahiriForgedInFury.java
Normal file
98
Mage.Sets/src/mage/cards/n/NahiriForgedInFury.java
Normal file
|
@ -0,0 +1,98 @@
|
|||
package mage.cards.n;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.AttacksCreatureYouControlTriggeredAbility;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.dynamicvalue.common.PermanentsOnBattlefieldCount;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.effects.common.AffinityEffect;
|
||||
import mage.abilities.effects.common.asthought.PlayFromNotOwnHandZoneTargetEffect;
|
||||
import mage.abilities.hint.Hint;
|
||||
import mage.abilities.hint.ValueHint;
|
||||
import mage.cards.Card;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.*;
|
||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||
import mage.filter.common.FilterControlledPermanent;
|
||||
import mage.filter.predicate.permanent.EquippedPredicate;
|
||||
import mage.game.Game;
|
||||
import mage.players.Player;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author correl
|
||||
*/
|
||||
public final class NahiriForgedInFury extends CardImpl {
|
||||
private static final FilterControlledPermanent equipmentFilter = new FilterControlledPermanent(SubType.EQUIPMENT,
|
||||
"Equipment");
|
||||
private static final FilterControlledCreaturePermanent equippedFilter = new FilterControlledCreaturePermanent(
|
||||
"an equipped creature you control");
|
||||
private static final Hint hint = new ValueHint(
|
||||
"Equipment you control", new PermanentsOnBattlefieldCount(equipmentFilter));
|
||||
|
||||
static {
|
||||
equippedFilter.add(EquippedPredicate.instance);
|
||||
}
|
||||
|
||||
public NahiriForgedInFury(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[] { CardType.CREATURE }, "{4}{R}{W}");
|
||||
|
||||
this.supertype.add(SuperType.LEGENDARY);
|
||||
this.subtype.add(SubType.KOR);
|
||||
this.subtype.add(SubType.ARTIFICER);
|
||||
this.power = new MageInt(5);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
// Affinity for Equipment
|
||||
this.addAbility(new SimpleStaticAbility(Zone.ALL, new AffinityEffect(equipmentFilter)).addHint(hint));
|
||||
// Whenever an equipped creature you control attacks, exile the top card
|
||||
// of your library. You may play that card this turn. You may cast
|
||||
// Equipment spells this way without paying their mana costs.
|
||||
this.addAbility(new AttacksCreatureYouControlTriggeredAbility(
|
||||
new NahiriForgedInFuryEffect(), false, equippedFilter));
|
||||
}
|
||||
|
||||
private NahiriForgedInFury(final NahiriForgedInFury card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public NahiriForgedInFury copy() {
|
||||
return new NahiriForgedInFury(this);
|
||||
}
|
||||
}
|
||||
|
||||
class NahiriForgedInFuryEffect extends OneShotEffect {
|
||||
NahiriForgedInFuryEffect() {
|
||||
super(Outcome.PlayForFree);
|
||||
this.staticText = "exile the top card of your library. You may play that card this turn. "
|
||||
+ "You may cast Equipment spells this way without paying their mana costs.";
|
||||
}
|
||||
|
||||
NahiriForgedInFuryEffect(final NahiriForgedInFuryEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public NahiriForgedInFuryEffect copy() {
|
||||
return new NahiriForgedInFuryEffect(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Player controller = game.getPlayer(source.getControllerId());
|
||||
if (controller == null) {
|
||||
return false;
|
||||
}
|
||||
Card card = controller.getLibrary().getFromTop(game);
|
||||
if (card == null) {
|
||||
return false;
|
||||
}
|
||||
boolean withoutMana = card.hasSubtype(SubType.EQUIPMENT, game);
|
||||
return PlayFromNotOwnHandZoneTargetEffect.exileAndPlayFromExile(game, source, card, TargetController.YOU,
|
||||
Duration.EndOfTurn, withoutMana, false, false);
|
||||
}
|
||||
}
|
|
@ -44,6 +44,7 @@ public final class MarchOfTheMachineTheAftermath extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Leyline Immersion", 21, Rarity.RARE, mage.cards.l.LeylineImmersion.class));
|
||||
cards.add(new SetCardInfo("Markov Baron", 14, Rarity.UNCOMMON, mage.cards.m.MarkovBaron.class));
|
||||
cards.add(new SetCardInfo("Metropolis Reformer", 4, Rarity.RARE, mage.cards.m.MetropolisReformer.class));
|
||||
cards.add(new SetCardInfo("Nahiri, Forged in Fury", 36, Rarity.MYTHIC, mage.cards.n.NahiriForgedInFury.class));
|
||||
cards.add(new SetCardInfo("Nahiri's Resolve", 37, Rarity.RARE, mage.cards.n.NahirisResolve.class));
|
||||
cards.add(new SetCardInfo("Narset, Enlightened Exile", 38, Rarity.MYTHIC, mage.cards.n.NarsetEnlightenedExile.class));
|
||||
cards.add(new SetCardInfo("Nashi, Moon's Legacy", 39, Rarity.RARE, mage.cards.n.NashiMoonsLegacy.class));
|
||||
|
|
Loading…
Reference in a new issue