mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
[MID] Implemented Bloodline Culling
This commit is contained in:
parent
71da97e3bc
commit
79768242d9
2 changed files with 43 additions and 0 deletions
42
Mage.Sets/src/mage/cards/b/BloodlineCulling.java
Normal file
42
Mage.Sets/src/mage/cards/b/BloodlineCulling.java
Normal file
|
@ -0,0 +1,42 @@
|
|||
package mage.cards.b;
|
||||
|
||||
import mage.abilities.Mode;
|
||||
import mage.abilities.effects.common.continuous.BoostAllEffect;
|
||||
import mage.abilities.effects.common.continuous.BoostTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class BloodlineCulling extends CardImpl {
|
||||
|
||||
public BloodlineCulling(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{1}{B}{B}");
|
||||
|
||||
// Choose one —
|
||||
// • Target creature gets -5/-5 until end of turn.
|
||||
this.getSpellAbility().addEffect(new BoostTargetEffect(-5, -5));
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
|
||||
// • Creature tokens get -2/-2 until end of turn.
|
||||
this.getSpellAbility().addMode(new Mode(new BoostAllEffect(
|
||||
-2, -2, Duration.EndOfTurn, StaticFilters.FILTER_CREATURE_TOKENS, false
|
||||
)));
|
||||
}
|
||||
|
||||
private BloodlineCulling(final BloodlineCulling card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BloodlineCulling copy() {
|
||||
return new BloodlineCulling(this);
|
||||
}
|
||||
}
|
|
@ -38,6 +38,7 @@ public final class InnistradMidnightHunt extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Bird Admirer", 169, Rarity.COMMON, mage.cards.b.BirdAdmirer.class));
|
||||
cards.add(new SetCardInfo("Bladebrand", 87, Rarity.COMMON, mage.cards.b.Bladebrand.class));
|
||||
cards.add(new SetCardInfo("Bladestitched Skaab", 212, Rarity.UNCOMMON, mage.cards.b.BladestitchedSkaab.class));
|
||||
cards.add(new SetCardInfo("Bloodline Culling", 89, Rarity.RARE, mage.cards.b.BloodlineCulling.class));
|
||||
cards.add(new SetCardInfo("Bloodthirsty Adversary", 129, Rarity.MYTHIC, mage.cards.b.BloodthirstyAdversary.class));
|
||||
cards.add(new SetCardInfo("Briarbridge Tracker", 172, Rarity.RARE, mage.cards.b.BriarbridgeTracker.class));
|
||||
cards.add(new SetCardInfo("Brimstone Vandal", 130, Rarity.COMMON, mage.cards.b.BrimstoneVandal.class));
|
||||
|
|
Loading…
Reference in a new issue