mirror of
https://github.com/correl/mage.git
synced 2024-11-14 11:09:31 +00:00
Implemented Ninja of the New Moon
This commit is contained in:
parent
f170a888e7
commit
cc7bdd9e1c
3 changed files with 40 additions and 0 deletions
38
Mage.Sets/src/mage/cards/n/NinjaOfTheNewMoon.java
Normal file
38
Mage.Sets/src/mage/cards/n/NinjaOfTheNewMoon.java
Normal file
|
@ -0,0 +1,38 @@
|
|||
package mage.cards.n;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.keyword.NinjutsuAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class NinjaOfTheNewMoon extends CardImpl {
|
||||
|
||||
public NinjaOfTheNewMoon(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{B}{B}");
|
||||
|
||||
this.subtype.add(SubType.SPIRIT);
|
||||
this.subtype.add(SubType.NINJA);
|
||||
this.power = new MageInt(6);
|
||||
this.toughness = new MageInt(3);
|
||||
|
||||
// Ninjutsu {3}{B}
|
||||
this.addAbility(new NinjutsuAbility(new ManaCostsImpl("{3}{B}")));
|
||||
}
|
||||
|
||||
private NinjaOfTheNewMoon(final NinjaOfTheNewMoon card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public NinjaOfTheNewMoon copy() {
|
||||
return new NinjaOfTheNewMoon(this);
|
||||
}
|
||||
}
|
|
@ -128,6 +128,7 @@ public final class ModernHorizons extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Nature's Chant", 210, Rarity.COMMON, mage.cards.n.NaturesChant.class));
|
||||
cards.add(new SetCardInfo("Nether Spirit", 98, Rarity.RARE, mage.cards.n.NetherSpirit.class));
|
||||
cards.add(new SetCardInfo("Nimble Mongoose", 174, Rarity.COMMON, mage.cards.n.NimbleMongoose.class));
|
||||
cards.add(new SetCardInfo("Ninja of the New Moon", 99, Rarity.COMMON, mage.cards.n.NinjaOfTheNewMoon.class));
|
||||
cards.add(new SetCardInfo("Nurturing Peatland", 243, Rarity.RARE, mage.cards.n.NurturingPeatland.class));
|
||||
cards.add(new SetCardInfo("On Thin Ice", 20, Rarity.RARE, mage.cards.o.OnThinIce.class));
|
||||
cards.add(new SetCardInfo("Orcish Hellraiser", 136, Rarity.COMMON, mage.cards.o.OrcishHellraiser.class));
|
||||
|
|
|
@ -65,6 +65,7 @@ Mountaincycling|cost|
|
|||
Mountainwalk|new|
|
||||
Morph|card, cost|
|
||||
Myriad|new|
|
||||
Ninjutsu|cost|
|
||||
Outlast|cost|
|
||||
Persist|new|
|
||||
Phasing|instance|
|
||||
|
|
Loading…
Reference in a new issue