[40K] Implemented Deathleaper, Terror Weapon

This commit is contained in:
Evan Kranzler 2022-09-13 06:40:15 -04:00
parent 5e26b7eacd
commit 515828eede
3 changed files with 63 additions and 0 deletions

View file

@ -0,0 +1,61 @@
package mage.cards.d;
import mage.MageInt;
import mage.abilities.common.SimpleStaticAbility;
import mage.abilities.effects.common.continuous.GainAbilityAllEffect;
import mage.abilities.keyword.DoubleStrikeAbility;
import mage.abilities.keyword.FlashAbility;
import mage.abilities.keyword.HasteAbility;
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.FilterPermanent;
import mage.filter.common.FilterControlledCreaturePermanent;
import mage.filter.predicate.permanent.EnteredThisTurnPredicate;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class DeathleaperTerrorWeapon extends CardImpl {
private static final FilterPermanent filter
= new FilterControlledCreaturePermanent("creatures you control that entered the battlefield this turn");
static {
filter.add(EnteredThisTurnPredicate.instance);
}
public DeathleaperTerrorWeapon(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{R}{G}");
this.addSuperType(SuperType.LEGENDARY);
this.subtype.add(SubType.TYRANID);
this.power = new MageInt(3);
this.toughness = new MageInt(3);
// Flash
this.addAbility(FlashAbility.getInstance());
// Haste
this.addAbility(HasteAbility.getInstance());
// Flesh Hooks -- Creatures you control that entered the battlefield this turn have double strike.
this.addAbility(new SimpleStaticAbility(new GainAbilityAllEffect(
DoubleStrikeAbility.getInstance(), Duration.WhileOnBattlefield, filter
)).withFlavorWord("Flesh Hooks"));
}
private DeathleaperTerrorWeapon(final DeathleaperTerrorWeapon card) {
super(card);
}
@Override
public DeathleaperTerrorWeapon copy() {
return new DeathleaperTerrorWeapon(this);
}
}

View file

@ -24,6 +24,7 @@ public final class Warhammer40000 extends ExpansionSet {
cards.add(new SetCardInfo("Abundance", 210, Rarity.RARE, mage.cards.a.Abundance.class));
cards.add(new SetCardInfo("Arcane Signet", 227, Rarity.COMMON, mage.cards.a.ArcaneSignet.class));
cards.add(new SetCardInfo("Command Tower", 270, Rarity.COMMON, mage.cards.c.CommandTower.class));
cards.add(new SetCardInfo("Deathleaper, Terror Weapon", 115, Rarity.RARE, mage.cards.d.DeathleaperTerrorWeapon.class));
cards.add(new SetCardInfo("Fabricate", 181, Rarity.RARE, mage.cards.f.Fabricate.class));
cards.add(new SetCardInfo("Hardened Scales", 215, Rarity.RARE, mage.cards.h.HardenedScales.class));
cards.add(new SetCardInfo("Inquisitor Greyfax", 3, Rarity.MYTHIC, mage.cards.i.InquisitorGreyfax.class));

View file

@ -371,6 +371,7 @@ public enum SubType {
TROOPER("Trooper", SubTypeSet.CreatureType, true), // Star Wars
TRILOBITE("Trilobite", SubTypeSet.CreatureType),
TWILEK("Twi'lek", SubTypeSet.CreatureType, true), // Star Wars
TYRANID("Tyranid", SubTypeSet.CreatureType),
// U
UGNAUGHT("Ugnaught", SubTypeSet.CreatureType, true),
UNICORN("Unicorn", SubTypeSet.CreatureType),