mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 12:22:10 -08:00
Implemented Bleeding Edge
This commit is contained in:
parent
c46ed261c8
commit
8cef0d3e69
2 changed files with 37 additions and 0 deletions
36
Mage.Sets/src/mage/cards/b/BleedingEdge.java
Normal file
36
Mage.Sets/src/mage/cards/b/BleedingEdge.java
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
package mage.cards.b;
|
||||
|
||||
import mage.abilities.effects.common.continuous.BoostTargetEffect;
|
||||
import mage.abilities.effects.keyword.AmassEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class BleedingEdge extends CardImpl {
|
||||
|
||||
public BleedingEdge(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{1}{B}{B}");
|
||||
|
||||
// Up to one target creature gets -2/-2 until end of turn. Amass 2.
|
||||
this.getSpellAbility().addEffect(new BoostTargetEffect(-2, -2, Duration.EndOfTurn));
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent(0, 1));
|
||||
this.getSpellAbility().addEffect(new AmassEffect(2));
|
||||
}
|
||||
|
||||
private BleedingEdge(final BleedingEdge card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BleedingEdge copy() {
|
||||
return new BleedingEdge(this);
|
||||
}
|
||||
}
|
||||
// It's nanotech, you like it?
|
||||
|
|
@ -41,6 +41,7 @@ public final class WarOfTheSpark extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Banehound", 77, Rarity.COMMON, mage.cards.b.Banehound.class));
|
||||
cards.add(new SetCardInfo("Bioessence Hydra", 186, Rarity.RARE, mage.cards.b.BioessenceHydra.class));
|
||||
cards.add(new SetCardInfo("Blast Zone", 244, Rarity.RARE, mage.cards.b.BlastZone.class));
|
||||
cards.add(new SetCardInfo("Bleeding Edge", 78, Rarity.UNCOMMON, mage.cards.b.BleedingEdge.class));
|
||||
cards.add(new SetCardInfo("Blindblast", 114, Rarity.COMMON, mage.cards.b.Blindblast.class));
|
||||
cards.add(new SetCardInfo("Bloom Hulk", 154, Rarity.COMMON, mage.cards.b.BloomHulk.class));
|
||||
cards.add(new SetCardInfo("Bolas's Citadel", 79, Rarity.RARE, mage.cards.b.BolassCitadel.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue