mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 04:39:18 -08:00
implemented Herald of the Dreadhorde
This commit is contained in:
parent
0fb987f25d
commit
bebc8a8ac4
5 changed files with 162 additions and 0 deletions
38
Mage.Sets/src/mage/cards/h/HeraldOfTheDreadhorde.java
Normal file
38
Mage.Sets/src/mage/cards/h/HeraldOfTheDreadhorde.java
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
package mage.cards.h;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.DiesTriggeredAbility;
|
||||
import mage.abilities.effects.keyword.AmassEffect;
|
||||
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 HeraldOfTheDreadhorde extends CardImpl {
|
||||
|
||||
public HeraldOfTheDreadhorde(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{B}");
|
||||
|
||||
this.subtype.add(SubType.ZOMBIE);
|
||||
this.subtype.add(SubType.WARRIOR);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// When Herald of the Dreadhorde dies, amass 2.
|
||||
this.addAbility(new DiesTriggeredAbility(new AmassEffect(2)));
|
||||
}
|
||||
|
||||
private HeraldOfTheDreadhorde(final HeraldOfTheDreadhorde card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public HeraldOfTheDreadhorde copy() {
|
||||
return new HeraldOfTheDreadhorde(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -24,6 +24,7 @@ public final class WarOfTheSpark extends ExpansionSet {
|
|||
this.maxCardNumberInBooster = 264;
|
||||
|
||||
cards.add(new SetCardInfo("Ajani's Pridemate", 4, Rarity.UNCOMMON, mage.cards.a.AjanisPridemate.class));
|
||||
cards.add(new SetCardInfo("Herald of the Dreadhorde", 93, Rarity.COMMON, mage.cards.h.HeraldOfTheDreadhorde.class));
|
||||
cards.add(new SetCardInfo("Plains", 250, Rarity.LAND, mage.cards.basiclands.Plains.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Plains", 251, Rarity.LAND, mage.cards.basiclands.Plains.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Plains", 252, Rarity.LAND, mage.cards.basiclands.Plains.class, NON_FULL_USE_VARIOUS));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue