config tiers - magemonkeystudio/divinity GitHub Wiki
tiers
๐จ Config: This section defines the rarity tiers used to format item names and lores. Each tier can have its own color and display name format.
Tiers are referenced in modules like Loot, Item Generator, and Socketing to determine drop rate, visual styling, and item quality.
๐ Options (per tier)
Key | Description |
---|---|
color |
Minecraft color codes to apply (e.g. &7 , &a ). Multiple codes can be combined. |
name |
Display name of the tier. %TIER_COLOR% is a placeholder that applies the color value. |
๐งช Example
tiers:
default:
color: '&7'
name: '%TIER_COLOR%Default'
rare:
color: '&a'
name: '%TIER_COLOR%Rare'
mythic:
color: '&5'
name: '%TIER_COLOR%Mythic'
๐ Full Default Tier List
tiers:
default:
color: '&7'
name: '%TIER_COLOR%Default'
cursed:
color: '&4'
name: '%TIER_COLOR%Cursed'
common:
color: '&r&f'
name: '%TIER_COLOR%Common'
rare:
color: '&a'
name: '%TIER_COLOR%Rare'
superior:
color: '&9'
name: '%TIER_COLOR%Superior'
fabled:
color: '&e'
name: '%TIER_COLOR%Fabled'
eternal:
color: '&6'
name: '%TIER_COLOR%Eternal'
mythic:
color: '&5'
name: '%TIER_COLOR%Mythic'
๐ฌ Notes
- Tiers can be renamed, reordered, or removed depending on your server theme.
%TIER_COLOR%
is replaced at runtime and must be included inname
if you want the color to apply.- Modules that use tiers will fail silently if a referenced tier does not exist.