mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
[ZNR] Implemented Riverglide Pathway / Lavaglide Pathway
This commit is contained in:
parent
ef82db2e75
commit
1b0e88a04c
3 changed files with 70 additions and 0 deletions
33
Mage.Sets/src/mage/cards/l/LavaglidePathway.java
Normal file
33
Mage.Sets/src/mage/cards/l/LavaglidePathway.java
Normal file
|
@ -0,0 +1,33 @@
|
|||
package mage.cards.l;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.abilities.mana.RedManaAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class LavaglidePathway extends CardImpl {
|
||||
|
||||
public LavaglidePathway(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
|
||||
|
||||
this.nightCard = true;
|
||||
this.transformable = true;
|
||||
|
||||
// {T}: Add {R}.
|
||||
this.addAbility(new RedManaAbility());
|
||||
}
|
||||
|
||||
private LavaglidePathway(final LavaglidePathway card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public LavaglidePathway copy() {
|
||||
return new LavaglidePathway(this);
|
||||
}
|
||||
}
|
35
Mage.Sets/src/mage/cards/r/RiverglidePathway.java
Normal file
35
Mage.Sets/src/mage/cards/r/RiverglidePathway.java
Normal file
|
@ -0,0 +1,35 @@
|
|||
package mage.cards.r;
|
||||
|
||||
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 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}.
|
||||
this.addAbility(new RedManaAbility());
|
||||
this.addAbility(new TransformAbility());
|
||||
}
|
||||
|
||||
private RiverglidePathway(final RiverglidePathway card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public RiverglidePathway copy() {
|
||||
return new RiverglidePathway(this);
|
||||
}
|
||||
}
|
|
@ -43,6 +43,7 @@ public final class ZendikarRising extends ExpansionSet {
|
|||
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));
|
||||
cards.add(new SetCardInfo("Kabira Outrider", 18, Rarity.COMMON, mage.cards.k.KabiraOutrider.class));
|
||||
cards.add(new SetCardInfo("Lavaglide Pathway", 264, Rarity.RARE, mage.cards.l.LavaglidePathway.class));
|
||||
cards.add(new SetCardInfo("Legion Angel", 318, Rarity.RARE, mage.cards.l.LegionAngel.class));
|
||||
cards.add(new SetCardInfo("Lotus Cobra", 193, Rarity.RARE, mage.cards.l.LotusCobra.class));
|
||||
cards.add(new SetCardInfo("Might of Murasa", 194, Rarity.COMMON, mage.cards.m.MightOfMurasa.class));
|
||||
|
@ -55,6 +56,7 @@ public final class ZendikarRising extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Orah, Skyclave Hierophant", 233, Rarity.RARE, mage.cards.o.OrahSkyclaveHierophant.class));
|
||||
cards.add(new SetCardInfo("Pillarverge Pathway", 263, Rarity.RARE, mage.cards.p.PillarvergePathway.class));
|
||||
cards.add(new SetCardInfo("Plains", 266, Rarity.LAND, mage.cards.basiclands.Plains.class, FULL_ART_BFZ_VARIOUS));
|
||||
cards.add(new SetCardInfo("Riverglide Pathway", 264, Rarity.RARE, mage.cards.r.RiverglidePathway.class));
|
||||
cards.add(new SetCardInfo("Ruin Crab", 75, Rarity.UNCOMMON, mage.cards.r.RuinCrab.class));
|
||||
cards.add(new SetCardInfo("Shell Shield", 79, Rarity.COMMON, mage.cards.s.ShellShield.class));
|
||||
cards.add(new SetCardInfo("Shepherd of Heroes", 38, Rarity.COMMON, mage.cards.s.ShepherdOfHeroes.class));
|
||||
|
|
Loading…
Reference in a new issue