Add dummy stats for server builders.

This commit is contained in:
Taner 2022-11-09 10:21:17 +03:00
parent ecf8fda224
commit 89b1ef8b5e
3 changed files with 24 additions and 2 deletions

View File

@ -193,7 +193,15 @@ public class ItemStats {
STORED_TAGS = new StoredTags(),
ITEM_LEVEL = new ItemLevel(),
INTERNAL_REVISION_ID = new InternalRevisionID(),
BROWSER_DISPLAY_IDX = new BrowserDisplayIDX();
BROWSER_DISPLAY_IDX = new BrowserDisplayIDX(),
// Dummy Stats
DUMMY_A = new DoubleStat("DUMMY_A", Material.ARMOR_STAND, "Dummy A", new String[]{"Dummy stats for server builders."}),
DUMMY_B = new DoubleStat("DUMMY_B", Material.ARMOR_STAND, "Dummy B", new String[]{"Dummy stats for server builders."}),
DUMMY_C = new DoubleStat("DUMMY_C", Material.ARMOR_STAND, "Dummy C", new String[]{"Dummy stats for server builders."}),
DUMMY_D = new DoubleStat("DUMMY_D", Material.ARMOR_STAND, "Dummy D", new String[]{"Dummy stats for server builders."}),
DUMMY_E = new DoubleStat("DUMMY_E", Material.ARMOR_STAND, "Dummy E", new String[]{"Dummy stats for server builders."});
/**
* @deprecated Item damage is now {@link ItemDamage} and

View File

@ -134,6 +134,13 @@ lore-format:
# - '{bar}&8&m--------&e&l &nGem Stones&8 &m-----------'
- '{bar}'
- '#gem-stones#'
# - '{bar}&8&m--------&e<bold> &nDummy Stats&8 &m-----------'
- '{bar}'
- '#dummy-a#'
- '#dummy-b#'
- '#dummy-c#'
- '#dummy-d#'
- '#dummy-e#'
# - '{sbar}&8&m--------------------------------'
- '{bar}'
- '#lore#'

View File

@ -145,4 +145,11 @@ elemental-damage: '{color}{icon}&7 {value} {element} Damage'
elemental-damage-percent: '{color}{icon}&7 +{value}% {element} Damage'
elemental-defense: '{color}{icon}&7 {value} {element} Defense'
elemental-defense-percent: '{color}{icon}&7 +{value}% {element} Defense'
elemental-weakness: '{color}{icon}&7 {value}% {element} Weakness'
elemental-weakness: '{color}{icon}&7 {value}% {element} Weakness'
# Dummy Stats
dummy-a: '&3 &7➸ Dummy A: &f{value}'
dummy-b: '&3 &7➸ Dummy B: &f{value}'
dummy-c: '&3 &7➸ Dummy C: &f{value}'
dummy-d: '&3 &7➸ Dummy D: &f{value}'
dummy-e: '&3 &7➸ Dummy E: &f{value}'