mirror of
https://github.com/correl/mage.git
synced 2025-01-11 19:13:02 +00:00
Nahiri's Stoneblades
This commit is contained in:
parent
394782966a
commit
1ff380db8e
2 changed files with 36 additions and 0 deletions
35
Mage.Sets/src/mage/cards/n/NahirisStoneblades.java
Normal file
35
Mage.Sets/src/mage/cards/n/NahirisStoneblades.java
Normal file
|
@ -0,0 +1,35 @@
|
|||
package mage.cards.n;
|
||||
|
||||
import mage.abilities.effects.common.continuous.BoostTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class NahirisStoneblades extends CardImpl {
|
||||
|
||||
public NahirisStoneblades(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{1}{R}");
|
||||
|
||||
// Up to two target creatures each get +2/+0 until end of turn.
|
||||
this.getSpellAbility().addEffect(new BoostTargetEffect(
|
||||
2, 0, Duration.EndOfTurn
|
||||
).setText("Up to two target creatures each get +2/+0 until end of turn"));
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent(0, 2));
|
||||
}
|
||||
|
||||
private NahirisStoneblades(final NahirisStoneblades card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public NahirisStoneblades copy() {
|
||||
return new NahirisStoneblades(this);
|
||||
}
|
||||
}
|
|
@ -72,6 +72,7 @@ public final class WarOfTheSpark extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Mountain", 261, Rarity.LAND, mage.cards.basiclands.Mountain.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Mowu, Loyal Companion", 167, Rarity.UNCOMMON, mage.cards.m.MowuLoyalCompanion.class));
|
||||
cards.add(new SetCardInfo("Naga Eternal", 60, Rarity.COMMON, mage.cards.n.NagaEternal.class));
|
||||
cards.add(new SetCardInfo("Nahiri's Stoneblades", 139, Rarity.COMMON, mage.cards.n.NahirisStoneblades.class));
|
||||
cards.add(new SetCardInfo("No Escape", 63, Rarity.COMMON, mage.cards.n.NoEscape.class));
|
||||
cards.add(new SetCardInfo("Ob Nixilis's Cruelty", 101, Rarity.COMMON, mage.cards.o.ObNixilissCruelty.class));
|
||||
cards.add(new SetCardInfo("Ob Nixilis, the Hate-Twisted", 100, Rarity.UNCOMMON, mage.cards.o.ObNixilisTheHateTwisted.class));
|
||||
|
|
Loading…
Reference in a new issue