mirror of
https://github.com/correl/mage.git
synced 2025-01-13 11:01:58 +00:00
[ZNR] Implemented Cragcrown Pathway / Timbercrown Pathway
This commit is contained in:
parent
941d418a69
commit
e3fd7de977
3 changed files with 70 additions and 0 deletions
35
Mage.Sets/src/mage/cards/c/CragcrownPathway.java
Normal file
35
Mage.Sets/src/mage/cards/c/CragcrownPathway.java
Normal file
|
@ -0,0 +1,35 @@
|
|||
package mage.cards.c;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.abilities.keyword.TransformAbility;
|
||||
import mage.abilities.mana.RedManaAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
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}.
|
||||
this.addAbility(new RedManaAbility());
|
||||
this.addAbility(new TransformAbility());
|
||||
}
|
||||
|
||||
private CragcrownPathway(final CragcrownPathway card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public CragcrownPathway copy() {
|
||||
return new CragcrownPathway(this);
|
||||
}
|
||||
}
|
33
Mage.Sets/src/mage/cards/t/TimbercrownPathway.java
Normal file
33
Mage.Sets/src/mage/cards/t/TimbercrownPathway.java
Normal file
|
@ -0,0 +1,33 @@
|
|||
package mage.cards.t;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.abilities.mana.GreenManaAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class TimbercrownPathway extends CardImpl {
|
||||
|
||||
public TimbercrownPathway(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
|
||||
|
||||
this.nightCard = true;
|
||||
this.transformable = true;
|
||||
|
||||
// {T}: Add {G}.
|
||||
this.addAbility(new GreenManaAbility());
|
||||
}
|
||||
|
||||
private TimbercrownPathway(final TimbercrownPathway card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public TimbercrownPathway copy() {
|
||||
return new TimbercrownPathway(this);
|
||||
}
|
||||
}
|
|
@ -34,6 +34,7 @@ public final class ZendikarRising extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Brightclimb Pathway", 259, Rarity.RARE, mage.cards.b.BrightclimbPathway.class));
|
||||
cards.add(new SetCardInfo("Clearwater Pathway", 286, Rarity.RARE, mage.cards.c.ClearwaterPathway.class));
|
||||
cards.add(new SetCardInfo("Cliffhaven Sell-Sword", 8, Rarity.COMMON, mage.cards.c.CliffhavenSellSword.class));
|
||||
cards.add(new SetCardInfo("Cragcrown Pathway", 261, Rarity.RARE, mage.cards.c.CragcrownPathway.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));
|
||||
|
@ -60,6 +61,7 @@ public final class ZendikarRising extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Swamp", 273, Rarity.LAND, mage.cards.basiclands.Swamp.class, FULL_ART_BFZ_VARIOUS));
|
||||
cards.add(new SetCardInfo("Tajuru Blightblade", 208, Rarity.COMMON, mage.cards.t.TajuruBlightblade.class));
|
||||
cards.add(new SetCardInfo("Tajuru Snarecaster", 210, Rarity.COMMON, mage.cards.t.TajuruSnarecaster.class));
|
||||
cards.add(new SetCardInfo("Timbercrown Pathway", 261, Rarity.RARE, mage.cards.t.TimbercrownPathway.class));
|
||||
cards.add(new SetCardInfo("Windrider Wizard", 87, Rarity.COMMON, mage.cards.w.WindriderWizard.class));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue