updated DFC lands to not be transformable (implementation still incomplete)

This commit is contained in:
Evan Kranzler 2020-09-02 15:33:31 -04:00
parent 8e82ec9542
commit bd5e370b2d
12 changed files with 0 additions and 12 deletions

View file

@ -16,7 +16,6 @@ public final class BoulderloftPathway extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
this.nightCard = true;
this.transformable = true;
// {T}: Add {W}.
this.addAbility(new WhiteManaAbility());

View file

@ -16,7 +16,6 @@ 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}.

View file

@ -17,7 +17,6 @@ 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}.

View file

@ -16,7 +16,6 @@ public final class ClearwaterPathway extends CardImpl {
public ClearwaterPathway(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
this.transformable = true;
this.secondSideCardClazz = mage.cards.m.MurkwaterPathway.class;
// {T}: Add {U}.

View file

@ -16,7 +16,6 @@ public final class CragcrownPathway extends CardImpl {
public CragcrownPathway(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
this.transformable = true;
this.secondSideCardClazz = mage.cards.t.TimbercrownPathway.class;
// {T}: Add {R}.

View file

@ -16,7 +16,6 @@ public final class GrimclimbPathway extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
this.nightCard = true;
this.transformable = true;
// {T}: Add {B}.
this.addAbility(new BlackManaAbility());

View file

@ -16,7 +16,6 @@ public final class LavaglidePathway extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
this.nightCard = true;
this.transformable = true;
// {T}: Add {R}.
this.addAbility(new RedManaAbility());

View file

@ -16,7 +16,6 @@ public final class MurkwaterPathway extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
this.nightCard = true;
this.transformable = true;
// {T}: Add {B}.
this.addAbility(new BlackManaAbility());

View file

@ -16,7 +16,6 @@ public final class NeedlevergePathway extends CardImpl {
public NeedlevergePathway(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
this.transformable = true;
this.secondSideCardClazz = mage.cards.p.PillarvergePathway.class;
// {T}: Add {R}.

View file

@ -16,7 +16,6 @@ public final class PillarvergePathway extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
this.nightCard = true;
this.transformable = true;
// {T}: Add {W}.
this.addAbility(new WhiteManaAbility());

View file

@ -16,7 +16,6 @@ public final class RiverglidePathway extends CardImpl {
public RiverglidePathway(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
this.transformable = true;
this.secondSideCardClazz = mage.cards.l.LavaglidePathway.class;
// {T}: Add {U}.

View file

@ -16,7 +16,6 @@ public final class TimbercrownPathway extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
this.nightCard = true;
this.transformable = true;
// {T}: Add {G}.
this.addAbility(new GreenManaAbility());