mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
[DRC] Implement Temmet, Naktamun's Will
This commit is contained in:
parent
9276e1be83
commit
812f0555e3
2 changed files with 64 additions and 0 deletions
61
Mage.Sets/src/mage/cards/t/TemmetNaktamunsWill.java
Normal file
61
Mage.Sets/src/mage/cards/t/TemmetNaktamunsWill.java
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
package mage.cards.t;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.AttacksWithCreaturesTriggeredAbility;
|
||||
import mage.abilities.common.DrawCardControllerTriggeredAbility;
|
||||
import mage.abilities.effects.common.DrawDiscardControllerEffect;
|
||||
import mage.abilities.effects.common.continuous.BoostControlledEffect;
|
||||
import mage.abilities.keyword.MenaceAbility;
|
||||
import mage.abilities.keyword.VigilanceAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.SuperType;
|
||||
import mage.filter.common.FilterCreaturePermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class TemmetNaktamunsWill extends CardImpl {
|
||||
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent(SubType.ZOMBIE, "Zombies");
|
||||
|
||||
public TemmetNaktamunsWill(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{W}{U}{B}");
|
||||
|
||||
this.supertype.add(SuperType.LEGENDARY);
|
||||
this.subtype.add(SubType.ZOMBIE);
|
||||
this.subtype.add(SubType.WIZARD);
|
||||
this.power = new MageInt(4);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
// Vigilance
|
||||
this.addAbility(VigilanceAbility.getInstance());
|
||||
|
||||
// Menace
|
||||
this.addAbility(new MenaceAbility());
|
||||
|
||||
// Whenever you attack, draw a card, then discard a card.
|
||||
this.addAbility(new AttacksWithCreaturesTriggeredAbility(
|
||||
new DrawDiscardControllerEffect(1, 1), 1
|
||||
));
|
||||
|
||||
// Whenever you draw a card, Zombies you control get +1/+1 until end of turn.
|
||||
this.addAbility(new DrawCardControllerTriggeredAbility(
|
||||
new BoostControlledEffect(1, 1, Duration.EndOfTurn, filter), false
|
||||
));
|
||||
}
|
||||
|
||||
private TemmetNaktamunsWill(final TemmetNaktamunsWill card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public TemmetNaktamunsWill copy() {
|
||||
return new TemmetNaktamunsWill(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,6 +1,7 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
|
|
@ -17,5 +18,7 @@ public final class AetherdriftCommander extends ExpansionSet {
|
|||
private AetherdriftCommander() {
|
||||
super("Aetherdrift Commander", "DRC", ExpansionSet.buildDate(2025, 1, 21), SetType.SUPPLEMENTAL);
|
||||
this.hasBasicLands = false;
|
||||
|
||||
cards.add(new SetCardInfo("Temmet, Naktamun's Will", 4, Rarity.MYTHIC, mage.cards.t.TemmetNaktamunsWill.class));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue