mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 03:51:58 -08:00
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:
parent
f644ffe041
commit
db4616f821
4 changed files with 4 additions and 4 deletions
|
|
@ -67,7 +67,7 @@ public class MyojinOfLifesWeb extends CardImpl<MyojinOfLifesWeb> {
|
||||||
}
|
}
|
||||||
|
|
||||||
public MyojinOfLifesWeb(UUID ownerId) {
|
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.expansionSetCode = "CHK";
|
||||||
this.supertype.add("Legendary");
|
this.supertype.add("Legendary");
|
||||||
this.subtype.add("Spirit");
|
this.subtype.add("Spirit");
|
||||||
|
|
|
||||||
|
|
@ -59,7 +59,7 @@ import mage.watchers.common.CastFromHandWatcher;
|
||||||
public class MyojinOfNightsReach extends CardImpl<MyojinOfNightsReach> {
|
public class MyojinOfNightsReach extends CardImpl<MyojinOfNightsReach> {
|
||||||
|
|
||||||
public MyojinOfNightsReach(UUID ownerId) {
|
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.expansionSetCode = "CHK";
|
||||||
this.supertype.add("Legendary");
|
this.supertype.add("Legendary");
|
||||||
this.subtype.add("Spirit");
|
this.subtype.add("Spirit");
|
||||||
|
|
|
||||||
|
|
@ -53,7 +53,7 @@ public enum CardRepository {
|
||||||
instance;
|
instance;
|
||||||
|
|
||||||
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 long DB_VERSION = 3;
|
private static final long DB_VERSION = 4;
|
||||||
|
|
||||||
private Random random = new Random();
|
private Random random = new Random();
|
||||||
private Dao<CardInfo, Object> cardDao;
|
private Dao<CardInfo, Object> cardDao;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue