mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18:01 +00:00
Improve conquest menu images
This commit is contained in:
@@ -119,6 +119,7 @@ public enum FSkinImage implements FImage {
|
|||||||
//Planar Conquest Images
|
//Planar Conquest Images
|
||||||
PLANE_MONITOR (FSkinProp.IMG_PLANE_MONITOR, SourceFile.PLANAR_CONQUEST),
|
PLANE_MONITOR (FSkinProp.IMG_PLANE_MONITOR, SourceFile.PLANAR_CONQUEST),
|
||||||
AETHER_SHARD (FSkinProp.IMG_AETHER_SHARD, SourceFile.PLANAR_CONQUEST),
|
AETHER_SHARD (FSkinProp.IMG_AETHER_SHARD, SourceFile.PLANAR_CONQUEST),
|
||||||
|
MULTIVERSE (FSkinProp.IMG_MULTIVERSE, SourceFile.PLANAR_CONQUEST),
|
||||||
|
|
||||||
//Quest Icons
|
//Quest Icons
|
||||||
QUEST_ZEP (FSkinProp.ICO_QUEST_ZEP, SourceFile.ICONS),
|
QUEST_ZEP (FSkinProp.ICO_QUEST_ZEP, SourceFile.ICONS),
|
||||||
|
|||||||
@@ -28,13 +28,13 @@ public class ConquestMenu extends FPopupMenu {
|
|||||||
private static final ConquestCollectionScreen collectionScreen = new ConquestCollectionScreen();
|
private static final ConquestCollectionScreen collectionScreen = new ConquestCollectionScreen();
|
||||||
private static final ConquestPrefsScreen prefsScreen = new ConquestPrefsScreen();
|
private static final ConquestPrefsScreen prefsScreen = new ConquestPrefsScreen();
|
||||||
|
|
||||||
private static final FMenuItem multiverseItem = new FMenuItem("The Multiverse", FSkinImage.QUEST_MAP, new FEventHandler() {
|
private static final FMenuItem multiverseItem = new FMenuItem("The Multiverse", FSkinImage.MULTIVERSE, new FEventHandler() {
|
||||||
@Override
|
@Override
|
||||||
public void handleEvent(FEvent e) {
|
public void handleEvent(FEvent e) {
|
||||||
Forge.openScreen(multiverseScreen);
|
Forge.openScreen(multiverseScreen);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
private static final FMenuItem aetherItem = new FMenuItem("The AEther", FSkinImage.FLASHBACK, new FEventHandler() {
|
private static final FMenuItem aetherItem = new FMenuItem("The AEther", FSkinImage.AETHER_SHARD, new FEventHandler() {
|
||||||
@Override
|
@Override
|
||||||
public void handleEvent(FEvent e) {
|
public void handleEvent(FEvent e) {
|
||||||
Forge.openScreen(aetherScreen);
|
Forge.openScreen(aetherScreen);
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 40 KiB |
@@ -245,6 +245,7 @@ public enum FSkinProp {
|
|||||||
//planar conquest images
|
//planar conquest images
|
||||||
IMG_PLANE_MONITOR (new int[] {0, 0, 443, 315}, PropType.PLANAR_CONQUEST),
|
IMG_PLANE_MONITOR (new int[] {0, 0, 443, 315}, PropType.PLANAR_CONQUEST),
|
||||||
IMG_AETHER_SHARD (new int[] {0, 315, 120, 120}, PropType.PLANAR_CONQUEST),
|
IMG_AETHER_SHARD (new int[] {0, 315, 120, 120}, PropType.PLANAR_CONQUEST),
|
||||||
|
IMG_MULTIVERSE (new int[] {125, 320, 110, 110}, PropType.PLANAR_CONQUEST),
|
||||||
|
|
||||||
//button images
|
//button images
|
||||||
IMG_BTN_START_UP (new int[] {480, 200, 160, 80}, PropType.ICON),
|
IMG_BTN_START_UP (new int[] {480, 200, 160, 80}, PropType.ICON),
|
||||||
|
|||||||
Reference in New Issue
Block a user