forked from External/mage
[MOC] Implement Death-Greeter's Champion
This commit is contained in:
parent
9237b26b74
commit
9214f91a5c
2 changed files with 47 additions and 0 deletions
46
Mage.Sets/src/mage/cards/d/DeathGreetersChampion.java
Normal file
46
Mage.Sets/src/mage/cards/d/DeathGreetersChampion.java
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
package mage.cards.d;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.BackupAbility;
|
||||
import mage.abilities.keyword.DashAbility;
|
||||
import mage.abilities.keyword.DoubleStrikeAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class DeathGreetersChampion extends CardImpl {
|
||||
|
||||
public DeathGreetersChampion(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{R}");
|
||||
|
||||
this.subtype.add(SubType.HUMAN);
|
||||
this.subtype.add(SubType.WARRIOR);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(1);
|
||||
|
||||
// Dash {3}{R}
|
||||
this.addAbility(new DashAbility("{3}{R}"));
|
||||
|
||||
// Backup 1
|
||||
BackupAbility backupAbility = new BackupAbility(this, 1);
|
||||
this.addAbility(backupAbility);
|
||||
|
||||
// Double strike
|
||||
backupAbility.addAbility(DoubleStrikeAbility.getInstance());
|
||||
}
|
||||
|
||||
private DeathGreetersChampion(final DeathGreetersChampion card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public DeathGreetersChampion copy() {
|
||||
return new DeathGreetersChampion(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -79,6 +79,7 @@ public final class MarchOfTheMachineCommander extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Cultivate", 295, Rarity.COMMON, mage.cards.c.Cultivate.class));
|
||||
cards.add(new SetCardInfo("Cultivator's Caravan", 354, Rarity.RARE, mage.cards.c.CultivatorsCaravan.class));
|
||||
cards.add(new SetCardInfo("Curse of Opulence", 274, Rarity.UNCOMMON, mage.cards.c.CurseOfOpulence.class));
|
||||
cards.add(new SetCardInfo("Death-Greeter's Champion", 30, Rarity.RARE, mage.cards.d.DeathGreetersChampion.class));
|
||||
cards.add(new SetCardInfo("Despark", 322, Rarity.UNCOMMON, mage.cards.d.Despark.class));
|
||||
cards.add(new SetCardInfo("Devouring Light", 180, Rarity.UNCOMMON, mage.cards.d.DevouringLight.class));
|
||||
cards.add(new SetCardInfo("Distant Melody", 220, Rarity.COMMON, mage.cards.d.DistantMelody.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue