mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Implemented Night Incarnate
This commit is contained in:
parent
bf6d46be9d
commit
fa9e500329
2 changed files with 50 additions and 0 deletions
49
Mage.Sets/src/mage/cards/n/NightIncarnate.java
Normal file
49
Mage.Sets/src/mage/cards/n/NightIncarnate.java
Normal file
|
@ -0,0 +1,49 @@
|
|||
package mage.cards.n;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.LeavesBattlefieldTriggeredAbility;
|
||||
import mage.abilities.effects.common.continuous.BoostAllEffect;
|
||||
import mage.constants.SubType;
|
||||
import mage.abilities.keyword.DeathtouchAbility;
|
||||
import mage.abilities.keyword.EvokeAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class NightIncarnate extends CardImpl {
|
||||
|
||||
public NightIncarnate(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{B}");
|
||||
|
||||
this.subtype.add(SubType.ELEMENTAL);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
// Deathtouch
|
||||
this.addAbility(DeathtouchAbility.getInstance());
|
||||
|
||||
// When Night Incarnate leaves the battlefield, all creatures get -3/-3 until end of turn.
|
||||
this.addAbility(new LeavesBattlefieldTriggeredAbility(
|
||||
new BoostAllEffect(-3, -3, Duration.EndOfTurn), false
|
||||
));
|
||||
|
||||
// Evoke {3}{B}
|
||||
this.addAbility(new EvokeAbility(this, "{3}{B}"));
|
||||
|
||||
}
|
||||
|
||||
public NightIncarnate(final NightIncarnate card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public NightIncarnate copy() {
|
||||
return new NightIncarnate(this);
|
||||
}
|
||||
}
|
|
@ -55,6 +55,7 @@ public final class Commander2018 extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Loyal Guardian", 31, Rarity.UNCOMMON, mage.cards.l.LoyalGuardian.class));
|
||||
cards.add(new SetCardInfo("Loyal Subordinate", 16, Rarity.UNCOMMON, mage.cards.l.LoyalSubordinate.class));
|
||||
cards.add(new SetCardInfo("Nesting Dragon", 24, Rarity.RARE, mage.cards.n.NestingDragon.class));
|
||||
cards.add(new SetCardInfo("Night Incarnate", 17, Rarity.RARE, mage.cards.n.NightIncarnate.class));
|
||||
cards.add(new SetCardInfo("Nylea's Colossus", 33, Rarity.RARE, mage.cards.n.NyleasColossus.class));
|
||||
cards.add(new SetCardInfo("Octopus Umbra", 11, Rarity.RARE, mage.cards.o.OctopusUmbra.class));
|
||||
cards.add(new SetCardInfo("Phyrexian Delver", 115, Rarity.RARE, mage.cards.p.PhyrexianDelver.class));
|
||||
|
|
Loading…
Reference in a new issue