1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-12 01:01:04 -09:00

[MH2] Implemented Rift Sower

This commit is contained in:
Evan Kranzler 2021-05-26 20:06:05 -04:00
parent 26238867b1
commit c522f4b6c3
2 changed files with 43 additions and 0 deletions
Mage.Sets/src/mage

View file

@ -0,0 +1,42 @@
package mage.cards.r;
import mage.MageInt;
import mage.abilities.costs.mana.ManaCostsImpl;
import mage.abilities.keyword.SuspendAbility;
import mage.abilities.mana.AnyColorManaAbility;
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 RiftSower extends CardImpl {
public RiftSower(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{G}");
this.subtype.add(SubType.ELF);
this.subtype.add(SubType.DRUID);
this.power = new MageInt(1);
this.toughness = new MageInt(3);
// {T}: Add one mana of any color.
this.addAbility(new AnyColorManaAbility());
// Suspend 2{G}
this.addAbility(new SuspendAbility(2, new ManaCostsImpl<>("{G}"), this));
}
private RiftSower(final RiftSower card) {
super(card);
}
@Override
public RiftSower copy() {
return new RiftSower(this);
}
}

View file

@ -63,6 +63,7 @@ public final class ModernHorizons2 extends ExpansionSet {
cards.add(new SetCardInfo("Prismatic Ending", 25, Rarity.UNCOMMON, mage.cards.p.PrismaticEnding.class));
cards.add(new SetCardInfo("Profane Tutor", 97, Rarity.RARE, mage.cards.p.ProfaneTutor.class));
cards.add(new SetCardInfo("Ravenous Squirrel", 211, Rarity.UNCOMMON, mage.cards.r.RavenousSquirrel.class));
cards.add(new SetCardInfo("Rift Sower", 170, Rarity.COMMON, mage.cards.r.RiftSower.class));
cards.add(new SetCardInfo("Rishadan Dockhand", 59, Rarity.RARE, mage.cards.r.RishadanDockhand.class));
cards.add(new SetCardInfo("Sanctum Prelate", 491, Rarity.MYTHIC, mage.cards.s.SanctumPrelate.class));
cards.add(new SetCardInfo("Scalding Tarn", 254, Rarity.RARE, mage.cards.s.ScaldingTarn.class));