Add Forge SetLogo for Desktop and Mobile

Common, Uncommon, Rare, Mythic and Special Forge logos
This commit is contained in:
Anthony Calosa
2021-08-20 13:22:09 +08:00
parent 3f65f56b31
commit b355d7fc84
8 changed files with 77 additions and 10 deletions

View File

@@ -120,6 +120,7 @@ public final class ForgeConstants {
public static final String SPRITE_SLEEVES2_FILE = "sprite_sleeves2.png";
public static final String SPRITE_FAVICONS_FILE = "sprite_favicons.png";
public static final String SPRITE_PLANAR_CONQUEST_FILE = "sprite_planar_conquest.png";
public static final String SPRITE_SETLOGO_FILE = "sprite_setlogo.png";
public static final String FONT_FILE = "font1.ttf";
public static final String SPLASH_BG_FILE = "bg_splash.png";
public static final String MATCH_BG_FILE = "bg_match.jpg";

View File

@@ -395,6 +395,13 @@ public enum FSkinProp {
IMG_DECK_CARD_ART (new int[] {492, 2, 488, 680}, PropType.DECKBOX),
IMG_DECK_GENERIC (new int[] {982, 2, 488, 680}, PropType.DECKBOX),
//FOR SETLOGO
IMG_SETLOGO_COMMON (new int[] {2, 2, 520, 451}, PropType.SETLOGO),
IMG_SETLOGO_UNCOMMON (new int[] {2, 455, 520, 451}, PropType.SETLOGO),
IMG_SETLOGO_RARE (new int[] {2, 908, 520, 451}, PropType.SETLOGO),
IMG_SETLOGO_MYTHIC (new int[] {2, 1361, 520, 451}, PropType.SETLOGO),
IMG_SETLOGO_SPECIAL (new int[] {2, 1814, 520, 451}, PropType.SETLOGO),
IMG_FAV1 (new int[] {0, 0, 100, 100}, PropType.FAVICON),
IMG_FAV2 (new int[] {100, 0, 100, 100}, PropType.FAVICON),
IMG_FAV3 (new int[] {200, 0, 100, 100}, PropType.FAVICON),
@@ -497,6 +504,7 @@ public enum FSkinProp {
MANAICONS,
PLANAR_CONQUEST,
DECKBOX,
SETLOGO,
FAVICON
}
}