[EOE] Implement Eusocial Engineering

This commit is contained in:
theelk801 2025-07-08 16:05:10 -04:00
parent edec74f85c
commit 119650c036
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,36 @@
package mage.cards.e;
import mage.abilities.common.LandfallAbility;
import mage.abilities.effects.common.CreateTokenEffect;
import mage.abilities.keyword.WarpAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.game.permanent.token.RobotToken;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class EusocialEngineering extends CardImpl {
public EusocialEngineering(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{3}{G}{G}");
// Landfall -- Whenever a land you control enters, create a 2/2 colorless Robot artifact creature token.
this.addAbility(new LandfallAbility(new CreateTokenEffect(new RobotToken())));
// Warp {1}{G}
this.addAbility(new WarpAbility(this, "{1}{G}"));
}
private EusocialEngineering(final EusocialEngineering card) {
super(card);
}
@Override
public EusocialEngineering copy() {
return new EusocialEngineering(this);
}
}

View file

@ -38,6 +38,7 @@ public final class EdgeOfEternities extends ExpansionSet {
cards.add(new SetCardInfo("Emissary Escort", 326, Rarity.RARE, mage.cards.e.EmissaryEscort.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Emissary Escort", 399, Rarity.RARE, mage.cards.e.EmissaryEscort.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Emissary Escort", 56, Rarity.RARE, mage.cards.e.EmissaryEscort.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Eusocial Engineering", 181, Rarity.UNCOMMON, mage.cards.e.EusocialEngineering.class));
cards.add(new SetCardInfo("Forest", 266, Rarity.LAND, mage.cards.basiclands.Forest.class, FULL_ART_BFZ_VARIOUS));
cards.add(new SetCardInfo("Forest", 371, Rarity.LAND, mage.cards.basiclands.Forest.class, FULL_ART_BFZ_VARIOUS));
cards.add(new SetCardInfo("Galactic Wayfarer", 185, Rarity.COMMON, mage.cards.g.GalacticWayfarer.class));