[40K] Implemented Tomb Blade

This commit is contained in:
Evan Kranzler 2022-10-08 16:16:21 -04:00
parent a2337da1c8
commit 5bd832548a
2 changed files with 96 additions and 0 deletions

View file

@ -0,0 +1,95 @@
package mage.cards.t;
import mage.MageInt;
import mage.abilities.Ability;
import mage.abilities.common.DealsCombatDamageToAPlayerTriggeredAbility;
import mage.abilities.costs.Cost;
import mage.abilities.costs.common.SacrificeTargetCost;
import mage.abilities.costs.mana.ManaCostsImpl;
import mage.abilities.effects.OneShotEffect;
import mage.abilities.keyword.FlyingAbility;
import mage.abilities.keyword.UnearthAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.Outcome;
import mage.constants.SubType;
import mage.filter.StaticFilters;
import mage.game.Game;
import mage.players.Player;
import mage.target.common.TargetControlledCreaturePermanent;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class TombBlade extends CardImpl {
public TombBlade(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{4}{B}{B}");
this.subtype.add(SubType.NECRON);
this.power = new MageInt(5);
this.toughness = new MageInt(4);
// Flying
this.addAbility(FlyingAbility.getInstance());
// Whenever Tomb Blade deals combat damage to a player, that player loses life equal to the number of creatures they control unless they sacrifice a creature.
this.addAbility(new DealsCombatDamageToAPlayerTriggeredAbility(
new TombBladeEffect(), false, true
));
// Unearth {6}{B}{B}
this.addAbility(new UnearthAbility(new ManaCostsImpl<>("{6}{B}{B}")));
}
private TombBlade(final TombBlade card) {
super(card);
}
@Override
public TombBlade copy() {
return new TombBlade(this);
}
}
class TombBladeEffect extends OneShotEffect {
TombBladeEffect() {
super(Outcome.Benefit);
staticText = "that player loses life equal to the number of " +
"creatures they control unless they sacrifice a creature";
}
private TombBladeEffect(final TombBladeEffect effect) {
super(effect);
}
@Override
public TombBladeEffect copy() {
return new TombBladeEffect(this);
}
@Override
public boolean apply(Game game, Ability source) {
Player player = game.getPlayer(getTargetPointer().getFirst(game, source));
if (player == null) {
return false;
}
int creatureCount = game.getBattlefield().count(
StaticFilters.FILTER_CONTROLLED_CREATURE,
player.getId(), source, game
);
Cost cost = new SacrificeTargetCost(new TargetControlledCreaturePermanent());
if (cost.canPay(source, source, player.getId(), game)
&& player.chooseUse(outcome, "Sacrifice a creature?",
"If you don't you lose " + creatureCount + " life",
"Yes", "No", source, game)
&& cost.pay(source, game, source, player.getId(), true)) {
return true;
}
return player.loseLife(creatureCount, game, source, false) > 0;
}
}

View file

@ -237,6 +237,7 @@ public final class Warhammer40000 extends ExpansionSet {
cards.add(new SetCardInfo("Thought Vessel", 259, Rarity.COMMON, mage.cards.t.ThoughtVessel.class));
cards.add(new SetCardInfo("Thunderhawk Gunship", 167, Rarity.RARE, mage.cards.t.ThunderhawkGunship.class));
cards.add(new SetCardInfo("Thunderwolf Cavalry", 16, Rarity.UNCOMMON, mage.cards.t.ThunderwolfCavalry.class));
cards.add(new SetCardInfo("Tomb Blade", 64, Rarity.RARE, mage.cards.t.TombBlade.class));
cards.add(new SetCardInfo("Tomb Fortress", 168, Rarity.RARE, mage.cards.t.TombFortress.class));
cards.add(new SetCardInfo("Tranquil Cove", 303, Rarity.COMMON, mage.cards.t.TranquilCove.class));
cards.add(new SetCardInfo("Triarch Praetorian", 66, Rarity.UNCOMMON, mage.cards.t.TriarchPraetorian.class));