[EOE] Implement Beamsaw Prospector

This commit is contained in:
theelk801 2025-07-18 13:23:13 -04:00
parent 415746a368
commit 7da94f59ad
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,39 @@
package mage.cards.b;
import mage.MageInt;
import mage.abilities.common.DiesSourceTriggeredAbility;
import mage.abilities.effects.common.CreateTokenEffect;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.game.permanent.token.LanderToken;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class BeamsawProspector extends CardImpl {
public BeamsawProspector(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{B}");
this.subtype.add(SubType.HUMAN);
this.subtype.add(SubType.ARTIFICER);
this.power = new MageInt(2);
this.toughness = new MageInt(1);
// When this creature dies, create a Lander token.
this.addAbility(new DiesSourceTriggeredAbility(new CreateTokenEffect(new LanderToken())));
}
private BeamsawProspector(final BeamsawProspector card) {
super(card);
}
@Override
public BeamsawProspector copy() {
return new BeamsawProspector(this);
}
}

View file

@ -46,6 +46,7 @@ public final class EdgeOfEternities extends ExpansionSet {
cards.add(new SetCardInfo("Atomic Microsizer", 47, Rarity.UNCOMMON, mage.cards.a.AtomicMicrosizer.class));
cards.add(new SetCardInfo("Auxiliary Boosters", 5, Rarity.COMMON, mage.cards.a.AuxiliaryBoosters.class));
cards.add(new SetCardInfo("Banishing Light", 6, Rarity.COMMON, mage.cards.b.BanishingLight.class));
cards.add(new SetCardInfo("Beamsaw Prospector", 89, Rarity.COMMON, mage.cards.b.BeamsawProspector.class));
cards.add(new SetCardInfo("Beyond the Quiet", 303, Rarity.RARE, mage.cards.b.BeyondTheQuiet.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Beyond the Quiet", 7, Rarity.RARE, mage.cards.b.BeyondTheQuiet.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Bioengineered Future", 172, Rarity.RARE, mage.cards.b.BioengineeredFuture.class, NON_FULL_USE_VARIOUS));