diff --git a/Mage.Sets/src/mage/cards/b/BoulderloftPathway.java b/Mage.Sets/src/mage/cards/b/BoulderloftPathway.java new file mode 100644 index 00000000000..ad0e87e3f9b --- /dev/null +++ b/Mage.Sets/src/mage/cards/b/BoulderloftPathway.java @@ -0,0 +1,33 @@ +package mage.cards.b; + +import java.util.UUID; + +import mage.abilities.mana.WhiteManaAbility; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; + +/** + * @author TheElk801 + */ +public final class BoulderloftPathway extends CardImpl { + + public BoulderloftPathway(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.LAND}, ""); + + this.nightCard = true; + this.transformable = true; + + // {T}: Add {W}. + this.addAbility(new WhiteManaAbility()); + } + + private BoulderloftPathway(final BoulderloftPathway card) { + super(card); + } + + @Override + public BoulderloftPathway copy() { + return new BoulderloftPathway(this); + } +} diff --git a/Mage.Sets/src/mage/cards/b/BranchloftPathway.java b/Mage.Sets/src/mage/cards/b/BranchloftPathway.java new file mode 100644 index 00000000000..089e97f3459 --- /dev/null +++ b/Mage.Sets/src/mage/cards/b/BranchloftPathway.java @@ -0,0 +1,35 @@ +package mage.cards.b; + +import java.util.UUID; + +import mage.abilities.keyword.TransformAbility; +import mage.abilities.mana.GreenManaAbility; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; + +/** + * @author TheElk801 + */ +public final class BranchloftPathway extends CardImpl { + + public BranchloftPathway(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.LAND}, ""); + + this.transformable = true; + this.secondSideCardClazz = mage.cards.b.BoulderloftPathway.class; + + // {T}: Add {G}. + this.addAbility(new GreenManaAbility()); + this.addAbility(new TransformAbility()); + } + + private BranchloftPathway(final BranchloftPathway card) { + super(card); + } + + @Override + public BranchloftPathway copy() { + return new BranchloftPathway(this); + } +} diff --git a/Mage.Sets/src/mage/sets/ZendikarRising.java b/Mage.Sets/src/mage/sets/ZendikarRising.java index 7fb6d36d709..97992c7d968 100644 --- a/Mage.Sets/src/mage/sets/ZendikarRising.java +++ b/Mage.Sets/src/mage/sets/ZendikarRising.java @@ -29,6 +29,8 @@ public final class ZendikarRising extends ExpansionSet { cards.add(new SetCardInfo("Archpriest of Iona", 5, Rarity.RARE, mage.cards.a.ArchpriestOfIona.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)); + cards.add(new SetCardInfo("Branchloft Pathway", 258, Rarity.RARE, mage.cards.b.BranchloftPathway.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));