[40K] Implemented Night Scythe

This commit is contained in:
Evan Kranzler 2022-09-16 07:16:07 -04:00
parent 87cc740369
commit 416b8d37f9
2 changed files with 49 additions and 0 deletions

View file

@ -0,0 +1,48 @@
package mage.cards.n;
import mage.MageInt;
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
import mage.abilities.effects.common.CreateTokenEffect;
import mage.abilities.keyword.CrewAbility;
import mage.abilities.keyword.FlyingAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.game.permanent.token.NecronWarriorToken;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class NightScythe extends CardImpl {
public NightScythe(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{3}");
this.subtype.add(SubType.VEHICLE);
this.power = new MageInt(3);
this.toughness = new MageInt(1);
// Flying
this.addAbility(FlyingAbility.getInstance());
// Invasion Beams -- When Night Scythe enters the battlefield, create a 2/2 black Necron Warrior artifact creature token.
this.addAbility(new EntersBattlefieldTriggeredAbility(
new CreateTokenEffect(new NecronWarriorToken())
).withFlavorWord("Invasion Beams"));
// Crew 2
this.addAbility(new CrewAbility(2));
}
private NightScythe(final NightScythe card) {
super(card);
}
@Override
public NightScythe copy() {
return new NightScythe(this);
}
}

View file

@ -99,6 +99,7 @@ public final class Warhammer40000 extends ExpansionSet {
cards.add(new SetCardInfo("Mutilate", 203, Rarity.RARE, mage.cards.m.Mutilate.class));
cards.add(new SetCardInfo("Mystic Forge", 246, Rarity.RARE, mage.cards.m.MysticForge.class));
cards.add(new SetCardInfo("New Horizons", 218, Rarity.COMMON, mage.cards.n.NewHorizons.class));
cards.add(new SetCardInfo("Night Scythe", 162, Rarity.UNCOMMON, mage.cards.n.NightScythe.class));
cards.add(new SetCardInfo("Noise Marine", 82, Rarity.UNCOMMON, mage.cards.n.NoiseMarine.class));
cards.add(new SetCardInfo("Old One Eye", 96, Rarity.RARE, mage.cards.o.OldOneEye.class));
cards.add(new SetCardInfo("Opal Palace", 286, Rarity.COMMON, mage.cards.o.OpalPalace.class));