mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
Full art Land rendering
* Added "frameStyle" tagging to relevant full art lands (ZEN, BFZ, UNG, UHG) * Added support for rendering based off of frameStyle * Outstanding bug that frameStyle doesn't seem to be replicated exactly properly
This commit is contained in:
parent
b549dfe0dc
commit
f0a1938b3e
59 changed files with 254 additions and 16 deletions
|
|
@ -18,12 +18,33 @@ public enum FrameStyle {
|
|||
/**
|
||||
* Battle for Zendkiar full art basic lands
|
||||
*/
|
||||
BFZ_FULL_ART_BASIC(BorderType.M15, true);
|
||||
BFZ_FULL_ART_BASIC(BorderType.M15, true),
|
||||
|
||||
/**
|
||||
* Zenkikar full art lands
|
||||
*/
|
||||
ZEN_FULL_ART_BASIC(BorderType.MOD, true),
|
||||
|
||||
/**
|
||||
* Unhinged full art lands
|
||||
*/
|
||||
UNH_FULL_ART_BASIC(BorderType.SPC, true),
|
||||
|
||||
/**
|
||||
* Unglued full art lands
|
||||
*/
|
||||
UGL_FULL_ART_BASIC(BorderType.SPC, true);
|
||||
|
||||
/**
|
||||
* General type of card
|
||||
*/
|
||||
public enum BorderType {
|
||||
/**
|
||||
* Various specialty borders
|
||||
* EG: Unhinged, Unglued
|
||||
*/
|
||||
SPC,
|
||||
|
||||
/**
|
||||
* Old border cards
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ public enum CardRepository {
|
|||
// raise this if db structure was changed
|
||||
private static final long CARD_DB_VERSION = 47;
|
||||
// raise this if new cards were added to the server
|
||||
private static final long CARD_CONTENT_VERSION = 58;
|
||||
private static final long CARD_CONTENT_VERSION = 59;
|
||||
|
||||
private Dao<CardInfo, Object> cardDao;
|
||||
private Set<String> classNames;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue