mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 12:52:06 -08:00
[CLB] Implemented Undercellar Myconid
This commit is contained in:
parent
f7e8554445
commit
09ad5da583
2 changed files with 45 additions and 0 deletions
44
Mage.Sets/src/mage/cards/u/UndercellarMyconid.java
Normal file
44
Mage.Sets/src/mage/cards/u/UndercellarMyconid.java
Normal file
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
@ -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));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue