diff --git a/Mage.Sets/src/mage/cards/u/UndercellarMyconid.java b/Mage.Sets/src/mage/cards/u/UndercellarMyconid.java new file mode 100644 index 00000000000..6790fec809b --- /dev/null +++ b/Mage.Sets/src/mage/cards/u/UndercellarMyconid.java @@ -0,0 +1,44 @@ +package mage.cards.u; + +import mage.MageInt; +import mage.abilities.common.EntersBattlefieldOrDiesSourceTriggeredAbility; +import mage.abilities.effects.common.CreateTokenEffect; +import mage.abilities.mana.AnyColorManaAbility; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.constants.SubType; +import mage.game.permanent.token.SaprolingToken; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class UndercellarMyconid extends CardImpl { + + public UndercellarMyconid(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{G}"); + + this.subtype.add(SubType.FUNGUS); + this.power = new MageInt(1); + this.toughness = new MageInt(2); + + // Whenever Undercellar Myconid enters the battlefield or dies, create a 1/1 green Saproling creature token. + this.addAbility(new EntersBattlefieldOrDiesSourceTriggeredAbility( + new CreateTokenEffect(new SaprolingToken()), false + )); + + // {T}: Add one mana of any color. + this.addAbility(new AnyColorManaAbility()); + } + + private UndercellarMyconid(final UndercellarMyconid card) { + super(card); + } + + @Override + public UndercellarMyconid copy() { + return new UndercellarMyconid(this); + } +} diff --git a/Mage.Sets/src/mage/sets/CommanderLegendsBattleForBaldursGate.java b/Mage.Sets/src/mage/sets/CommanderLegendsBattleForBaldursGate.java index fcdd6d485a4..c56c4b192a9 100644 --- a/Mage.Sets/src/mage/sets/CommanderLegendsBattleForBaldursGate.java +++ b/Mage.Sets/src/mage/sets/CommanderLegendsBattleForBaldursGate.java @@ -237,6 +237,7 @@ public final class CommanderLegendsBattleForBaldursGate extends ExpansionSet { cards.add(new SetCardInfo("Treasure Keeper", 341, Rarity.UNCOMMON, mage.cards.t.TreasureKeeper.class)); cards.add(new SetCardInfo("Two-Handed Axe", 203, Rarity.UNCOMMON, mage.cards.t.TwoHandedAxe.class)); cards.add(new SetCardInfo("Tymora's Invoker", 101, Rarity.COMMON, mage.cards.t.TymorasInvoker.class)); + cards.add(new SetCardInfo("Undercellar Myconid", 259, Rarity.COMMON, mage.cards.u.UndercellarMyconid.class)); cards.add(new SetCardInfo("Undermountain Adventurer", 260, Rarity.RARE, mage.cards.u.UndermountainAdventurer.class)); cards.add(new SetCardInfo("Universal Solvent", 342, Rarity.COMMON, mage.cards.u.UniversalSolvent.class)); cards.add(new SetCardInfo("Veteran Soldier", 48, Rarity.UNCOMMON, mage.cards.v.VeteranSoldier.class));