[EOE] Implement Seedship Agrarian

This commit is contained in:
theelk801 2025-07-18 14:44:21 -04:00
parent 139e0cf551
commit 09c9a36180
2 changed files with 46 additions and 0 deletions

View file

@ -0,0 +1,45 @@
package mage.cards.s;
import mage.MageInt;
import mage.abilities.common.BecomesTappedSourceTriggeredAbility;
import mage.abilities.common.LandfallAbility;
import mage.abilities.effects.common.CreateTokenEffect;
import mage.abilities.effects.common.counter.AddCountersSourceEffect;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.counters.CounterType;
import mage.game.permanent.token.LanderToken;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class SeedshipAgrarian extends CardImpl {
public SeedshipAgrarian(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{G}");
this.subtype.add(SubType.INSECT);
this.subtype.add(SubType.SCIENTIST);
this.power = new MageInt(3);
this.toughness = new MageInt(3);
// Whenever this creature becomes tapped, create a Lander token.
this.addAbility(new BecomesTappedSourceTriggeredAbility(new CreateTokenEffect(new LanderToken())));
// Landfall -- Whenever a land you control enters, put a +1/+1 counter on this creature.
this.addAbility(new LandfallAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance())));
}
private SeedshipAgrarian(final SeedshipAgrarian card) {
super(card);
}
@Override
public SeedshipAgrarian copy() {
return new SeedshipAgrarian(this);
}
}

View file

@ -284,6 +284,7 @@ public final class EdgeOfEternities extends ExpansionSet {
cards.add(new SetCardInfo("Secluded Starforge", 316, Rarity.RARE, mage.cards.s.SecludedStarforge.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Secluded Starforge", 366, Rarity.MYTHIC, mage.cards.s.SecludedStarforge.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Secluded Starforge", 392, Rarity.MYTHIC, mage.cards.s.SecludedStarforge.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Seedship Agrarian", 204, Rarity.UNCOMMON, mage.cards.s.SeedshipAgrarian.class));
cards.add(new SetCardInfo("Seedship Broodtender", 227, Rarity.UNCOMMON, mage.cards.s.SeedshipBroodtender.class));
cards.add(new SetCardInfo("Seedship Impact", 205, Rarity.UNCOMMON, mage.cards.s.SeedshipImpact.class));
cards.add(new SetCardInfo("Selfcraft Mechan", 74, Rarity.COMMON, mage.cards.s.SelfcraftMechan.class));