mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 20:11:59 -08:00
[ZNR] Implemented Blackbloom Rogue / Blackbloom Bog
This commit is contained in:
parent
0b60831d7d
commit
65f7f69b22
3 changed files with 91 additions and 0 deletions
37
Mage.Sets/src/mage/cards/b/BlackbloomBog.java
Normal file
37
Mage.Sets/src/mage/cards/b/BlackbloomBog.java
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
package mage.cards.b;
|
||||
|
||||
import mage.abilities.common.EntersBattlefieldTappedAbility;
|
||||
import mage.abilities.mana.BlackManaAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class BlackbloomBog extends CardImpl {
|
||||
|
||||
public BlackbloomBog(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
|
||||
|
||||
this.modalDFC = true;
|
||||
this.nightCard = true;
|
||||
|
||||
// Blackbloom Bog enters the battlefield tapped.
|
||||
this.addAbility(new EntersBattlefieldTappedAbility());
|
||||
|
||||
// {T}: Add {B}.
|
||||
this.addAbility(new BlackManaAbility());
|
||||
}
|
||||
|
||||
private BlackbloomBog(final BlackbloomBog card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlackbloomBog copy() {
|
||||
return new BlackbloomBog(this);
|
||||
}
|
||||
}
|
||||
52
Mage.Sets/src/mage/cards/b/BlackbloomRogue.java
Normal file
52
Mage.Sets/src/mage/cards/b/BlackbloomRogue.java
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
package mage.cards.b;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.condition.common.CardsInOpponentGraveCondition;
|
||||
import mage.abilities.decorator.ConditionalContinuousEffect;
|
||||
import mage.abilities.effects.common.continuous.BoostSourceEffect;
|
||||
import mage.abilities.keyword.MenaceAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class BlackbloomRogue extends CardImpl {
|
||||
|
||||
public BlackbloomRogue(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{B}");
|
||||
|
||||
this.subtype.add(SubType.HUMAN);
|
||||
this.subtype.add(SubType.ROGUE);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(3);
|
||||
|
||||
this.modalDFC = true;
|
||||
this.secondSideCardClazz = mage.cards.b.BlackbloomBog.class;
|
||||
|
||||
// Menace
|
||||
this.addAbility(new MenaceAbility());
|
||||
|
||||
// Blackbloom Rogue gets +3/+0 as long as an opponent has eight or more cards in their graveyard.
|
||||
this.addAbility(new SimpleStaticAbility(new ConditionalContinuousEffect(
|
||||
new BoostSourceEffect(3, 0, Duration.WhileOnBattlefield),
|
||||
CardsInOpponentGraveCondition.EIGHT, "{this} gets +3/+0 as long as " +
|
||||
"an opponent has eight or more cards in their graveyard"
|
||||
)).addHint(CardsInOpponentGraveCondition.EIGHT.getHint()));
|
||||
}
|
||||
|
||||
private BlackbloomRogue(final BlackbloomRogue card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlackbloomRogue copy() {
|
||||
return new BlackbloomRogue(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -96,6 +96,8 @@ public final class ZendikarRising extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Ashaya, Soul of the Wild", 179, Rarity.MYTHIC, mage.cards.a.AshayaSoulOfTheWild.class));
|
||||
cards.add(new SetCardInfo("Bala Ged Recovery", 180, Rarity.UNCOMMON, mage.cards.b.BalaGedRecovery.class));
|
||||
cards.add(new SetCardInfo("Bala Ged Sanctuary", 180, Rarity.UNCOMMON, mage.cards.b.BalaGedSanctuary.class));
|
||||
cards.add(new SetCardInfo("Blackbloom Bog", 91, Rarity.UNCOMMON, mage.cards.b.BlackbloomBog.class));
|
||||
cards.add(new SetCardInfo("Blackbloom Rogue", 91, Rarity.UNCOMMON, mage.cards.b.BlackbloomRogue.class));
|
||||
cards.add(new SetCardInfo("Blood Beckoning", 92, Rarity.COMMON, mage.cards.b.BloodBeckoning.class));
|
||||
cards.add(new SetCardInfo("Bloodchief's Thirst", 94, Rarity.UNCOMMON, mage.cards.b.BloodchiefsThirst.class));
|
||||
cards.add(new SetCardInfo("Boulderloft Pathway", 258, Rarity.RARE, mage.cards.b.BoulderloftPathway.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue