mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
[MID] Implemented Diregraf Horde
This commit is contained in:
parent
a10c396d57
commit
3b909a4cae
2 changed files with 76 additions and 0 deletions
75
Mage.Sets/src/mage/cards/d/DiregrafHorde.java
Normal file
75
Mage.Sets/src/mage/cards/d/DiregrafHorde.java
Normal file
|
@ -0,0 +1,75 @@
|
|||
package mage.cards.d;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||
import mage.abilities.common.delayed.ReflexiveTriggeredAbility;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.effects.common.ExileTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Outcome;
|
||||
import mage.constants.SubType;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.token.ZombieDecayedToken;
|
||||
import mage.target.common.TargetCardInGraveyard;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class DiregrafHorde extends CardImpl {
|
||||
|
||||
public DiregrafHorde(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{B}");
|
||||
|
||||
this.subtype.add(SubType.ZOMBIE);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
// When Diregraf Horde enters the battlefield, create two 2/2 black Zombie creature tokens with decayed. When you do, exile up to two target cards from graveyards.
|
||||
this.addAbility(new EntersBattlefieldTriggeredAbility(new DiregrafHordeEffect()));
|
||||
}
|
||||
|
||||
private DiregrafHorde(final DiregrafHorde card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public DiregrafHorde copy() {
|
||||
return new DiregrafHorde(this);
|
||||
}
|
||||
}
|
||||
|
||||
class DiregrafHordeEffect extends OneShotEffect {
|
||||
|
||||
DiregrafHordeEffect() {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "create two 2/2 black Zombie creature tokens with decayed. " +
|
||||
"When you do, exile up to two target cards from graveyards";
|
||||
}
|
||||
|
||||
private DiregrafHordeEffect(final DiregrafHordeEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public DiregrafHordeEffect copy() {
|
||||
return new DiregrafHordeEffect(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
if (!new ZombieDecayedToken().putOntoBattlefield(2, game, source, source.getControllerId())) {
|
||||
return false;
|
||||
}
|
||||
ReflexiveTriggeredAbility ability = new ReflexiveTriggeredAbility(
|
||||
new ExileTargetEffect(), false, "exile up to two target cards from graveyards"
|
||||
);
|
||||
ability.addTarget(new TargetCardInGraveyard(0, 2));
|
||||
game.fireReflexiveTriggeredAbility(ability, source);
|
||||
return true;
|
||||
}
|
||||
}
|
|
@ -59,6 +59,7 @@ public final class InnistradMidnightHunt extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Delver of Secrets", 47, Rarity.UNCOMMON, mage.cards.d.DelverOfSecrets.class));
|
||||
cards.add(new SetCardInfo("Deserted Beach", 260, Rarity.RARE, mage.cards.d.DesertedBeach.class));
|
||||
cards.add(new SetCardInfo("Dire-Strain Demolisher", 174, Rarity.UNCOMMON, mage.cards.d.DireStrainDemolisher.class));
|
||||
cards.add(new SetCardInfo("Diregraf Horde", 96, Rarity.COMMON, mage.cards.d.DiregrafHorde.class));
|
||||
cards.add(new SetCardInfo("Diregraf Rebirth", 220, Rarity.UNCOMMON, mage.cards.d.DiregrafRebirth.class));
|
||||
cards.add(new SetCardInfo("Dissipate", 49, Rarity.UNCOMMON, mage.cards.d.Dissipate.class));
|
||||
cards.add(new SetCardInfo("Embodiment of Flame", 141, Rarity.UNCOMMON, mage.cards.e.EmbodimentOfFlame.class));
|
||||
|
|
Loading…
Reference in a new issue