1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-13 01:01:11 -09:00

use correct mana symbol order

matching the printed cards
This commit is contained in:
Neil Gentleman 2015-10-27 20:36:07 -07:00
parent 024f13ce9a
commit 80ed40f6e8
5 changed files with 5 additions and 5 deletions
Mage.Sets/src/mage/sets

View file

@ -46,7 +46,7 @@ import mage.constants.Rarity;
public class KnotvineMystic extends CardImpl{ public class KnotvineMystic extends CardImpl{
public KnotvineMystic(UUID ownerId) { public KnotvineMystic(UUID ownerId) {
super(ownerId, 114, "Knotvine Mystic", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{W}{R}{G}"); super(ownerId, 114, "Knotvine Mystic", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{R}{G}{W}");
this.expansionSetCode = "CON"; this.expansionSetCode = "CON";

View file

@ -44,7 +44,7 @@ import mage.constants.Duration;
public class UrbanEvolution extends CardImpl { public class UrbanEvolution extends CardImpl {
public UrbanEvolution(UUID ownerId) { public UrbanEvolution(UUID ownerId) {
super(ownerId, 204, "Urban Evolution", Rarity.UNCOMMON, new CardType[]{CardType.SORCERY}, "{3}{U}{G}"); super(ownerId, 204, "Urban Evolution", Rarity.UNCOMMON, new CardType[]{CardType.SORCERY}, "{3}{G}{U}");
this.expansionSetCode = "GTC"; this.expansionSetCode = "GTC";
//Draw three cards. //Draw three cards.

View file

@ -48,7 +48,7 @@ import mage.target.common.TargetCreaturePermanent;
public class Duneblast extends CardImpl { public class Duneblast extends CardImpl {
public Duneblast(UUID ownerId) { public Duneblast(UUID ownerId) {
super(ownerId, 174, "Duneblast", Rarity.RARE, new CardType[]{CardType.SORCERY}, "{4}{W}{G}{B}"); super(ownerId, 174, "Duneblast", Rarity.RARE, new CardType[]{CardType.SORCERY}, "{4}{W}{B}{G}");
this.expansionSetCode = "KTK"; this.expansionSetCode = "KTK";

View file

@ -46,7 +46,7 @@ import mage.filter.FilterCard;
public class SultaiAscendancy extends CardImpl { public class SultaiAscendancy extends CardImpl {
public SultaiAscendancy(UUID ownerId) { public SultaiAscendancy(UUID ownerId) {
super(ownerId, 203, "Sultai Ascendancy", Rarity.RARE, new CardType[]{CardType.ENCHANTMENT}, "{G}{B}{U}"); super(ownerId, 203, "Sultai Ascendancy", Rarity.RARE, new CardType[]{CardType.ENCHANTMENT}, "{B}{G}{U}");
this.expansionSetCode = "KTK"; this.expansionSetCode = "KTK";

View file

@ -65,7 +65,7 @@ public class QuestingPhelddagrif extends CardImpl {
} }
public QuestingPhelddagrif(UUID ownerId) { public QuestingPhelddagrif(UUID ownerId) {
super(ownerId, 13, "Questing Phelddagrif", Rarity.SPECIAL, new CardType[]{CardType.CREATURE}, "{1}{W}{U}{G}"); super(ownerId, 13, "Questing Phelddagrif", Rarity.SPECIAL, new CardType[]{CardType.CREATURE}, "{1}{G}{W}{U}");
this.expansionSetCode = "PTC"; this.expansionSetCode = "PTC";
this.subtype.add("Phelddagrif"); this.subtype.add("Phelddagrif");
this.power = new MageInt(4); this.power = new MageInt(4);