diff --git a/Mage.Sets/src/mage/cards/r/RisenNecroregent.java b/Mage.Sets/src/mage/cards/r/RisenNecroregent.java new file mode 100644 index 00000000000..4571e36989a --- /dev/null +++ b/Mage.Sets/src/mage/cards/r/RisenNecroregent.java @@ -0,0 +1,48 @@ +package mage.cards.r; + +import mage.MageInt; +import mage.abilities.common.SimpleStaticAbility; +import mage.abilities.effects.common.CreateTokenEffect; +import mage.abilities.effects.common.continuous.MaxSpeedGainAbilityEffect; +import mage.abilities.keyword.StartYourEnginesAbility; +import mage.abilities.triggers.BeginningOfEndStepTriggeredAbility; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.constants.SubType; +import mage.game.permanent.token.ZombieToken; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class RisenNecroregent extends CardImpl { + + public RisenNecroregent(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{B}"); + + this.subtype.add(SubType.ZOMBIE); + this.subtype.add(SubType.CAT); + this.subtype.add(SubType.KNIGHT); + this.power = new MageInt(5); + this.toughness = new MageInt(4); + + // Start your engines! + this.addAbility(new StartYourEnginesAbility()); + + // Max speed -- At the beginning of your end step, create a 2/2 black Zombie creature token. + this.addAbility(new SimpleStaticAbility(new MaxSpeedGainAbilityEffect( + new BeginningOfEndStepTriggeredAbility(new CreateTokenEffect(new ZombieToken())) + ))); + } + + private RisenNecroregent(final RisenNecroregent card) { + super(card); + } + + @Override + public RisenNecroregent copy() { + return new RisenNecroregent(this); + } +} diff --git a/Mage.Sets/src/mage/sets/Aetherdrift.java b/Mage.Sets/src/mage/sets/Aetherdrift.java index 97503d51bdc..60e89c62097 100644 --- a/Mage.Sets/src/mage/sets/Aetherdrift.java +++ b/Mage.Sets/src/mage/sets/Aetherdrift.java @@ -86,6 +86,7 @@ public final class Aetherdrift extends ExpansionSet { cards.add(new SetCardInfo("Pyrewood Gearhulk", 216, Rarity.MYTHIC, mage.cards.p.PyrewoodGearhulk.class)); cards.add(new SetCardInfo("Rangers' Refueler", 55, Rarity.UNCOMMON, mage.cards.r.RangersRefueler.class)); cards.add(new SetCardInfo("Reef Roads", 259, Rarity.UNCOMMON, mage.cards.r.ReefRoads.class)); + cards.add(new SetCardInfo("Risen Necroregent", 102, Rarity.UNCOMMON, mage.cards.r.RisenNecroregent.class)); cards.add(new SetCardInfo("Riverpyre Verge", 260, Rarity.RARE, mage.cards.r.RiverpyreVerge.class)); cards.add(new SetCardInfo("Rocketeer Boostbuggy", 220, Rarity.UNCOMMON, mage.cards.r.RocketeerBoostbuggy.class)); cards.add(new SetCardInfo("Rocky Roads", 261, Rarity.UNCOMMON, mage.cards.r.RockyRoads.class));