implement [MH3] Nightshade Dryad

This commit is contained in:
Susucre 2024-05-30 13:23:36 +02:00
parent 21826073db
commit bc4111f59b
2 changed files with 45 additions and 0 deletions

View file

@ -0,0 +1,44 @@
package mage.cards.n;
import mage.MageInt;
import mage.abilities.keyword.DeathtouchAbility;
import mage.abilities.mana.AnyColorManaAbility;
import mage.abilities.mana.ColorlessManaAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
import java.util.UUID;
/**
* @author Susucr
*/
public final class NightshadeDryad extends CardImpl {
public NightshadeDryad(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{G}");
this.subtype.add(SubType.DRYAD);
this.power = new MageInt(1);
this.toughness = new MageInt(2);
// Deathtouch
this.addAbility(DeathtouchAbility.getInstance());
// {T}: Add {C}.
this.addAbility(new ColorlessManaAbility());
// {T}: Add one mana of any color.
this.addAbility(new AnyColorManaAbility());
}
private NightshadeDryad(final NightshadeDryad card) {
super(card);
}
@Override
public NightshadeDryad copy() {
return new NightshadeDryad(this);
}
}

View file

@ -140,6 +140,7 @@ public final class ModernHorizons3 extends ExpansionSet {
cards.add(new SetCardInfo("Nadu, Winged Wisdom", 193, Rarity.RARE, mage.cards.n.NaduWingedWisdom.class));
cards.add(new SetCardInfo("Nesting Grounds", 302, Rarity.RARE, mage.cards.n.NestingGrounds.class));
cards.add(new SetCardInfo("Nethergoyf", 103, Rarity.MYTHIC, mage.cards.n.Nethergoyf.class));
cards.add(new SetCardInfo("Nightshade Dryad", 163, Rarity.COMMON, mage.cards.n.NightshadeDryad.class));
cards.add(new SetCardInfo("Null Elemental Blast", 12, Rarity.UNCOMMON, mage.cards.n.NullElementalBlast.class));
cards.add(new SetCardInfo("Nulldrifter", 13, Rarity.RARE, mage.cards.n.Nulldrifter.class));
cards.add(new SetCardInfo("Nyxborn Hydra", 164, Rarity.COMMON, mage.cards.n.NyxbornHydra.class));