mirror of
https://github.com/magefree/mage.git
synced 2026-01-19 01:39:58 -08:00
Working Card Rendering
This commit is contained in:
parent
eeaea4c566
commit
d5415d2d04
63 changed files with 17729 additions and 1769 deletions
|
|
@ -28,6 +28,7 @@
|
|||
package mage.sets.onslaught;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.ObjectColor;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.abilities.common.FetchLandActivatedAbility;
|
||||
|
|
@ -42,6 +43,7 @@ public class BloodstainedMire extends CardImpl {
|
|||
public BloodstainedMire(UUID ownerId) {
|
||||
super(ownerId, 313, "Bloodstained Mire", Rarity.RARE, new CardType[]{CardType.LAND}, "");
|
||||
this.expansionSetCode = "ONS";
|
||||
this.frameColor = new ObjectColor("RB");
|
||||
|
||||
// {tap}, Pay 1 life, Sacrifice Bloodstained Mire: Search your library for a Swamp or Mountain card and put it onto the battlefield. Then shuffle your library.
|
||||
this.addAbility(new FetchLandActivatedAbility(new String[]{"Swamp", "Mountain"}));
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@
|
|||
package mage.sets.onslaught;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.ObjectColor;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.abilities.common.FetchLandActivatedAbility;
|
||||
|
|
@ -42,6 +43,7 @@ public class FloodedStrand extends CardImpl {
|
|||
public FloodedStrand(UUID ownerId) {
|
||||
super(ownerId, 316, "Flooded Strand", Rarity.RARE, new CardType[]{CardType.LAND}, "");
|
||||
this.expansionSetCode = "ONS";
|
||||
this.frameColor = new ObjectColor("UW");
|
||||
|
||||
// {tap}, Pay 1 life, Sacrifice Flooded Strand: Search your library for a Plains or Island card and put it onto the battlefield. Then shuffle your library.
|
||||
this.addAbility(new FetchLandActivatedAbility(new String[]{"Plains", "Island"}));
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@
|
|||
package mage.sets.onslaught;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.ObjectColor;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.abilities.common.FetchLandActivatedAbility;
|
||||
|
|
@ -42,6 +43,7 @@ public class PollutedDelta extends CardImpl {
|
|||
public PollutedDelta(UUID ownerId) {
|
||||
super(ownerId, 321, "Polluted Delta", Rarity.RARE, new CardType[]{CardType.LAND}, "");
|
||||
this.expansionSetCode = "ONS";
|
||||
this.frameColor = new ObjectColor("UB");
|
||||
|
||||
// {tap}, Pay 1 life, Sacrifice Polluted Delta: Search your library for an Island or Swamp card and put it onto the battlefield. Then shuffle your library.
|
||||
this.addAbility(new FetchLandActivatedAbility(new String[]{"Island", "Swamp"}));
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@
|
|||
package mage.sets.onslaught;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.ObjectColor;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.abilities.common.FetchLandActivatedAbility;
|
||||
|
|
@ -42,6 +43,7 @@ public class WindsweptHeath extends CardImpl {
|
|||
public WindsweptHeath(UUID ownerId) {
|
||||
super(ownerId, 328, "Windswept Heath", Rarity.RARE, new CardType[]{CardType.LAND}, "");
|
||||
this.expansionSetCode = "ONS";
|
||||
this.frameColor = new ObjectColor("GW");
|
||||
|
||||
// {tap}, Pay 1 life, Sacrifice Windswept Heath: Search your library for a Forest or Plains card and put it onto the battlefield. Then shuffle your library.
|
||||
this.addAbility(new FetchLandActivatedAbility(new String[]{"Forest", "Plains"}));
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@
|
|||
package mage.sets.onslaught;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.ObjectColor;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.abilities.common.FetchLandActivatedAbility;
|
||||
|
|
@ -42,6 +43,7 @@ public class WoodedFoothills extends CardImpl {
|
|||
public WoodedFoothills(UUID ownerId) {
|
||||
super(ownerId, 330, "Wooded Foothills", Rarity.RARE, new CardType[]{CardType.LAND}, "");
|
||||
this.expansionSetCode = "ONS";
|
||||
this.frameColor = new ObjectColor("RG");
|
||||
|
||||
// {tap}, Pay 1 life, Sacrifice Wooded Foothills: Search your library for a Mountain or Forest card and put it onto the battlefield. Then shuffle your library.
|
||||
this.addAbility(new FetchLandActivatedAbility(new String[]{"Mountain", "Forest"}));
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@
|
|||
package mage.sets.zendikar;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.ObjectColor;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.abilities.common.FetchLandActivatedAbility;
|
||||
|
|
@ -43,6 +44,7 @@ public class AridMesa extends CardImpl {
|
|||
public AridMesa(UUID ownerId) {
|
||||
super(ownerId, 211, "Arid Mesa", Rarity.RARE, new CardType[]{CardType.LAND}, null);
|
||||
this.expansionSetCode = "ZEN";
|
||||
this.frameColor = new ObjectColor("WR");
|
||||
this.addAbility(new FetchLandActivatedAbility(new String[] {"Mountain", "Plains"}));
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@
|
|||
package mage.sets.zendikar;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.ObjectColor;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.abilities.common.FetchLandActivatedAbility;
|
||||
|
|
@ -43,6 +44,7 @@ public class MarshFlats extends CardImpl {
|
|||
public MarshFlats(UUID ownerId) {
|
||||
super(ownerId, 219, "Marsh Flats", Rarity.RARE, new CardType[]{CardType.LAND}, null);
|
||||
this.expansionSetCode = "ZEN";
|
||||
this.frameColor = new ObjectColor("WB");
|
||||
this.addAbility(new FetchLandActivatedAbility(new String[] {"Swamp", "Plains"}));
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@
|
|||
package mage.sets.zendikar;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.ObjectColor;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.abilities.common.FetchLandActivatedAbility;
|
||||
|
|
@ -43,6 +44,7 @@ public class MistyRainforest extends CardImpl {
|
|||
public MistyRainforest(UUID ownerId) {
|
||||
super(ownerId, 220, "Misty Rainforest", Rarity.RARE, new CardType[]{CardType.LAND}, null);
|
||||
this.expansionSetCode = "ZEN";
|
||||
this.frameColor = new ObjectColor("UG");
|
||||
this.addAbility(new FetchLandActivatedAbility(new String[] {"Forest", "Island"}));
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@
|
|||
package mage.sets.zendikar;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.ObjectColor;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.abilities.common.FetchLandActivatedAbility;
|
||||
|
|
@ -43,6 +44,7 @@ public class ScaldingTarn extends CardImpl {
|
|||
public ScaldingTarn(UUID ownerId) {
|
||||
super(ownerId, 223, "Scalding Tarn", Rarity.RARE, new CardType[]{CardType.LAND}, null);
|
||||
this.expansionSetCode = "ZEN";
|
||||
this.frameColor = new ObjectColor("UR");
|
||||
this.addAbility(new FetchLandActivatedAbility(new String[] {"Island", "Mountain"}));
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@
|
|||
package mage.sets.zendikar;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.ObjectColor;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.abilities.common.FetchLandActivatedAbility;
|
||||
|
|
@ -43,6 +44,7 @@ public class VerdantCatacombs extends CardImpl {
|
|||
public VerdantCatacombs(UUID ownerId) {
|
||||
super(ownerId, 229, "Verdant Catacombs", Rarity.RARE, new CardType[]{CardType.LAND}, null);
|
||||
this.expansionSetCode = "ZEN";
|
||||
this.frameColor = new ObjectColor("BG");
|
||||
this.addAbility(new FetchLandActivatedAbility(new String[] {"Forest", "Swamp"}));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue