[ZNR] Implemented Beyeen Veil / Beyeen Coast

This commit is contained in:
Evan Kranzler 2020-09-08 17:06:50 -04:00
parent bd3122a6e9
commit ac021273d6
4 changed files with 74 additions and 1 deletions

View file

@ -0,0 +1,37 @@
package mage.cards.b;
import mage.abilities.common.EntersBattlefieldTappedAbility;
import mage.abilities.mana.BlueManaAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class BeyeenCoast extends CardImpl {
public BeyeenCoast(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
this.modalDFC = true;
this.nightCard = true;
// Beyeen Coast enters the battlefield tapped.
this.addAbility(new EntersBattlefieldTappedAbility());
// {T}: Add {U}.
this.addAbility(new BlueManaAbility());
}
private BeyeenCoast(final BeyeenCoast card) {
super(card);
}
@Override
public BeyeenCoast copy() {
return new BeyeenCoast(this);
}
}

View file

@ -0,0 +1,34 @@
package mage.cards.b;
import mage.abilities.effects.common.continuous.BoostOpponentsEffect;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.Duration;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class BeyeenVeil extends CardImpl {
public BeyeenVeil(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{1}{U}");
this.modalDFC = true;
this.secondSideCardClazz = mage.cards.b.BeyeenCoast.class;
// Creatures your opponents control get -2/-0 until end of turn.
this.getSpellAbility().addEffect(new BoostOpponentsEffect(-2, 0, Duration.EndOfTurn));
}
private BeyeenVeil(final BeyeenVeil card) {
super(card);
}
@Override
public BeyeenVeil copy() {
return new BeyeenVeil(this);
}
}

View file

@ -116,6 +116,8 @@ public final class ZendikarRising extends ExpansionSet {
cards.add(new SetCardInfo("Attended Healer", 6, Rarity.UNCOMMON, mage.cards.a.AttendedHealer.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("Beyeen Coast", 46, Rarity.UNCOMMON, mage.cards.b.BeyeenCoast.class));
cards.add(new SetCardInfo("Beyeen Veil", 46, Rarity.UNCOMMON, mage.cards.b.BeyeenVeil.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));

View file

@ -38775,7 +38775,7 @@ Smite the Monstrous|Zendikar Rising|42|C|{3}{W}|Instant|||Destroy target creatur
Tazeem Raptor|Zendikar Rising|43|C|{2}{W}|Creature - Bird|2|2|Flying$When Tazeem Raptor enters the battlefield, you may return a land you control to its owner's hand.|
Tazri, Beacon of Unity|Zendikar Rising|44|M|{4}{W}|Legendary Creature - Human Warrior|4|6|This spell costs {1} less to cast for each creature in your party.${2/U}{2/B}{2/R}{2/G}: Look at the top six cards of your library. You may reveal up to two Cleric, Rogue, Warrior, Wizard, and/or Ally cards from among them and put them into your hand. Put the rest on the bottom of your library in a random order.|
Anticognition|Zendikar Rising|45|C|{1}{U}|Instant|||Counter target creature or planeswalker spell unless its controller pays {2}. If an opponent has eight or more cards in their graveyard, instead counter that spell, then scry 2.|
Bayeen Coast|Zendikar Rising|46|U||Land|||Bayeen Coast enters the battlefield tapped.${T}: Add {U}.|
Beyeen Coast|Zendikar Rising|46|U||Land|||Beyeen Coast enters the battlefield tapped.${T}: Add {U}.|
Beyeen Veil|Zendikar Rising|46|U|{1}{U}|Instant|||Creatures your opponents control get -2/-0 until end of turn.|
Bubble Snare|Zendikar Rising|47|C|{U}|Enchantment - Aura|||Kicker {2}{U}$Enchant creature$When Bubble Snare enters the battlefield, if it was kicked, tap enchanted creature.$Enchanted creature doesn't untap during its controller's untap step.|
Cascade Seer|Zendikar Rising|48|C|{3}{U}|Creature - Merfolk Wizard|3|3|When Cascade Seer enters the battlefield, scry X, where X is the number of creatures in your party.|