-
Notifications
You must be signed in to change notification settings - Fork 11
magic_dust runic_dust
goflishMC edited this page Jun 29, 2025
·
1 revision
This Magic Dust item is designed to boost socketing success specifically for items handled by the Runes module.
plugins/Divinity/modules/magic_dust/items/runic_dust.yml
material: GLOWSTONE_DUST
name: 'Runic Magic Dust'
lore: []
tier: common
enchanted: true
item-flags:
- '*'
level:
min: 1
max: 5
uses-by-level:
'1': 1
'3': 2
rate-increasing:
max-value: 80
values-by-level:
'1': 1
'2': 2
'3': 3
'4': 4
'5': 5
target-requirements:
type:
- '*'
module:
- runes
level:
'1': '1:3'
'3': '3'
-
material
: Base item material (GLOWSTONE_DUST
). -
name
: Display name shown in-game. -
tier
: Item classification tier. -
enchanted
: Adds visual enchant glint to the item. -
uses-by-level
: Controls how many uses are consumed per item level. -
rate-increasing
:-
max-value
: Cap on total boost this dust can give. -
values-by-level
: Bonus per dust level.
-
-
target-requirements
:-
module
: Limited to therunes
module. -
type
: Matches any item type. -
level
: Controls which item levels this dust can be used on.
-