[JOU] Some fixes to card numbers.

This commit is contained in:
LevelX2 2014-04-18 11:39:45 +02:00
parent 6d89011e47
commit bddbd03d9f
8 changed files with 8 additions and 10 deletions

View file

@ -47,7 +47,7 @@ import mage.filter.FilterPermanent;
public class BearerOfTheHeavens extends CardImpl<BearerOfTheHeavens> { public class BearerOfTheHeavens extends CardImpl<BearerOfTheHeavens> {
public BearerOfTheHeavens(UUID ownerId) { public BearerOfTheHeavens(UUID ownerId) {
super(ownerId, 9991, "Bearer of the Heavens", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{7}{R}"); super(ownerId, 90, "Bearer of the Heavens", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{7}{R}");
this.expansionSetCode = "JOU"; this.expansionSetCode = "JOU";
this.subtype.add("Giant"); this.subtype.add("Giant");

View file

@ -48,7 +48,7 @@ import mage.target.targetpointer.FixedTarget;
public class EidolonOfTheGreatRevel extends CardImpl<EidolonOfTheGreatRevel> { public class EidolonOfTheGreatRevel extends CardImpl<EidolonOfTheGreatRevel> {
public EidolonOfTheGreatRevel(UUID ownerId) { public EidolonOfTheGreatRevel(UUID ownerId) {
super(ownerId, 9992, "Eidolon of the Great Revel", Rarity.RARE, new CardType[]{CardType.ENCHANTMENT, CardType.CREATURE}, "{R}{R}"); super(ownerId, 94, "Eidolon of the Great Revel", Rarity.RARE, new CardType[]{CardType.ENCHANTMENT, CardType.CREATURE}, "{R}{R}");
this.expansionSetCode = "JOU"; this.expansionSetCode = "JOU";
this.subtype.add("Spirit"); this.subtype.add("Spirit");

View file

@ -51,8 +51,7 @@ public class ExtinguishAllHope extends CardImpl<ExtinguishAllHope> {
public ExtinguishAllHope(UUID ownerId) { public ExtinguishAllHope(UUID ownerId) {
//TODO: Fix card number super(ownerId, 68, "Extinguish All Hope", Rarity.RARE, new CardType[]{CardType.SORCERY}, "{4}{B}{B}");
super(ownerId, 999, "Extinguish All Hope", Rarity.RARE, new CardType[]{CardType.SORCERY}, "{4}{B}{B}");
this.expansionSetCode = "JOU"; this.expansionSetCode = "JOU";
this.color.setBlack(true); this.color.setBlack(true);

View file

@ -48,7 +48,7 @@ import mage.target.common.TargetCardInLibrary;
public class FontOfFertility extends CardImpl<FontOfFertility> { public class FontOfFertility extends CardImpl<FontOfFertility> {
public FontOfFertility(UUID ownerId) { public FontOfFertility(UUID ownerId) {
super(ownerId, 125, "Font of Fertility", Rarity.COMMON, new CardType[]{CardType.ENCHANTMENT}, "{G}"); super(ownerId, 123, "Font of Fertility", Rarity.COMMON, new CardType[]{CardType.ENCHANTMENT}, "{G}");
this.expansionSetCode = "JOU"; this.expansionSetCode = "JOU";
this.color.setGreen(true); this.color.setGreen(true);

View file

@ -59,7 +59,7 @@ public class KeranosGodOfStorms extends CardImpl<KeranosGodOfStorms> {
public KeranosGodOfStorms(UUID ownerId) { public KeranosGodOfStorms(UUID ownerId) {
super(ownerId, 156, "Keranos, God of Storms", Rarity.MYTHIC, new CardType[]{CardType.ENCHANTMENT, CardType.CREATURE}, "{3}{U}{R}"); super(ownerId, 151, "Keranos, God of Storms", Rarity.MYTHIC, new CardType[]{CardType.ENCHANTMENT, CardType.CREATURE}, "{3}{U}{R}");
this.expansionSetCode = "JOU"; this.expansionSetCode = "JOU";
this.supertype.add("Legendary"); this.supertype.add("Legendary");
this.subtype.add("God"); this.subtype.add("God");

View file

@ -47,7 +47,6 @@ import mage.constants.Rarity;
import mage.constants.Zone; import mage.constants.Zone;
import mage.game.Game; import mage.game.Game;
import mage.game.permanent.Permanent; import mage.game.permanent.Permanent;
import mage.game.turn.Step;
import mage.players.Library; import mage.players.Library;
import mage.players.Player; import mage.players.Player;
@ -58,7 +57,7 @@ import mage.players.Player;
public class PropheticFlamespeaker extends CardImpl<PropheticFlamespeaker> { public class PropheticFlamespeaker extends CardImpl<PropheticFlamespeaker> {
public PropheticFlamespeaker(UUID ownerId) { public PropheticFlamespeaker(UUID ownerId) {
super(ownerId, 165, "Prophetic Flamespeaker", Rarity.MYTHIC, new CardType[]{CardType.CREATURE}, "{1}{R}{R}"); super(ownerId, 106, "Prophetic Flamespeaker", Rarity.MYTHIC, new CardType[]{CardType.CREATURE}, "{1}{R}{R}");
this.expansionSetCode = "JOU"; this.expansionSetCode = "JOU";
this.subtype.add("Human"); this.subtype.add("Human");
this.subtype.add("Shaman"); this.subtype.add("Shaman");

View file

@ -42,7 +42,7 @@ import mage.target.TargetPlayer;
public class WorstFears extends CardImpl<WorstFears> { public class WorstFears extends CardImpl<WorstFears> {
public WorstFears(UUID ownerId) { public WorstFears(UUID ownerId) {
super(ownerId, 97, "Worst Fears", Rarity.MYTHIC, new CardType[]{CardType.SORCERY}, "{7}{B}"); super(ownerId, 87, "Worst Fears", Rarity.MYTHIC, new CardType[]{CardType.SORCERY}, "{7}{B}");
this.expansionSetCode = "JOU"; this.expansionSetCode = "JOU";
this.color.setBlack(true); this.color.setBlack(true);

View file

@ -55,7 +55,7 @@ public enum CardRepository {
private static final String JDBC_URL = "jdbc:sqlite:db/cards.db"; private static final String JDBC_URL = "jdbc:sqlite:db/cards.db";
private static final String VERSION_ENTITY_NAME = "card"; private static final String VERSION_ENTITY_NAME = "card";
private static final long CARD_DB_VERSION = 24; private static final long CARD_DB_VERSION = 26;
private final Random random = new Random(); private final Random random = new Random();
private Dao<CardInfo, Object> cardDao; private Dao<CardInfo, Object> cardDao;