mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
[EOE] Implement Gravpack Monoist
This commit is contained in:
parent
c4ff95d780
commit
05002f3eb4
2 changed files with 44 additions and 0 deletions
43
Mage.Sets/src/mage/cards/g/GravpackMonoist.java
Normal file
43
Mage.Sets/src/mage/cards/g/GravpackMonoist.java
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
package mage.cards.g;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.DiesSourceTriggeredAbility;
|
||||
import mage.abilities.effects.common.CreateTokenEffect;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.game.permanent.token.RobotToken;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class GravpackMonoist extends CardImpl {
|
||||
|
||||
public GravpackMonoist(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{B}");
|
||||
|
||||
this.subtype.add(SubType.HUMAN);
|
||||
this.subtype.add(SubType.SCOUT);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(1);
|
||||
|
||||
// Flying
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
||||
// When this creature dies, create a tapped 2/2 colorless Robot artifact creature token.
|
||||
this.addAbility(new DiesSourceTriggeredAbility(new CreateTokenEffect(new RobotToken(), 1, true)));
|
||||
}
|
||||
|
||||
private GravpackMonoist(final GravpackMonoist card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public GravpackMonoist copy() {
|
||||
return new GravpackMonoist(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -139,6 +139,7 @@ public final class EdgeOfEternities extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Godless Shrine", 280, Rarity.RARE, mage.cards.g.GodlessShrine.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Godless Shrine", 375, Rarity.RARE, mage.cards.g.GodlessShrine.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Gravkill", 103, Rarity.COMMON, mage.cards.g.Gravkill.class));
|
||||
cards.add(new SetCardInfo("Gravpack Monoist", 104, Rarity.COMMON, mage.cards.g.GravpackMonoist.class));
|
||||
cards.add(new SetCardInfo("Haliya, Ascendant Cadet", 218, Rarity.UNCOMMON, mage.cards.h.HaliyaAscendantCadet.class));
|
||||
cards.add(new SetCardInfo("Haliya, Guided by Light", 19, Rarity.RARE, mage.cards.h.HaliyaGuidedByLight.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Haliya, Guided by Light", 289, Rarity.RARE, mage.cards.h.HaliyaGuidedByLight.class, NON_FULL_USE_VARIOUS));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue