[ZNR] Implemented Brightclimb Pathway / Grimclimb Pathway

This commit is contained in:
Evan Kranzler 2020-09-02 10:01:24 -04:00
parent 620bde42cc
commit 32815e125a
3 changed files with 71 additions and 0 deletions

View file

@ -0,0 +1,36 @@
package mage.cards.b;
import java.util.UUID;
import mage.abilities.keyword.TransformAbility;
import mage.abilities.mana.WhiteManaAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.cards.g.GrimclimbPathway;
import mage.constants.CardType;
/**
* @author TheElk801
*/
public final class BrightclimbPathway extends CardImpl {
public BrightclimbPathway(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
this.transformable = true;
this.secondSideCardClazz = mage.cards.g.GrimclimbPathway.class;
// {T}: Add {W}.
this.addAbility(new WhiteManaAbility());
this.addAbility(new TransformAbility());
}
private BrightclimbPathway(final BrightclimbPathway card) {
super(card);
}
@Override
public BrightclimbPathway copy() {
return new BrightclimbPathway(this);
}
}

View file

@ -0,0 +1,33 @@
package mage.cards.g;
import java.util.UUID;
import mage.abilities.mana.BlackManaAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
/**
* @author TheElk801
*/
public final class GrimclimbPathway extends CardImpl {
public GrimclimbPathway(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
this.nightCard = true;
this.transformable = true;
// {T}: Add {B}.
this.addAbility(new BlackManaAbility());
}
private GrimclimbPathway(final GrimclimbPathway card) {
super(card);
}
@Override
public GrimclimbPathway copy() {
return new GrimclimbPathway(this);
}
}

View file

@ -31,10 +31,12 @@ public final class ZendikarRising extends ExpansionSet {
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));
cards.add(new SetCardInfo("Branchloft Pathway", 258, Rarity.RARE, mage.cards.b.BranchloftPathway.class));
cards.add(new SetCardInfo("Brightclimb Pathway", 259, Rarity.RARE, mage.cards.b.BrightclimbPathway.class));
cards.add(new SetCardInfo("Cliffhaven Sell-Sword", 8, Rarity.COMMON, mage.cards.c.CliffhavenSellSword.class));
cards.add(new SetCardInfo("Farsight Adept", 14, Rarity.COMMON, mage.cards.f.FarsightAdept.class));
cards.add(new SetCardInfo("Forest", 278, Rarity.LAND, mage.cards.basiclands.Forest.class, FULL_ART_BFZ_VARIOUS));
cards.add(new SetCardInfo("Gnarlid Colony", 185, Rarity.COMMON, mage.cards.g.GnarlidColony.class));
cards.add(new SetCardInfo("Grimclimb Pathway", 259, Rarity.RARE, mage.cards.g.GrimclimbPathway.class));
cards.add(new SetCardInfo("Into the Roil", 62, Rarity.COMMON, mage.cards.i.IntoTheRoil.class));
cards.add(new SetCardInfo("Island", 269, Rarity.LAND, mage.cards.basiclands.Island.class, FULL_ART_BFZ_VARIOUS));
cards.add(new SetCardInfo("Jace, Mirror Mage", 63, Rarity.MYTHIC, mage.cards.j.JaceMirrorMage.class));