mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
[EOE] Implement Eusocial Engineering
This commit is contained in:
parent
edec74f85c
commit
119650c036
2 changed files with 37 additions and 0 deletions
36
Mage.Sets/src/mage/cards/e/EusocialEngineering.java
Normal file
36
Mage.Sets/src/mage/cards/e/EusocialEngineering.java
Normal 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);
|
||||
}
|
||||
}
|
||||
|
|
@ -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));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue