magic_dust runic_dust - magemonkeystudio/divinity GitHub Wiki

๐Ÿ”ท Runic Magic Dust

This Magic Dust item is designed to boost socketing success specifically for items handled by the Runes module.


๐Ÿ“ File Location

plugins/Divinity/modules/magic_dust/items/runic_dust.yml

๐Ÿงช Example: 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'

๐Ÿ”‘ Key Sections

  • 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 the runes module.
    • type: Matches any item type.
    • level: Controls which item levels this dust can be used on.

โฌ… Return to Magic Dust Hub