mirror of
https://github.com/correl/mage.git
synced 2025-01-13 11:01:58 +00:00
[ZNR] Implemented Branchloft Pathway / Boulderloft Pathway
This commit is contained in:
parent
ec9337635b
commit
620bde42cc
3 changed files with 70 additions and 0 deletions
33
Mage.Sets/src/mage/cards/b/BoulderloftPathway.java
Normal file
33
Mage.Sets/src/mage/cards/b/BoulderloftPathway.java
Normal file
|
@ -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);
|
||||
}
|
||||
}
|
35
Mage.Sets/src/mage/cards/b/BranchloftPathway.java
Normal file
35
Mage.Sets/src/mage/cards/b/BranchloftPathway.java
Normal file
|
@ -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);
|
||||
}
|
||||
}
|
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue