mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 22:12:03 -08:00
[CLB] Implemented Myconid Spore Tender
This commit is contained in:
parent
0a68c27833
commit
0edab859a9
2 changed files with 43 additions and 0 deletions
42
Mage.Sets/src/mage/cards/m/MyconidSporeTender.java
Normal file
42
Mage.Sets/src/mage/cards/m/MyconidSporeTender.java
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
package mage.cards.m;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||
import mage.abilities.effects.common.DestroyTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.target.TargetPermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class MyconidSporeTender extends CardImpl {
|
||||
|
||||
public MyconidSporeTender(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{G}");
|
||||
|
||||
this.subtype.add(SubType.FUNGUS);
|
||||
this.power = new MageInt(4);
|
||||
this.toughness = new MageInt(1);
|
||||
|
||||
// Infesting Spores — When Myconid Spore Tender enters the battlefield, destroy up to one target artifact or enchantment.
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(new DestroyTargetEffect());
|
||||
ability.addTarget(new TargetPermanent(0, 1, StaticFilters.FILTER_PERMANENT_ARTIFACT_OR_ENCHANTMENT));
|
||||
this.addAbility(ability.withFlavorWord("Infesting Spores"));
|
||||
}
|
||||
|
||||
private MyconidSporeTender(final MyconidSporeTender card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public MyconidSporeTender copy() {
|
||||
return new MyconidSporeTender(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -167,6 +167,7 @@ public final class CommanderLegendsBattleForBaldursGate extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Moss Diamond", 327, Rarity.COMMON, mage.cards.m.MossDiamond.class));
|
||||
cards.add(new SetCardInfo("Mountain", 463, Rarity.LAND, mage.cards.basiclands.Mountain.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Murder", 134, Rarity.COMMON, mage.cards.m.Murder.class));
|
||||
cards.add(new SetCardInfo("Myconid Spore Tender", 243, Rarity.COMMON, mage.cards.m.MyconidSporeTender.class));
|
||||
cards.add(new SetCardInfo("Mystery Key", 85, Rarity.UNCOMMON, mage.cards.m.MysteryKey.class));
|
||||
cards.add(new SetCardInfo("Nalia de'Arnise", 649, Rarity.MYTHIC, mage.cards.n.NaliaDeArnise.class));
|
||||
cards.add(new SetCardInfo("Nature's Lore", 244, Rarity.COMMON, mage.cards.n.NaturesLore.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue