[C21] Implemented Blight Mound

This commit is contained in:
Evan Kranzler 2021-04-11 21:22:19 -04:00
parent b23240105c
commit a7d3b82cbe
2 changed files with 67 additions and 0 deletions

View file

@ -0,0 +1,66 @@
package mage.cards.b;
import mage.abilities.Ability;
import mage.abilities.common.DiesCreatureTriggeredAbility;
import mage.abilities.common.SimpleStaticAbility;
import mage.abilities.effects.common.CreateTokenEffect;
import mage.abilities.effects.common.continuous.BoostControlledEffect;
import mage.abilities.effects.common.continuous.GainAbilityControlledEffect;
import mage.abilities.keyword.MenaceAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.Duration;
import mage.constants.SubType;
import mage.filter.FilterPermanent;
import mage.filter.common.FilterControlledCreaturePermanent;
import mage.filter.common.FilterCreaturePermanent;
import mage.filter.predicate.Predicates;
import mage.filter.predicate.permanent.AttackingPredicate;
import mage.filter.predicate.permanent.TokenPredicate;
import mage.game.permanent.token.WitherbloomToken;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class BlightMound extends CardImpl {
private static final FilterCreaturePermanent filter
= new FilterCreaturePermanent(SubType.PEST, "attacking Pests");
private static final FilterPermanent filter2
= new FilterControlledCreaturePermanent("nontoken creature you control");
static {
filter.add(AttackingPredicate.instance);
filter2.add(Predicates.not(TokenPredicate.instance));
}
public BlightMound(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{2}{B}");
// Attacking Pests you control get +1/+0 and have menace.
Ability ability = new SimpleStaticAbility(new BoostControlledEffect(
1, 0, Duration.WhileOnBattlefield, filter
));
ability.addEffect(new GainAbilityControlledEffect(
new MenaceAbility(), Duration.WhileOnBattlefield, filter
).setText("and have menace"));
this.addAbility(ability);
// Whenever a nontoken creature you control dies, create a 1/1 black and green Pest creature token with "When this creature dies, you gain 1 life."
this.addAbility(new DiesCreatureTriggeredAbility(
new CreateTokenEffect(new WitherbloomToken()), false, filter2
));
}
private BlightMound(final BlightMound card) {
super(card);
}
@Override
public BlightMound copy() {
return new BlightMound(this);
}
}

View file

@ -37,6 +37,7 @@ public final class Commander2021Edition extends ExpansionSet {
cards.add(new SetCardInfo("Beast Within", 186, Rarity.UNCOMMON, mage.cards.b.BeastWithin.class));
cards.add(new SetCardInfo("Biomass Mutation", 209, Rarity.RARE, mage.cards.b.BiomassMutation.class));
cards.add(new SetCardInfo("Blasphemous Act", 159, Rarity.RARE, mage.cards.b.BlasphemousAct.class));
cards.add(new SetCardInfo("Blight Mound", 36, Rarity.RARE, mage.cards.b.BlightMound.class));
cards.add(new SetCardInfo("Blighted Cataract", 279, Rarity.UNCOMMON, mage.cards.b.BlightedCataract.class));
cards.add(new SetCardInfo("Bloodthirsty Blade", 235, Rarity.UNCOMMON, mage.cards.b.BloodthirstyBlade.class));
cards.add(new SetCardInfo("Bojuka Bog", 281, Rarity.COMMON, mage.cards.b.BojukaBog.class));