From 6768b769e99d9aef50a55ebe6f41dce091d29365 Mon Sep 17 00:00:00 2001 From: Aaron <51387595+AzureAaron@users.noreply.github.com> Date: Mon, 6 Nov 2023 10:55:07 -0500 Subject: Square Item Rarity Background (#407) --- src/main/resources/assets/skyblocker/lang/en_us.json | 2 ++ .../textures/gui/sprites/item_rarity_background.png | Bin 198 -> 0 bytes .../gui/sprites/item_rarity_background_circular.png | Bin 0 -> 198 bytes .../gui/sprites/item_rarity_background_square.png | Bin 0 -> 502 bytes 4 files changed, 2 insertions(+) delete mode 100644 src/main/resources/assets/skyblocker/textures/gui/sprites/item_rarity_background.png create mode 100644 src/main/resources/assets/skyblocker/textures/gui/sprites/item_rarity_background_circular.png create mode 100644 src/main/resources/assets/skyblocker/textures/gui/sprites/item_rarity_background_square.png (limited to 'src/main/resources/assets') diff --git a/src/main/resources/assets/skyblocker/lang/en_us.json b/src/main/resources/assets/skyblocker/lang/en_us.json index 6d94b69b..d52ef612 100644 --- a/src/main/resources/assets/skyblocker/lang/en_us.json +++ b/src/main/resources/assets/skyblocker/lang/en_us.json @@ -84,6 +84,8 @@ "text.autoconfig.skyblocker.option.general.itemInfoDisplay.attributeShardInfo.@Tooltip": "Displays the attribute's level as the stack count and the initials of the attribute's name.", "text.autoconfig.skyblocker.option.general.itemInfoDisplay.itemRarityBackgrounds": "Item Rarity Backgrounds", "text.autoconfig.skyblocker.option.general.itemInfoDisplay.itemRarityBackgrounds.@Tooltip": "Displays a colored background behind an item, the color represents the item's rarity.", + "text.autoconfig.skyblocker.option.general.itemInfoDisplay.itemRarityBackgroundStyle": "Item Rarity Background Style", + "text.autoconfig.skyblocker.option.general.itemInfoDisplay.itemRarityBackgroundStyle.@Tooltip": "Choose between a circular or a square background style!", "text.autoconfig.skyblocker.option.general.itemInfoDisplay.itemRarityBackgroundsOpacity": "Item Rarity Backgrounds Opacity", "text.autoconfig.skyblocker.option.general.wikiLookup": "Wiki Lookup", "text.autoconfig.skyblocker.option.general.wikiLookup.enableWikiLookup": "Enable Wiki Lookup", diff --git a/src/main/resources/assets/skyblocker/textures/gui/sprites/item_rarity_background.png b/src/main/resources/assets/skyblocker/textures/gui/sprites/item_rarity_background.png deleted file mode 100644 index fd8e8604..00000000 Binary files a/src/main/resources/assets/skyblocker/textures/gui/sprites/item_rarity_background.png and /dev/null differ diff --git a/src/main/resources/assets/skyblocker/textures/gui/sprites/item_rarity_background_circular.png b/src/main/resources/assets/skyblocker/textures/gui/sprites/item_rarity_background_circular.png new file mode 100644 index 00000000..fd8e8604 Binary files /dev/null and b/src/main/resources/assets/skyblocker/textures/gui/sprites/item_rarity_background_circular.png differ diff --git a/src/main/resources/assets/skyblocker/textures/gui/sprites/item_rarity_background_square.png b/src/main/resources/assets/skyblocker/textures/gui/sprites/item_rarity_background_square.png new file mode 100644 index 00000000..0392b56c Binary files /dev/null and b/src/main/resources/assets/skyblocker/textures/gui/sprites/item_rarity_background_square.png differ -- cgit