[EOE] Implement Wefstalker Ardent

This commit is contained in:
theelk801 2025-07-09 11:24:37 -04:00
parent a9b651e0dc
commit 55df883b52
3 changed files with 49 additions and 0 deletions

View file

@ -0,0 +1,47 @@
package mage.cards.w;
import mage.MageInt;
import mage.abilities.common.EntersBattlefieldAllTriggeredAbility;
import mage.abilities.effects.common.DamagePlayersEffect;
import mage.abilities.keyword.WarpAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.constants.TargetController;
import mage.filter.StaticFilters;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class WeftstalkerArdent extends CardImpl {
public WeftstalkerArdent(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{R}");
this.subtype.add(SubType.DRIX);
this.subtype.add(SubType.ARTIFICER);
this.power = new MageInt(2);
this.toughness = new MageInt(3);
// Whenever another creature or artifact you control enters, this creature deals 1 damage to each opponent.
this.addAbility(new EntersBattlefieldAllTriggeredAbility(
new DamagePlayersEffect(1, TargetController.OPPONENT),
StaticFilters.FILTER_CONTROLLED_ANOTHER_CREATURE_OR_ARTIFACT
));
// Warp {R}
this.addAbility(new WarpAbility(this, "{R}"));
}
private WeftstalkerArdent(final WeftstalkerArdent card) {
super(card);
}
@Override
public WeftstalkerArdent copy() {
return new WeftstalkerArdent(this);
}
}

View file

@ -148,6 +148,7 @@ public final class EdgeOfEternities extends ExpansionSet {
cards.add(new SetCardInfo("Watery Grave", 261, Rarity.RARE, mage.cards.w.WateryGrave.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Watery Grave", 261, Rarity.RARE, mage.cards.w.WateryGrave.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Watery Grave", 286, Rarity.RARE, mage.cards.w.WateryGrave.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Watery Grave", 286, Rarity.RARE, mage.cards.w.WateryGrave.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Watery Grave", 381, Rarity.RARE, mage.cards.w.WateryGrave.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Watery Grave", 381, Rarity.RARE, mage.cards.w.WateryGrave.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Weftstalker Ardent", 169, Rarity.UNCOMMON, mage.cards.w.WeftstalkerArdent.class));
cards.add(new SetCardInfo("Wurmwall Sweeper", 249, Rarity.COMMON, mage.cards.w.WurmwallSweeper.class)); cards.add(new SetCardInfo("Wurmwall Sweeper", 249, Rarity.COMMON, mage.cards.w.WurmwallSweeper.class));
cards.removeIf(setCardInfo -> unfinished.contains(setCardInfo.getName())); cards.removeIf(setCardInfo -> unfinished.contains(setCardInfo.getName()));

View file

@ -160,6 +160,7 @@ public enum SubType {
DRAGON("Dragon", SubTypeSet.CreatureType), DRAGON("Dragon", SubTypeSet.CreatureType),
DRAKE("Drake", SubTypeSet.CreatureType), DRAKE("Drake", SubTypeSet.CreatureType),
DREADNOUGHT("Dreadnought", SubTypeSet.CreatureType), DREADNOUGHT("Dreadnought", SubTypeSet.CreatureType),
DRIX("Drix", SubTypeSet.CreatureType),
DROID("Droid", SubTypeSet.CreatureType, true), // Star Wars DROID("Droid", SubTypeSet.CreatureType, true), // Star Wars
DRONE("Drone", SubTypeSet.CreatureType), DRONE("Drone", SubTypeSet.CreatureType),
DRUID("Druid", SubTypeSet.CreatureType), DRUID("Druid", SubTypeSet.CreatureType),