Fixed 3 more wrong card names and changed the db version to 4 to refresh the db after all the change of card names.

This commit is contained in:
LevelX2 2013-04-08 18:10:51 +02:00
parent f644ffe041
commit db4616f821
4 changed files with 4 additions and 4 deletions

View file

@ -67,7 +67,7 @@ public class MyojinOfLifesWeb extends CardImpl<MyojinOfLifesWeb> {
}
public MyojinOfLifesWeb(UUID ownerId) {
super(ownerId, 229, "Myojin of Lifes Web", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{6}{G}{G}{G}");
super(ownerId, 229, "Myojin of Life's Web", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{6}{G}{G}{G}");
this.expansionSetCode = "CHK";
this.supertype.add("Legendary");
this.subtype.add("Spirit");

View file

@ -59,7 +59,7 @@ import mage.watchers.common.CastFromHandWatcher;
public class MyojinOfNightsReach extends CardImpl<MyojinOfNightsReach> {
public MyojinOfNightsReach(UUID ownerId) {
super(ownerId, 126, "Myojin of Nights Reach", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{5}{B}{B}{B}");
super(ownerId, 126, "Myojin of Night's Reach", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{5}{B}{B}{B}");
this.expansionSetCode = "CHK";
this.supertype.add("Legendary");
this.subtype.add("Spirit");

View file

@ -53,7 +53,7 @@ public enum CardRepository {
instance;
private static final String JDBC_URL = "jdbc:sqlite:db/cards.db";
private static final long DB_VERSION = 3;
private static final long DB_VERSION = 4;
private Random random = new Random();
private Dao<CardInfo, Object> cardDao;