Skip to content

Configuration

Rere edited this page Jul 13, 2026 · 2 revisions

Deplete Tell is configured via a JSON file. Below is the default configuration:

{
  "alwaysShow": false,
  "blacklistedItem": [],
  "durabilityStyle": "NUMBER"
}

Options

alwaysShow

  • Type: boolean

  • Default: false Controls whether durability is always shown in the tooltip.

  • false — durability only appears once the item is damaged

  • true — durability always appears, even on undamaged items

blacklistedItem

  • Type: array of strings
  • Default: [] A list of items to exclude from durability tooltips. Each entry must follow the pattern:
namespace/modid:item_name

Example — hide durability on a Netherite Shovel:

{
  "alwaysShow": false,
  "blacklistedItem": [
    "minecraft:netherite_shovel"
  ],
  "durabilityStyle": "NUMBER"
}

You can add as many entries as you like:

{
  "blacklistedItem": [
    "minecraft:netherite_shovel",
    "minecraft:elytra"
  ]
}

durabilityStyle

  • Type: string
  • Default: "NUMBER"
  • Accepted values: "BAR", "PERCENTAGE", "NUMBER" Controls how durability is displayed in the tooltip.
Value Description
"NUMBER" Shows durability as remaining/max uses, e.g. 120/250
"PERCENTAGE" Shows durability as a percentage, e.g. 48%
"BAR" Shows durability as a visual bar

See the main README for preview images of each style.

Clone this wiki locally