mirror of
https://github.com/correl/mage.git
synced 2025-01-11 19:13:02 +00:00
[MH2] Implemented Bone Shards
This commit is contained in:
parent
cbdb046ee0
commit
dfede057aa
2 changed files with 43 additions and 0 deletions
42
Mage.Sets/src/mage/cards/b/BoneShards.java
Normal file
42
Mage.Sets/src/mage/cards/b/BoneShards.java
Normal file
|
@ -0,0 +1,42 @@
|
|||
package mage.cards.b;
|
||||
|
||||
import mage.abilities.costs.OrCost;
|
||||
import mage.abilities.costs.common.DiscardCardCost;
|
||||
import mage.abilities.costs.common.SacrificeTargetCost;
|
||||
import mage.abilities.effects.common.DestroyTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.target.common.TargetControlledCreaturePermanent;
|
||||
import mage.target.common.TargetCreatureOrPlaneswalker;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class BoneShards extends CardImpl {
|
||||
|
||||
public BoneShards(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{B}");
|
||||
|
||||
// As an additional cost to cast this spell, sacrifice a creature or discard a card.
|
||||
this.getSpellAbility().addCost(new OrCost(
|
||||
new SacrificeTargetCost(new TargetControlledCreaturePermanent()),
|
||||
new DiscardCardCost(), "sacrifice a creature or discard a card"
|
||||
));
|
||||
|
||||
// Destroy target creature or planeswalker.
|
||||
this.getSpellAbility().addEffect(new DestroyTargetEffect());
|
||||
this.getSpellAbility().addTarget(new TargetCreatureOrPlaneswalker());
|
||||
}
|
||||
|
||||
private BoneShards(final BoneShards card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BoneShards copy() {
|
||||
return new BoneShards(this);
|
||||
}
|
||||
}
|
|
@ -31,6 +31,7 @@ public final class ModernHorizons2 extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Arcbound Mouser", 3, Rarity.COMMON, mage.cards.a.ArcboundMouser.class));
|
||||
cards.add(new SetCardInfo("Arcbound Shikari", 184, Rarity.UNCOMMON, mage.cards.a.ArcboundShikari.class));
|
||||
cards.add(new SetCardInfo("Arid Mesa", 244, Rarity.RARE, mage.cards.a.AridMesa.class));
|
||||
cards.add(new SetCardInfo("Bone Shards", 76, Rarity.COMMON, mage.cards.b.BoneShards.class));
|
||||
cards.add(new SetCardInfo("Bottle Golems", 222, Rarity.COMMON, mage.cards.b.BottleGolems.class));
|
||||
cards.add(new SetCardInfo("Brainstone", 223, Rarity.UNCOMMON, mage.cards.b.Brainstone.class));
|
||||
cards.add(new SetCardInfo("Break Ties", 8, Rarity.COMMON, mage.cards.b.BreakTies.class));
|
||||
|
|
Loading…
Reference in a new issue