mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
[EOE] Implement Beamsaw Prospector
This commit is contained in:
parent
415746a368
commit
7da94f59ad
2 changed files with 40 additions and 0 deletions
39
Mage.Sets/src/mage/cards/b/BeamsawProspector.java
Normal file
39
Mage.Sets/src/mage/cards/b/BeamsawProspector.java
Normal 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);
|
||||
}
|
||||
}
|
||||
|
|
@ -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));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue